/* ============================================
   AMADEO MEDICAL GROUP — Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — warm clinical */
  --blue-primary: #2B7CB3;
  --blue-dark: #1A5A87;
  --blue-deeper: #0E3754;
  --blue-light: #5AADE0;
  --blue-pale: #E3F1FA;
  --blue-wash: #F0F7FC;

  /* Warm tones */
  --warm-bg: #FDFAF6;
  --warm-cream: #FBF7F0;
  --warm-peach: #FDEEE4;
  --warm-coral: #F4845F;
  --warm-rose: #E8B4B8;

  /* Neutrals — warmer undertone */
  --white: #FFFFFF;
  --off-white: #FDFCFA;
  --gray-50: #F8F7F5;
  --gray-100: #EFEDEA;
  --gray-200: #DDD9D4;
  --gray-300: #B8B2AA;
  --gray-400: #8E877E;
  --gray-500: #6E6860;
  --gray-600: #504B44;
  --gray-700: #332F2A;
  --gray-800: #1F1C18;
  --gray-900: #110F0D;

  /* Accent */
  --accent-warm: #E07A30;
  --accent-warm-hover: #C96A25;
  --accent-green: #3DAB7C;
  --accent-red: #D94F4F;
  --gold: #C5A55A;
  --gold-light: #D4BB7A;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 80px;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 28px;

  /* Shadows — warmer, softer */
  --shadow-sm: 0 2px 8px rgba(15, 55, 84, 0.04), 0 1px 3px rgba(15, 55, 84, 0.03);
  --shadow-md: 0 6px 20px rgba(15, 55, 84, 0.07), 0 2px 6px rgba(15, 55, 84, 0.03);
  --shadow-lg: 0 16px 48px rgba(15, 55, 84, 0.09), 0 6px 16px rgba(15, 55, 84, 0.04);
  --shadow-xl: 0 24px 64px rgba(15, 55, 84, 0.11), 0 8px 24px rgba(15, 55, 84, 0.05);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Accessibility: Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-primary);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
  outline: none;
}

/* --- Accessibility: Focus Indicators --- */
*:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav__cta:focus-visible,
.floating-cta__btn:focus-visible {
  outline: 3px solid var(--accent-warm);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(224, 122, 48, 0.2);
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__shapes::before,
  .hero__shapes::after {
    animation: none !important;
  }

  .image-break img {
    transform: none !important;
  }
}

/* --- Accessibility: High Contrast Mode --- */
@media (prefers-contrast: high) {
  :root {
    --gray-400: #555;
    --gray-500: #444;
    --gray-600: #333;
  }

  .card {
    border: 2px solid var(--gray-600);
  }

  .btn {
    border: 2px solid currentColor;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--warm-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--blue-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--gray-800);
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.3;
}

h4 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray-600);
}

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

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

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-500);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--blue {
  background: var(--blue-primary);
  color: var(--white);
}

.section--blue h2,
.section--blue h3,
.section--blue h4 {
  color: var(--white);
}

.section--blue p {
  color: rgba(255,255,255,0.85);
}

.section--pale {
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--blue-wash) 100%);
  position: relative;
}

.section--gray {
  background: var(--warm-cream);
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--accent-warm);
  margin-bottom: var(--space-md);
}

.section--blue .section-label {
  color: rgba(255,255,255,0.7);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition-base);
}

.nav--solid .nav__logo-text {
  color: var(--gray-800);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-warm);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav--solid .nav__link {
  color: var(--gray-600);
}

.nav--solid .nav__link:hover {
  color: var(--blue-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.4rem;
  background: var(--accent-warm);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__cta:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav--solid .nav__toggle span {
  background: var(--gray-700);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__link {
    color: var(--gray-600) !important;
    font-size: 1.05rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A2E47 0%, #0E3754 25%, var(--blue-dark) 50%, var(--blue-primary) 80%, #5AADE0 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(61, 171, 124, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 60%, rgba(43, 124, 179, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(224, 122, 48, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 75%, rgba(90, 173, 224, 0.15) 0%, transparent 50%);
}

/* Decorative geometric shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__shapes::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -150px;
  right: -120px;
  animation: float-slow 20s ease-in-out infinite;
}

.hero__shapes::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 171, 124, 0.04) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  bottom: 5%;
  left: -100px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -20px); }
  66% { transform: translate(-10px, 15px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--nav-height);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-warm);
}

/* Hero image panel (right side on desktop) */
.hero__image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}

.hero__image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-deeper) 0%, transparent 40%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero__image-panel {
    display: none;
  }
}

/* Inner page hero (shorter) */
.hero--inner {
  min-height: 45vh;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.hero--inner .hero__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero--inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent-warm);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 145, 58, 0.3);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

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

.btn--outline-dark:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.btn--blue {
  background: var(--blue-primary);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.stats-bar__item {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-100);
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats-bar__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }

  .stats-bar__item:nth-child(2)::after {
    display: none;
  }

  .stats-bar__item:nth-child(1),
  .stats-bar__item:nth-child(2) {
    border-bottom: 1px solid var(--gray-100);
  }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--gray-100);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.card--featured {
  border: 2px solid var(--blue-primary);
  position: relative;
  overflow: hidden;
}

.card--featured::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

/* --- Feature Row (asymmetric layout) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-row__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-pale), var(--warm-cream));
  box-shadow: var(--shadow-lg);
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__content h2 {
  margin-bottom: var(--space-lg);
}

.feature-row__content p {
  margin-bottom: var(--space-lg);
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--gray-600);
}

.feature-row__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .feature-row--reverse {
    direction: ltr;
  }
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: linear-gradient(160deg, #0A2E47 0%, var(--blue-dark) 40%, var(--blue-primary) 70%, #5AADE0 100%);
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 122, 48, 0.08) 0%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px;
  left: -150px;
  animation: float-slow 18s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(90, 173, 224, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
  animation: float-slow 22s ease-in-out infinite reverse;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  font-size: 1.1rem;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Team / Doctor Cards --- */
