/* ==========================================================================
   DELTA POWER CARE — Premium Design System
   Version: 2.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   § 1. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --------------------------------------------------------------------------
   § 2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* — Brand Colors — */
  --primary:          #0F766E;
  --primary-dark:     #0D6B64;
  --primary-light:    #14B8A6;
  --secondary:        #10B981;
  --secondary-dark:   #0D9668;
  --accent:           #14B8A6;

  /* — Neutrals — */
  --dark:             #111827;
  --dark-secondary:   #1F2937;
  --text-primary:     #111827;
  --text-secondary:   #4B5563;
  --text-muted:       #6B7280;
  --text-light:       #9CA3AF;

  /* — Backgrounds — */
  --bg:               #F8FAFC;
  --bg-secondary:     #F1F5F9;
  --bg-dark:          #0F172A;
  --card:             #FFFFFF;

  /* — Borders — */
  --border:           #E5E7EB;
  --border-light:     #F3F4F6;

  /* — Status — */
  --success:          #22C55E;
  --success-light:    #DCFCE7;
  --warning:          #F59E0B;
  --warning-light:    #FEF3C7;
  --danger:           #EF4444;
  --danger-light:     #FEE2E2;
  --info:             #3B82F6;
  --info-light:       #DBEAFE;

  /* — Typography — */
  --font:             'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:        'SF Mono', 'Fira Code', monospace;

  /* Fluid type scale */
  --fs-hero:          clamp(2.125rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-h1:            clamp(1.75rem, 1.25rem + 2vw, 2.625rem);
  --fs-h2:            clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  --fs-h3:            clamp(1.25rem, 1rem + 0.75vw, 1.75rem);
  --fs-h4:            clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-body:          clamp(0.9375rem, 0.875rem + 0.25vw, 1.125rem);
  --fs-small:         clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem);
  --fs-xs:            0.75rem;

  /* — Spacing — */
  --space-xs:         0.25rem;
  --space-sm:         0.5rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        4rem;
  --space-4xl:        6rem;

  /* — Border Radius — */
  --radius-sm:        0.375rem;
  --radius-md:        0.5rem;
  --radius-lg:        0.75rem;
  --radius-xl:        1rem;
  --radius-2xl:       1.25rem;
  --radius-3xl:       1.5rem;
  --radius-full:      9999px;

  /* — Shadows — */
  --shadow-xs:        0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:        0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg:        0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl:        0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl:       0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-glow:      0 0 20px rgba(15,118,110,0.15);
  --shadow-glow-lg:   0 0 40px rgba(15,118,110,0.2);

  /* — Transitions — */
  --ease-smooth:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:         cubic-bezier(0, 0, 0.2, 1);
  --transition-fast:  all 0.15s var(--ease-smooth);
  --transition:       all 0.3s var(--ease-smooth);
  --transition-slow:  all 0.5s var(--ease-smooth);

  /* — Layout — */
  --container-max:    1280px;
  --navbar-h:         72px;
  --mobile-bar-h:     64px;
}

/* --------------------------------------------------------------------------
   § 3. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--navbar-h) + 1rem);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin-bottom: 1rem; }

::selection {
  background: rgba(15, 118, 110, 0.15);
  color: var(--primary-dark);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   § 4. PRELOADER
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card);
  gap: 1.5rem;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader-brand {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.preloader-brand span {
  color: var(--primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   § 5. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
  padding: 0.625rem 0;
  box-shadow: var(--shadow-sm);
}

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

.navbar-brand {
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.03em;
  padding: 0;
}

.navbar-brand i {
  font-size: 1.5rem;
  color: var(--primary);
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--card);
  transition: var(--transition);
}

.navbar-cta .btn-call:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.navbar-cta .btn-call i {
  font-size: 1rem;
  color: var(--primary);
}

.navbar-cta .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  transition: var(--transition);
}

.navbar-cta .btn-book:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Mobile nav toggle */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: none;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { bottom: -7px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile slide-in drawer */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff !important;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-2xl);
    z-index: 1060;
    overflow-y: auto;
    display: flex !important;
    flex-direction: column;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.25rem;
  }

  .navbar-nav .nav-link {
    font-size: 1.125rem;
    padding: 0.875rem 1rem !important;
    border-radius: var(--radius-lg);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--bg);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-direction: column;
    gap: 0.75rem;
  }

  .navbar-cta .btn-call,
  .navbar-cta .btn-book {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .mobile-close-nav {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
  }

  .mobile-close-nav:hover {
    background: var(--danger-light);
    color: var(--danger);
    border-color: var(--danger);
  }
}

/* --------------------------------------------------------------------------
   § 6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.6875rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.btn:active::after {
  opacity: 1;
  transition: opacity 0s;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Primary Button */
.btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 4px 14px rgba(15,118,110,0.35) !important;
}

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

/* Secondary / Accent Button */
.btn-accent,
.btn-success {
  background: var(--secondary) !important;
  color: #fff !important;
  border: none !important;
}

