/* ==========================================================================
   TAKE MY JUNK DUBAI - MODERN DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Color Palette */
  --primary-dark: #071e18;      /* Deep Midnight Emerald */
  --primary-green: #0d382d;     /* Deep Rich Emerald */
  --primary-brand: #0f4638;     /* Core Brand Forest Green */
  --accent-mint: #10b981;       /* Radiant Mint Green */
  --accent-mint-light: #d1fae5; /* Soft Mint Background */
  --accent-mint-dark: #059669;  /* Dark Mint */
  --accent-lime: #22c55e;       /* Vibrant Lime */
  --accent-amber: #f59e0b;      /* Warm Gold / Amber Accent */
  --accent-amber-light: #fef3c7;/* Light Amber */
  --accent-coral: #ef4444;      /* Soft Alert Coral */

  /* Neutral Surfaces */
  --bg-body: #f8fafc;           /* Clean Ultra-light Background */
  --bg-surface: #ffffff;        /* Pure White Card Surface */
  --bg-surface-alt: #f1f5f9;    /* Light Slate Surface */
  --bg-dark: #071914;           /* Dark Section Background */
  
  /* Typography Colors */
  --text-main: #0f172a;         /* Deep Slate Main Text */
  --text-muted: #64748b;        /* Subtitle / Slate Secondary */
  --text-muted-light: #94a3b8;  /* Light Secondary */
  --text-light: #ffffff;        /* Pure White */
  --text-on-dark-muted: #cbd5e1;/* Muted on dark backgrounds */

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 2px 8px -2px rgba(15, 70, 56, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(15, 70, 56, 0.1), 0 8px 10px -6px rgba(15, 70, 56, 0.06);
  --shadow-lg: 0 20px 40px -15px rgba(15, 70, 56, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(7, 30, 24, 0.25);
  --shadow-glow-mint: 0 0 30px rgba(16, 185, 129, 0.35);
  --shadow-glow-amber: 0 0 25px rgba(245, 158, 11, 0.3);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-dark-bg: rgba(13, 56, 45, 0.85);
  --glass-dark-border: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

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

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

/* ==========================================================================
   UTILITY CLASSES & BRAND BADGES
   ========================================================================== */

.text-brand { color: var(--primary-brand) !important; }
.text-mint { color: var(--accent-mint) !important; }
.text-amber { color: var(--accent-amber) !important; }
.bg-brand { background-color: var(--primary-brand) !important; color: #fff !important; }
.bg-brand-dark { background-color: var(--primary-dark) !important; color: #fff !important; }
.bg-mint { background-color: var(--accent-mint) !important; color: #fff !important; }
.bg-mint-subtle { background-color: var(--accent-mint-light) !important; color: var(--primary-brand) !important; }
.bg-surface-alt { background-color: var(--bg-surface-alt) !important; }

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-mint);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
}

.brand-badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-mint);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.brand-badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 26px;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.btn-primary,
.btn-mint {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover,
.btn-mint:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-mint);
}

.btn-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  color: #000000 !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-amber);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-brand) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-brand:hover {
  background: var(--primary-brand);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-bar {
  background: var(--primary-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #ffffff;
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--accent-mint);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  padding-top: 16px;
  padding-bottom: 16px;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 70, 56, 0.06);
  z-index: 1030;
}

.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 8px 30px rgba(7, 30, 24, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--primary-dark) !important;
  letter-spacing: -0.03em;
}

.brand-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #10b981 0%, #0d382d 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main) !important;
  margin: 0 8px;
  padding: 8px 14px !important;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-mint-dark) !important;
  background-color: rgba(16, 185, 129, 0.08);
}

.dropdown-menu {
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 8px;
  background: #ffffff;
}

.dropdown-item {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-brand);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 170px 0 90px;
  background: radial-gradient(circle at 80% 20%, #134e3f 0%, #0a2921 50%, #061914 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #6ee7b7 50%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.88rem;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-pill i {
  color: var(--accent-mint);
}

/* Glassmorphism Callback Card */
.glass-quote-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(16, 185, 129, 0.15);
  position: relative;
  overflow: hidden;
}

.glass-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #10b981, #f59e0b, #10b981);
}

.form-floating > .form-control {
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text-main);
  font-weight: 500;
}

.form-floating > .form-control:focus {
  background-color: #ffffff;
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.form-floating > label {
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */

.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

.stats-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 185, 129, 0.12);
  padding: 30px 20px;
}

.stat-item {
  text-align: center;
  padding: 10px 15px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #e2e8f0;
}

@media (max-width: 767.98px) {
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-brand);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number .highlight {
  color: var(--accent-mint);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */

.section-padding {
  padding: 90px 0;
}

.section-title-wrap {
  margin-bottom: 50px;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   BENTO GRID SERVICE CARDS
   ========================================================================== */

.bento-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  border: 1px solid rgba(15, 70, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.35);
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0;
  transition: var(--transition-base);
}

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

.bento-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(13, 56, 45, 0.08) 100%);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
  transition: var(--transition-base);
}