.doctor-card {
  text-align: center;
}

.doctor-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-100));
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card h3 {
  margin-bottom: var(--space-xs);
}

.doctor-card__specialty {
  font-size: 0.9rem;
  color: var(--blue-primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.doctor-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__text h4 {
  margin-bottom: 4px;
  color: var(--gray-800);
}

.contact-info__text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-info__text a {
  color: var(--blue-primary);
  font-weight: 500;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(43, 124, 179, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Map --- */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.hours-table td {
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--gray-700);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gray-500);
}

.hours-table tr.today {
  background: var(--blue-pale);
  border-radius: var(--border-radius-sm);
}

.hours-table tr.today td {
  color: var(--blue-primary);
  font-weight: 600;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, #0E1D28 0%, #0A1318 100%);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand img {
  height: 40px;
  margin-bottom: var(--space-lg);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.footer__social a:hover {
  background: var(--blue-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.7);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Animations (GSAP targets) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

/* --- Page loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--blue-deeper);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.page-loader__pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-primary);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ============================================
   LUXURY ENHANCEMENTS
   ============================================ */

/* --- Subtle Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* --- Warm Glass Cards --- */
.card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent-warm));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14, 55, 84, 0.1), 0 8px 20px rgba(14, 55, 84, 0.04);
}

.card__icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
  background: linear-gradient(135deg, var(--blue-pale), var(--warm-peach));
}

.card:hover .card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
}

.card:hover .card__icon svg {
  stroke: var(--white);
}

/* --- Luxury Buttons --- */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-hover) 100%);
  box-shadow: 0 4px 15px rgba(232, 145, 58, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 145, 58, 0.35);
}

/* --- Image Hover Effects --- */
.feature-row__image {
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.feature-row__image img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-row__image:hover img {
  transform: scale(1.05);
}

.feature-row__image:hover {
  box-shadow: 0 20px 60px rgba(15, 61, 94, 0.15);
}

/* --- Hero Parallax Layer --- */
.hero__image-panel img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Decorative Warm Line --- */
.section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-warm), var(--warm-coral));
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

.section--blue .section-label::before {
  background: linear-gradient(90deg, var(--gold-light), var(--accent-warm));
}

/* --- Stats Bar Warm --- */
.stats-bar {
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
}

.stats-bar__number {
  background: linear-gradient(135deg, var(--blue-primary), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Organic Section Dividers --- */
.section::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent-warm));
  margin: 0 auto var(--space-3xl);
  border-radius: 3px;
}

.section--blue::before,
.section--sm::before,
.cta-section::before,
.testimonials::before {
  display: none;
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  background: linear-gradient(135deg, var(--blue-pale), var(--warm-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--accent-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.testimonial-card__detail {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- Stars --- */
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* --- Trust Badges --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-400);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-bar__item svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 1.5;
}

/* --- Floating CTA (WhatsApp + Call) --- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-cta__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}

.floating-cta__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
  color: var(--white);
}

.floating-cta__btn--whatsapp {
  background: #25D366;
}

.floating-cta__btn--call {
  background: var(--blue-primary);
}

.floating-cta__btn svg {
  width: 26px;
  height: 26px;
}

.floating-cta__btn--call svg {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Pulse ring on call button */
.floating-cta__btn--call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  animation: float-pulse 2s ease-in-out infinite;
}

@keyframes float-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* Tooltip labels */
.floating-cta__btn::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  background: var(--gray-800);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.floating-cta__btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* --- Luxury Nav Transition --- */
.nav {
  transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.3s ease;
}

.nav--solid {
  height: 70px;
}

/* --- Smooth Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
  .floating-cta { bottom: 16px; right: 16px; }
  .floating-cta__btn { width: 50px; height: 50px; }
  .floating-cta__btn::after { display: none; }
}

/* --- Section Parallax Background --- */
.section--parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ============================================
   IMAGE BREAKS & WAVE DIVIDERS
   ============================================ */

/* --- Full-bleed Image Divider --- */
.image-break {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 55, 84, 0.5) 0%,
    rgba(14, 55, 84, 0.25) 40%,
    rgba(14, 55, 84, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.image-break__text {
  max-width: 650px;
}

.image-break__text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.image-break__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

/* Parallax on image breaks */
.image-break img {
  transition: transform 0.1s linear;
  will-change: transform;
  transform: scale(1.1);
}

/* --- Wave Dividers --- */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

/* Wave colors match section backgrounds */
.wave-divider--white svg path { fill: var(--warm-bg); }
.wave-divider--cream svg path { fill: var(--warm-cream); }
.wave-divider--blue svg path { fill: var(--blue-primary); }
.wave-divider--dark svg path { fill: #0E1D28; }
.wave-divider--pale svg path { fill: var(--warm-cream); }

/* --- Full-width quote banner --- */
.quote-banner {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--blue-pale) 100%);
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
  position: relative;
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--blue-deeper);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
}

.quote-banner blockquote::before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -30px;
  left: -20px;
  color: var(--blue-pale);
  font-family: var(--font-display);
  line-height: 1;
}

.quote-banner cite {
  display: block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* --- Horizontal scrolling gallery strip --- */
.gallery-strip {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding: var(--space-xl) var(--space-xl);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip__item {
  flex: 0 0 auto;
  width: 300px;
  height: 220px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.08);
}

.gallery-strip__item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .image-break { height: 35vh; min-height: 250px; }
  .wave-divider svg { height: 35px; }
  .gallery-strip__item { width: 250px; height: 180px; }
}