.btn-accent:hover:not(:disabled),
.btn-success:hover:not(:disabled) {
  background: var(--secondary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 4px 14px rgba(16,185,129,0.35) !important;
  color: #fff !important;
}

/* Outline Button */
.btn-outline-primary {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}

.btn-outline-primary:hover:not(:disabled) {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
}

/* Dark Button */
.btn-dark {
  background: var(--dark) !important;
  color: #fff !important;
}

.btn-dark:hover:not(:disabled) {
  background: var(--dark-secondary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl) !important;
  color: #fff !important;
}

/* White / Light Button */
.btn-light,
.btn-outline-light {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
}

.btn-light:hover,
.btn-outline-light:hover {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

/* Large Button */
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

/* Small Button */
.btn-sm {
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
}

/* Button with spinner */
.btn .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}

/* Button icon spacing */
.btn i {
  font-size: 1.1em;
}

/* --------------------------------------------------------------------------
   § 7. CARDS
   -------------------------------------------------------------------------- */
.card-premium {
  background: var(--card);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}

.card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(15,118,110,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

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

/* Glass Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-2xl);
}

/* Custom card (legacy compat) */
.custom-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 118, 110, 0.2);
}

/* --------------------------------------------------------------------------
   § 8. ICON BOX
   -------------------------------------------------------------------------- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.icon-box-primary {
  background: linear-gradient(135deg, rgba(15,118,110,0.1), rgba(20,184,166,0.1));
  color: var(--primary);
}

.icon-box-secondary {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(34,197,94,0.1));
  color: var(--secondary);
}

.icon-box-warning {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(251,191,36,0.1));
  color: var(--warning);
}

.icon-box-danger {
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(248,113,113,0.1));
  color: var(--danger);
}

.icon-box-info {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(96,165,250,0.1));
  color: var(--info);
}

.custom-card:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
}

/* Service card icon */
.service-card .icon-box {
  width: 64px;
  height: 64px;
  font-size: 1.75rem;
  background: linear-gradient(135deg, rgba(15,118,110,0.1), rgba(20,184,166,0.08));
  color: var(--primary);
  border-radius: var(--radius-xl);
}

.service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

/* --------------------------------------------------------------------------
   § 9. SECTION LAYOUTS
   -------------------------------------------------------------------------- */
.section-padding {
  padding: clamp(3rem, 2rem + 4vw, 6rem) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

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

/* --------------------------------------------------------------------------
   § 10. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-h) + 4rem) 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 25%, #F0FDFA 50%, #E0F2FE 100%);
}

@media (max-width: 991.98px) {
  .hero-section {
    align-items: flex-start;
    padding-top: calc(var(--navbar-h) + 2rem);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -30px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.15);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--secondary);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(15, 118, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
}

.hero-stat-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper img {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  animation: hero-float 6s ease-in-out infinite;
}

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

.hero-float-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-primary);
  z-index: 3;
  border: 1px solid var(--border-light);
  animation: hero-float 5s ease-in-out infinite;
}

.hero-float-card i {
  font-size: 1.25rem;
}

.hero-float-card.card-top {
  top: 10%;
  right: -10%;
  animation-delay: -1s;
}

.hero-float-card.card-bottom {
  bottom: 15%;
  left: -5%;
  animation-delay: -2.5s;
}

/* --------------------------------------------------------------------------
   § 11. BRAND MARQUEE
   -------------------------------------------------------------------------- */
.marquee-section {
  padding: 2rem 0;
  background: var(--card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 2.5rem 0;
  background: var(--card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: var(--transition-fast);
  cursor: default;
  user-select: none;
}

.marquee-item:hover {
  color: var(--primary);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   § 12. SERVICES CARDS
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 118, 110, 0.2);
}

.service-card .card-title {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--text-primary);
}

.service-card .card-text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .btn {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   § 13. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.feature-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-xs);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 118, 110, 0.2);
}

.feature-card .icon-box {
  margin: 0 auto 1.25rem;
}

.feature-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   § 14. BOOKING FORM
   -------------------------------------------------------------------------- */
.booking-section {
  position: relative;
}

.booking-form-wrapper {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.booking-step h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.booking-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0;
}

