/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */

:root {
  /* Colors */
  --background: hsl(200, 20%, 98%);
  --foreground: hsl(210, 40%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 40%, 15%);
  --primary: hsl(187, 70%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(200, 25%, 94%);
  --secondary-foreground: hsl(210, 40%, 15%);
  --muted: hsl(200, 20%, 96%);
  --muted-foreground: hsl(210, 15%, 45%);
  --accent: hsl(187, 50%, 92%);
  --accent-foreground: hsl(187, 70%, 25%);
  --border: hsl(200, 20%, 88%);
  --input: hsl(200, 20%, 88%);
  --ring: hsl(187, 70%, 35%);
  --radius: 0.75rem;

  /* Custom tokens */
  --hero-gradient: linear-gradient(135deg, hsl(187, 70%, 35%) 0%, hsl(200, 60%, 40%) 100%);
  --hero-overlay: linear-gradient(180deg, hsla(200, 20%, 98%, 0) 0%, hsla(200, 20%, 98%, 0.95) 100%);
  --card-shadow: 0 4px 20px -4px hsla(210, 40%, 15%, 0.08);
  --card-shadow-hover: 0 12px 32px -8px hsla(187, 70%, 35%, 0.15);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ==========================================================================
   Grid System
   ========================================================================== */

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* ==========================================================================
   Flexbox Utilities
   ========================================================================== */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* ==========================================================================
   Spacing
   ========================================================================== */

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ==========================================================================
   Typography
   ========================================================================== */

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

/* ==========================================================================
   Colors
   ========================================================================== */

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-accent-foreground {
  color: var(--accent-foreground);
}

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

.bg-card {
  background-color: var(--card);
}

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

.bg-accent {
  background-color: var(--accent);
}

.bg-primary {
  background-color: var(--primary);
}

/* ==========================================================================
   Custom Components
   ========================================================================== */

/* Hero Gradient */
.hero-gradient {
  background: var(--hero-gradient);
}

/* Text Gradient */
.text-gradient {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Medical */
.card-medical {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.card-medical:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(200, 20%, 98%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .header-container {
    height: 5rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--hero-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-icon span {
  color: var(--primary-foreground);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.header-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .header-logo-text {
    display: block;
  }
}

.header-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--foreground);
}

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

.header-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 68px;
    max-width: 320px;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--primary);
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

.nav-mobile.active {
  display: block;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Button Sizes */
.btn-md {
  height: 2.5rem;
  padding: 0 1rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

/* Button Variants */
.btn-hero {
  background: var(--hero-gradient);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px -3px hsla(187, 70%, 35%, 0.4);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px -4px hsla(187, 70%, 35%, 0.5);
}

.btn-hero:active {
  transform: scale(1);
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-hero-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--accent) 0%, var(--background) 50%, var(--background) 100%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-foreground);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

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

/* Hero Image */
.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Floating Card */
a.hero-floating-card {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.hero-floating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -5px rgba(0, 0, 0, 0.18);
}

.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--card);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 20;
}

@media (min-width: 768px) {
  .hero-floating-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.hero-floating-icon {
  width: 3rem;
  height: 3rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.hero-floating-title {
  font-weight: 600;
  color: var(--foreground);
}

.hero-floating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.whatsapp-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-sticky:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.whatsapp-sticky-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-sticky-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.whatsapp-sticky-label {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Background Decoration */
.hero-decoration {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: var(--hero-gradient);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(48px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
  background-color: hsla(200, 25%, 94%, 0.3);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

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

.section-description {
  color: var(--muted-foreground);
}

/* Service Grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Service List Grid (new 4-card layout) */
.services-list-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-list-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-list-header .service-icon {
  margin-bottom: 0;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.service-list-header .service-title {
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.service-list-dot {
  margin-top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* Service Card */
.service-card {
  cursor: pointer;
}

.service-card .service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--hero-gradient);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.about-intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.about-image-container {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}

.about-badge-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.about-badge-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

/* Qualifications List */
.qualifications-list {
  margin-bottom: 2rem;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.qualification-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.qualification-item span {
  color: var(--foreground);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
  background-color: var(--background);
}


.contact {
  background-color: var(--background);
}
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Testimonial Card */
.testimonial-card {
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary);
  opacity: 0.1;
}

.testimonial-quote-icon svg {
  width: 3rem;
  height: 3rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}

.testimonial-content {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.625;
  position: relative;
  z-index: 10;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--hero-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--primary-foreground);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: 3rem;
}

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

/* Contact Form */
.contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  height: 3rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(187, 70%, 35%, 0.1);
}

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

/* Form Messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form-message-success {
  background-color: hsla(142, 76%, 36%, 0.1);
  border: 1px solid hsl(142, 76%, 36%);
  color: hsl(142, 76%, 26%);
}

.form-message-error {
  background-color: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsl(0, 84%, 60%);
  color: hsl(0, 84%, 40%);
}

/* Contact Info */
/* Contact Info Grid */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-grid .contact-info-card {
  flex: 0 1 calc(50% - 0.75rem);
}

@media (min-width: 1024px) {
  .contact-info-grid .contact-info-card {
    flex: 0 1 280px;
  }
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.contact-info-card .contact-info-icon {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--hero-gradient);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.contact-info-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  white-space: pre-line;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 26rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-content {
  text-align: center;
}

.map-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.map-placeholder p {
  color: var(--muted-foreground);
}

/* ==========================================================================
   Contact Form 7 Styles
   ========================================================================== */

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7-form br {
  display: none;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(187, 70%, 35%, 0.1);
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel {
  height: 3rem;
}

.wpcf7-textarea {
  resize: vertical;
  min-height: 100px;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--hero-gradient);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px -3px hsla(187, 70%, 35%, 0.4);
}

.wpcf7-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px -4px hsla(187, 70%, 35%, 0.5);
}

.wpcf7-not-valid-tip {
  color: hsl(0, 84%, 60%);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.wpcf7-response-output {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.wpcf7-mail-sent-ok {
  background-color: hsla(142, 76%, 36%, 0.1);
  border: 1px solid hsl(142, 76%, 36%);
  color: hsl(142, 76%, 30%);
}

.wpcf7-validation-errors {
  background-color: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsl(0, 84%, 60%);
  color: hsl(0, 84%, 50%);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer-content {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer Brand */
.footer-brand {
  grid-column: 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--hero-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon span {
  color: var(--primary-foreground);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--background);
}

.footer-logo-specialty {
  font-size: 0.75rem;
  color: hsla(200, 20%, 98%, 0.6);
}

.footer-logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-img.no-invert {
  filter: none;
}

.footer-description {
  color: hsla(200, 20%, 98%, 0.7);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(200, 20%, 98%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsla(200, 20%, 98%, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Footer Contact */
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(200, 20%, 98%, 0.7);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsla(200, 20%, 98%, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  color: hsla(200, 20%, 98%, 0.6);
  font-size: 0.875rem;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-404-content {
  max-width: 32rem;
}

.error-404-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.error-404-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.error-404-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

/* Hidden classes for responsive */
@media (max-width: 639px) {
  .sm\:hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .md\:hidden {
    display: none;
  }
}

@media (max-width: 1023px) {
  .lg\:hidden {
    display: none;
  }
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='hsl(187%2C70%25%2C35%25)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 0.9375rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ==========================================================================
   Gallery / Carousel Section
   ========================================================================== */

.gallery {
  background-color: hsla(200, 25%, 94%, 0.3);
}

.faq {
  background-color: hsla(200, 25%, 94%, 0.3);
}

/* Carousel */
.carousel {
  position: relative;
  user-select: none;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-hover);
  background: var(--foreground);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .carousel-img {
    height: 260px;
  }
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, hsla(210, 40%, 10%, 0.75) 0%, transparent 100%);
  color: #fff;
  font-size: 0.9375rem;
  text-align: center;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: hsla(0, 0%, 100%, 0.92);
  color: var(--foreground);
  box-shadow: 0 2px 12px hsla(210, 40%, 15%, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.carousel-btn:hover {
  background: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn-prev { left: 1rem; }
.carousel-btn-next { right: 1rem; }

@media (max-width: 480px) {
  .carousel-btn-prev { left: 0.5rem; }
  .carousel-btn-next { right: 0.5rem; }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease;
}

.carousel-dot.is-active {
  background: var(--primary);
  width: 1.5rem;
  border-radius: 0.3rem;
}

/* Counter */
.carousel-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: hsla(210, 40%, 10%, 0.55);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  pointer-events: none;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
