/* ===================================================================
   GLOBAL ACCOUNTING & BOOKKEEPING LLC — Design System
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Custom Properties ---- */
:root {
  /* Colors */
  --primary: #064E3B;
  --primary-light: #047857;
  --primary-mid: #065F46;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-warm: #10B981;
  --accent-warm-hover: #059669;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --bg-light: #ECFDF5;
  --bg-cream: #D1FAE5;
  --bg-dark: #022C22;
  --bg-dark-alt: #064E3B;
  --text-primary: #1A1A2E;
  --text-secondary: #5A6B6E;
  --text-light: #8A9B9E;
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  --card-shadow: 0 4px 24px rgba(6, 78, 59, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(6, 78, 59, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base Styles ---- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h5 { font-size: 1.1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-warm {
  background: var(--accent-warm);
  color: var(--white);
  border-color: var(--accent-warm);
}
.btn-warm:hover {
  background: var(--accent-warm-hover);
  border-color: var(--accent-warm-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ---- Section Helpers ---- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-sm {
  padding: var(--section-padding-sm);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255,255,255,0.75);
}

.section-light {
  background: var(--bg-light);
}

.section-cream {
  background: var(--bg-cream);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-dark .section-header .badge {
  background: rgba(5, 150, 105, 0.2);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ---- Grid System ---- */
.grid {
  display: grid;
  gap: 32px;
}

.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: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Split Layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}
.split-reverse > * {
  direction: ltr;
}

@media (max-width: 968px) {
  .split, .split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
}

/* ===================================================================
   TOP BAR
   =================================================================== */
.top-bar {
  background: var(--bg-dark);
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}
.top-bar-left a:hover {
  color: var(--accent);
}
.top-bar-left i {
  color: var(--accent);
  font-size: 0.8rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.top-bar-right a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 78px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo .logo-text .company-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.navbar-logo .logo-text .company-tag {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 28px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

.nav-links > li > a:hover {
  color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 8px 0;
  border-top: 3px solid var(--accent);
}

.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.dropdown-menu a i {
  color: var(--accent);
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--accent);
  padding-left: 30px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

/* Cart icon */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 16px;
  color: var(--primary);
  font-size: 1.15rem;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-cart:hover {
  background: var(--border-color);
}

.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: var(--accent, #10b981);
  border-radius: 9px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.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: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 40px;
    transition: var(--transition-slow);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-links > li > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links > li > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-links > li.dropdown-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu a:hover {
    padding-left: 8px;
  }

  .nav-cta {
    flex-direction: column;
    margin: 24px 0 0;
    gap: 12px;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ===================================================================
   HERO SECTIONS
   =================================================================== */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 120px;
  height: 120px;
  background: var(--accent);
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.hero-shape:nth-child(2) {
  width: 80px;
  height: 80px;
  background: var(--accent-warm);
  top: 25%;
  right: 12%;
  animation-delay: 1s;
}
.hero-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  background: var(--gold);
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}
.hero-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: var(--accent);
  bottom: 15%;
  right: 8%;
  animation-delay: 3s;
  border-radius: var(--radius-lg);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: var(--accent);
}
.breadcrumb i {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* ===================================================================
   TRUST BAR / PARTNERS
   =================================================================== */
.trust-bar {
  padding: 50px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.trust-bar p {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 30px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 36px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===================================================================
   CARDS
   =================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(5,150,105,0.2);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}

.card-icon.teal {
  background: rgba(5, 150, 105, 0.12);
  color: var(--accent);
}
.card-icon.warm {
  background: rgba(5, 150, 105, 0.12);
  color: var(--accent-warm);
}
.card-icon.gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}
.card-icon.primary {
  background: rgba(6, 78, 59, 0.1);
  color: var(--primary);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* Feature Card variant */
.feature-card {
  text-align: center;
  padding: 48px 32px;
}

.feature-card .card-icon {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ===================================================================
   STAGE CARDS (Business Stages)
   =================================================================== */
.stage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.stage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.stage-card:hover::before {
  opacity: 1;
}

.stage-card:nth-child(2)::before { background: var(--accent-warm); }
.stage-card:nth-child(3)::before { background: var(--gold); }

.stage-card .stage-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
}

.stage-card:nth-child(1) .stage-icon {
  background: rgba(5,150,105,0.12);
  color: var(--accent);
}
.stage-card:nth-child(2) .stage-icon {
  background: rgba(5,150,105,0.12);
  color: var(--accent-warm);
}
.stage-card:nth-child(3) .stage-icon {
  background: rgba(212,168,67,0.12);
  color: var(--gold);
}

.stage-card h3 {
  margin-bottom: 12px;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  text-align: center;
  border: 1px solid var(--border-color);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .navbar-logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text .company-name {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.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;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-col .contact-item i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
  text-align: center;
}

.footer-col .contact-item span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===================================================================
   SERVICES SECTION
   =================================================================== */
.services-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.services-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.services-detail-card .card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.services-detail-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.services-detail-card:hover .card-img img {
  transform: scale(1.05);
}

.services-detail-card .card-body {
  padding: 32px;
}

.services-detail-card .card-body h3 {
  margin-bottom: 12px;
}

.services-detail-card .card-body p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), var(--gold));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(5,150,105,0.15);
}

.process-step:nth-child(2) .step-number {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  box-shadow: 0 4px 20px rgba(5,150,105,0.15);
}

.process-step:nth-child(3) .step-number {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,168,67,0.15);
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
}

/* ===================================================================
   PRICING
   =================================================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-toggle span.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--border-color);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch.active::after {
  left: 29px;
}

.save-badge {
  background: rgba(5,150,105,0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(5,150,105,0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white);
  padding: 6px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card .plan-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card .price sup {
  font-size: 1.4rem;
  top: -1rem;
}

.pricing-card .price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-card .plan-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.pricing-features li i {
  color: var(--accent);
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-light);
}

.pricing-features li.disabled i {
  color: var(--text-light);
}

.pricing-card .btn {
  width: 100%;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(5,150,105,0.3);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(5,150,105,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--accent);
  background: rgba(5,150,105,0.04);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===================================================================
   TEAM MEMBERS
   =================================================================== */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(5,150,105,0.2);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
}

/* ===================================================================
   VALUES
   =================================================================== */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.value-card .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================================================
   INDUSTRY CARDS
   =================================================================== */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.industry-card .card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.industry-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,60,64,0.4) 100%);
}

.industry-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.industry-card:hover .card-img img {
  transform: scale(1.08);
}

.industry-card .card-body {
  padding: 28px;
}

.industry-card .card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.industry-card .card-body p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ===================================================================
   BLOG CARDS
   =================================================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.blog-card .card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .card-img img {
  transform: scale(1.05);
}

.blog-card .card-body {
  padding: 28px;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.blog-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card .card-meta i {
  color: var(--accent);
  font-size: 0.75rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* Featured Blog */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  background: var(--white);
  margin-bottom: 48px;
  transition: var(--transition);
}

.blog-featured:hover {
  box-shadow: var(--card-shadow-hover);
}

.blog-featured .card-img {
  height: 100%;
  min-height: 300px;
}

.blog-featured .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured .card-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured .featured-badge {
  display: inline-block;
  background: rgba(5,150,105,0.12);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  width: fit-content;
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured .card-body {
    padding: 28px;
  }
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--white);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(5,150,105,0.1);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===================================================================
   CONTACT FORM
   =================================================================== */
.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--white);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(5,150,105,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6B6E' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Contact Info Cards */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.contact-info-card .info-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(5,150,105,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* Map placeholder */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-content h2 {
  margin-bottom: 16px;
}

.why-content > p {
  margin-bottom: 32px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-item .check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5,150,105,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.92rem;
  margin: 0;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}

.why-image .floating-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--card-shadow-hover);
  text-align: center;
}

.why-image .floating-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.why-image .floating-stat .stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===================================================================
   OFFICE HOURS
   =================================================================== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.hours-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

/* ===================================================================
   COMPARISON TABLE
   =================================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.comparison-table thead th {
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
  text-align: center;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table .check {
  color: var(--accent);
}

.comparison-table .cross {
  color: var(--text-light);
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.55s; }

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   COUNTER ANIMATION
   =================================================================== */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================================
   AWARDS
   =================================================================== */
.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.award-item {
  text-align: center;
  padding: 24px;
  transition: var(--transition);
}

.award-item:hover {
  transform: translateY(-4px);
}

.award-item .award-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(5,150,105,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--gold);
}

