/* Tenerife Chiropractic Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Scheme - Sky Blue Theme */
  --background: #ffffff;
  --foreground: #393939;
  --card: #f8f9fa;
  --card-foreground: #393939;
  --primary: #00c4cc;
  --primary-foreground: #ffffff;
  --secondary: #f1f3f4;
  --secondary-foreground: #393939;
  --muted: #e9ecef;
  --muted-foreground: #6c757d;
  --accent: #a7fff1;
  --accent-foreground: #393939;
  --border: #dee2e6;
  --input: #e9ecef;
  --ring: #00c4cc;
  
  /* Typography */
  --font-sans: "Open Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", ui-serif, Georgia, serif;
  
  /* Spacing */
  --radius: 0.9rem;
  --container-max-width: 1200px;
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Typography */
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  position: relative;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 50;
  padding: 0.5rem 0;
}

.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.nav-dropdown-content a:hover {
  background-color: var(--secondary);
  color: var(--foreground);
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px 0 rgba(0, 196, 204, 0.39);
}

.btn-primary:hover {
  background-color: hsl(182 100% 32%); /* A slightly darker teal using HSL */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 196, 204, 0.23);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-header {
    display: inline-flex;
  }
}

.btn-header {
  display: none;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.nav-toggle:hover {
  background-color: var(--muted);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1rem;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 50;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.nav-mobile a:hover {
  background-color: var(--muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-mobile.active {
    display: flex;
  }
  
  .btn-header {
    display: none;
  }
}

/* Main Logo */
.main-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.main-logo {
  max-width: 262px;
  height: auto;
  opacity: 0.9;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(800px 400px at 10% 10%, rgba(0, 196, 204, 0.08), transparent 60%),
    radial-gradient(700px 420px at 90% 0%, rgba(167, 255, 241, 0.12), transparent 55%),
    linear-gradient(to bottom, rgba(0, 196, 204, 0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 196, 204, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

.hero-content {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 7fr 5fr;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.section-label::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
}

.hero-title {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Stats Cards */
.stats-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  display: block;
  text-decoration: none;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 2px 8px rgba(0, 196, 204, 0.1);
  color: inherit;
  transition: all var(--transition-fast);
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: white;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.stat-value {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Hero Image */
.hero-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 1.5rem;
  aspect-ratio: 16/9;
  max-width: 500px;
  max-height: 281px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Image Section */
.services-image-section {
  padding: 3rem 0;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(57, 57, 57, 0.8), rgba(57, 57, 57, 0.2), transparent);
}

.hero-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-image-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero-image-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--accent);
  font-size: 0.75rem;
  color: var(--foreground);
}

.hero-section-title {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Expect Cards */
.expect-cards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expect-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.expect-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 196, 204, 0.15);
  border-color: var(--primary);
}

.expect-icon {
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: white;
}

.expect-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.expect-content p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Sections */
section {
  border-top: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

section:nth-child(even) {
  background-color: #fafafa;
}

section.bg-dark {
  background-color: var(--secondary);
}

.section-content {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-content {
    padding: 5rem 0;
  }
}

/* About Section */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.about-pills {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.service-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 196, 204, 0.1);
  transition: all var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 196, 204, 0.15);
  border-color: var(--primary);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 250px at 10% 0%, rgba(167, 255, 241, 0.08), transparent 55%);
}

.service-card-content {
  position: relative;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: white;
}

.service-title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.service-description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* AK Info Box */
.ak-info {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.ak-info-content {
  display: flex;
  gap: 0.75rem;
}

.ak-info-icon {
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: white;
}

.ak-info-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.ak-info-text p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Services Section */
.services-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.services-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 196, 204, 0.1);
  transition: all var(--transition-medium);
}

.service-detail-card.clickable {
  text-decoration: none;
  cursor: pointer;
}

.service-detail-card.clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 196, 204, 0.15);
  border-color: var(--primary);
}

.btn-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 250px at 90% 0%, rgba(167, 255, 241, 0.08), transparent 55%);
}

.service-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-detail-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-detail-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--accent);
  font-size: 0.75rem;
  color: var(--foreground);
}

.service-detail-list {
  margin-top: 1.25rem;
  list-style: none;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-detail-list li::before {
  content: "";
  display: block;
  margin-top: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* Gym Section */
.gym-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .gym-grid {
    grid-template-columns: 6fr 6fr;
  }
}

.gym-features {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .gym-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gym-feature {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.gym-feature h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.gym-feature p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Unified Image Styling */
.content-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 196, 204, 0.15);
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Legacy support - keep existing classes but standardize them */
.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 196, 204, 0.15);
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gym-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;

  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.gym-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gym-image-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 350px at 30% 0%, rgba(0, 196, 204, 0.18), transparent 60%);
}

.gym-partnership {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--accent), transparent);
  box-shadow: 0 2px 8px rgba(0, 196, 204, 0.1);
}

.gym-partnership-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gym-partnership-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.gym-partnership-location {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  font-size: 0.75rem;
  color: var(--foreground);
}

.gym-focus-areas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gym-focus-row {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.gym-focus-icon {
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: white;
}

.gym-focus-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.gym-focus-content p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.gym-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--secondary);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 6fr 6fr;
    align-items: start;
  }
}

.contact-info-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-info-list {
  margin-top: 1rem;
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.contact-info-list li::before {
  content: "";
  display: block;
  margin-top: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* Contact Details Section */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-detail-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 196, 204, 0.15);
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.contact-detail-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-detail-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin: 0.25rem 0;
}

/* Contact Form */
.contact-form {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 2px 8px rgba(0, 196, 204, 0.1);
  transition: all var(--transition-medium);
}

.stat-card:hover {
  transform: scale(1.05);
  background-color: var(--background);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-brand p {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    justify-content: center;
  }
}