.bento-card:hover .bento-icon-wrapper {
  background: linear-gradient(135deg, #10b981 0%, #0d382d 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: var(--shadow-glow-mint);
}

.bento-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.bento-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bento-card-cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-mint-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.bento-card-cta:hover {
  color: var(--primary-brand);
  gap: 10px;
}

/* Custom Highlight Bento Card */
.bento-card-highlight {
  background: linear-gradient(135deg, #0a2921 0%, #061914 100%);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-xl);
}

.bento-card-highlight .bento-card-title {
  color: #ffffff;
}

.bento-card-highlight .bento-card-desc {
  color: var(--text-on-dark-muted);
}

.bento-card-highlight .bento-icon-wrapper {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-mint);
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE PROCESS)
   ========================================================================== */

.process-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(15, 70, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  z-index: 2;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.3);
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #0d382d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  border: 4px solid #ffffff;
  position: relative;
}

/* Connecting Line */
.process-line-wrap {
  position: relative;
}

.process-line-wrap::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #10b981 0, #10b981 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

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

@media (max-width: 991.98px) {
  .process-line-wrap::before {
    display: none;
  }
}

/* ==========================================================================
   WHY CHOOSE US / COMPARISON SECTION
   ========================================================================== */

.why-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comparison-box {
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
}

.comparison-box-take {
  background: #ffffff;
  border: 2px solid rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-md);
}

.comparison-box-others {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}

.checklist-icon-yes {
  color: var(--accent-mint-dark);
  font-size: 1.25rem;
  line-height: 1.2;
}

.checklist-icon-no {
  color: var(--accent-coral);
  font-size: 1.25rem;
  line-height: 1.2;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
  background: radial-gradient(circle at 10% 50%, #0f4638 0%, #071e18 100%);
  border-radius: 28px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;
  border: 1px solid rgba(15, 70, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #0d382d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* ==========================================================================
   ACCORDION / FAQ
   ========================================================================== */

.accordion-item {
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
  border-radius: 16px !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.accordion-item:hover {
  border-color: rgba(16, 185, 129, 0.35);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 22px 26px;
  background: #ffffff;
  color: var(--text-main);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary-brand);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.accordion-button::after {
  filter: hue-rotate(100deg);
}

.accordion-body {
  padding: 22px 26px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   COVERAGE AREAS PILLS
   ========================================================================== */

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.area-pill:hover {
  background: var(--primary-brand);
  color: #ffffff;
  border-color: var(--primary-brand);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a,
footer a:visited,
.footer-links a,
.footer-links a:visited,
.footer-contact-item a,
.footer-contact-item a:visited,
.text-on-dark-muted a,
.text-on-dark-muted a:visited {
  color: var(--text-on-dark-muted) !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer a:hover,
.footer-links a:hover,
.footer-contact-item a:hover,
.text-on-dark-muted a:hover {
  color: var(--accent-mint) !important;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 22px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-mint);
  border-radius: 2px;
}

.footer-links a {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--accent-mint);
  font-size: 1.25rem;
  line-height: 1.2;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-mint);
  color: #ffffff !important;
  border-color: var(--accent-mint);
  transform: translateY(-3px);
}

/* Page Hero Headings Fix */
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero .display-4,
.page-hero .display-5 {
  color: #ffffff !important;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1060;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  transition: var(--transition-base);
  border: 2.5px solid #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.whatsapp-btn {
  background: #25d366;
  animation: pulse-whatsapp 2.2s infinite;
}

.call-btn {
  background: var(--primary-brand);
  animation: pulse-brand 2.2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-brand {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 991.98px) {
  .hero-section {
    padding: 130px 0 60px;
    text-align: center;
  }
  .hero-feature-pills {
    justify-content: center;
  }
  .stats-strip {
    margin-top: 20px;
  }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-section {
  background: linear-gradient(160deg, #f0fdf4 0%, #f8fafc 60%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Filter Buttons --- */
.gallery-filters {
  margin-top: -10px;
}

.gallery-filter-btn {
  border: 2px solid rgba(15, 70, 56, 0.15);
  background: #fff;
  color: var(--text-muted);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: 0.01em;
}

.gallery-filter-btn:hover {
  border-color: var(--accent-mint);
  color: var(--accent-mint-dark);
  background: var(--accent-mint-light);
}

.gallery-filter-btn.active {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* --- Gallery Grid (Uniform Grid) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery-item.hidden {
  display: none;
}

/* Thumb & Image */
.gallery-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 30, 24, 0.82) 0%,
    rgba(7, 30, 24, 0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay-content i {
  font-size: 1.3rem;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.gallery-overlay-content span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 12, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  display: block;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-caption {
  color: #e2e8f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

.lightbox-counter {
  color: var(--accent-mint);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Lightbox Buttons */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(6px);
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(6px);
  z-index: 10000;
}

.lightbox-nav:hover {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================================================
   GALLERY RESPONSIVE
   ========================================================================== */

@media (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 479.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 8px;
  }
}