.award-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.award-item p {
  font-size: 0.82rem;
}

/* ===================================================================
   MISC UTILITIES
   =================================================================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-warm { color: var(--accent-warm); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(5,150,105,0.35);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 160px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(5,150,105,0.45);
  animation: floating-call-glow 1.8s ease-in-out infinite;
  transition: var(--transition);
}
 
/* Expanding glow ring */
.floating-call::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  border-radius: 50%;
  background: var(--accent);
  z-index: -1;
  animation: floating-call-ring 1.8s ease-out infinite;
}

.floating-call i {
  font-size: 1.4rem;
  line-height: 1;
}

.floating-call-text {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
  font-weight: 600;
  transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}

.floating-call:hover {
  background: var(--primary);
}

.floating-call:hover .floating-call-text {
  max-width: 140px;
  opacity: 1;
  margin-left: 10px;
}

@keyframes floating-call-glow {
  0%   { box-shadow: 0 0 0 0 rgba(5,150,105,0.55), 0 6px 20px rgba(5,150,105,0.45); }
  50%  { box-shadow: 0 0 22px 6px rgba(16,185,129,0.85), 0 6px 24px rgba(5,150,105,0.55); }
  100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.55), 0 6px 20px rgba(5,150,105,0.45); }
}

@keyframes floating-call-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===================================================================
   IMAGE PLACEHOLDERS (gradient backgrounds when no image)
   =================================================================== */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.img-placeholder.warm {
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--gold) 100%);
}

.img-placeholder.dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
}

/* ===================================================================
   COOKIE BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.cookie-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