/* Form inputs */
.form-floating > .form-control,
.form-floating > .form-select {
  height: 56px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  padding: 1rem 1rem;
  transition: var(--transition-fast);
  background-color: var(--card);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-floating > label {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.form-control,
.form-select {
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
  transition: var(--transition-fast);
  background-color: var(--card);
  color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
  outline: none;
}

textarea.form-control {
  height: auto;
  min-height: 100px;
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-control.is-valid {
  border-color: var(--success);
}

.invalid-feedback {
  font-size: 0.8125rem;
  color: var(--danger);
  margin-top: 0.375rem;
}

/* Input with icon */
.input-group {
  position: relative;
}

.input-group .input-group-text {
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--bg);
  color: var(--text-muted);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 0 1rem;
  font-size: 1.125rem;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group .form-control,
.input-group .form-select {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.input-group:focus-within .input-group-text {
  border-color: var(--primary);
  color: var(--primary);
}

/* Step progress indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 1;
}

.step-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.step-dot.completed {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: var(--transition);
}

.step-line.active {
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   § 15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-xs);
}

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

.testimonial-google {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #FACC15;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial-source {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   § 16. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border);
}

.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none !important;
  gap: 1rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(15, 118, 110, 0.03);
  color: var(--primary);
}

.accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
  transition: var(--transition);
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B7280'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F766E'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: none;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   § 17. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.contact-value {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

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

.contact-value a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

/* --------------------------------------------------------------------------
   § 18. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb-section {
  padding: calc(var(--navbar-h) + 2rem) 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

.breadcrumb-item {
  font-size: var(--fs-small);
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   § 19. PROCESS / TIMELINE
   -------------------------------------------------------------------------- */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step:last-child::before {
  display: none;
}

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   § 20. FLOATING WIDGETS
   -------------------------------------------------------------------------- */

/* WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 0.625rem 1rem;
  padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  gap: 0.75rem;
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  min-height: 48px;
}

/* --------------------------------------------------------------------------
   § 21. SUCCESS STATES
   -------------------------------------------------------------------------- */
.success-view {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: success-pop 0.5s var(--ease-bounce);
}

@keyframes success-pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-view h2 {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
}

.success-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: left;
  max-width: 480px;
  margin: 1.5rem auto;
}

.success-card-row {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: var(--fs-small);
}

.success-card-row:last-child {
  border-bottom: none;
}

.success-card-label {
  color: var(--text-muted);
  font-weight: 500;
}

.success-card-value {
  color: var(--text-primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   § 22. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-brand {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.footer-brand i {
  color: var(--accent);
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-small);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--fs-small);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   § 23. CTA SECTIONS
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -100px;
  right: -100px;
}

.cta-section h2 {
  color: #fff;
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   § 24. ABOUT PAGE SPECIFIC
   -------------------------------------------------------------------------- */
.about-pillars {
  display: grid;
  gap: 1rem;
}

.about-pillar {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.about-pillar:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.about-pillar.pillar-secondary {
  border-left-color: var(--secondary);
}

.about-pillar.pillar-warning {
  border-left-color: var(--warning);
}

/* --------------------------------------------------------------------------
   § 25. LEGAL PAGES (TERMS, PRIVACY)
   -------------------------------------------------------------------------- */
.legal-content {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: var(--fs-h3);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
}

/* --------------------------------------------------------------------------
   § 26. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* --------------------------------------------------------------------------
   § 27. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--success-light);
  color: var(--success);
}

.badge-open::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg) 25%, var(--border-light) 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --------------------------------------------------------------------------
   § 28. RESPONSIVE — MOBILE FIRST
   -------------------------------------------------------------------------- */

/* Small phones (≤ 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.875rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .hero-stat {
    flex: 1 1 calc(50% - 0.5rem);
  }
  .booking-form-wrapper {
    padding: 1.25rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/* Phones (≤ 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    padding-top: calc(var(--navbar-h) + 1rem);
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: var(--mobile-bar-h);
  }

  .floating-whatsapp {
    bottom: calc(var(--mobile-bar-h) + 16px);
    right: auto;
    left: 16px;
  }

  .scroll-to-top {
    bottom: calc(var(--mobile-bar-h) + 16px);
    right: 16px;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .custom-card {
    padding: 1.5rem;
  }
}

/* Tablets (≤ 768px) */
@media (max-width: 767.98px) {
  .hero-image-wrapper {
    margin-bottom: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .marquee-item {
    font-size: 0.75rem;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: var(--mobile-bar-h);
  }
}

/* Tablet landscape (≤ 992px) */
@media (max-width: 991.98px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98);
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

/* Desktop */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }

  .mobile-sticky-bar {
    display: none !important;
  }
}

/* Large desktop (≥ 1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-max);
  }
}

/* --------------------------------------------------------------------------
   § 29. SAFE AREA (iPhone Notch)
   -------------------------------------------------------------------------- */
@supports (padding: env(safe-area-inset-top)) {
  .navbar {
    padding-top: max(1rem, env(safe-area-inset-top));
  }

  .mobile-sticky-bar {
    padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* --------------------------------------------------------------------------
   § 30. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .navbar,
  .floating-whatsapp,
  .scroll-to-top,
  .mobile-sticky-bar,
  #preloader {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .card-premium,
  .custom-card,
  .glass-panel {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* --------------------------------------------------------------------------
   SERVICE CATALOG CARDS (services.php)
   -------------------------------------------------------------------------- */
.svc-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 118, 110, 0.25);
}

.svc-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.08);
}

.svc-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--card), transparent);
  pointer-events: none;
}

.svc-card__body {
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.svc-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.svc-card__badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.svc-card__badge i {
  font-size: 0.9rem;
}

.svc-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(15, 118, 110, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}

@media (max-width: 767.98px) {
  .svc-card {
    min-height: 380px;
  }
  .svc-card__img {
    height: 180px;
  }
  .svc-card__body {
    padding: 1.25rem;
  }
}

/* Custom Spacing */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
