:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Brand */
  --primary: #7a4b2a;          /* earthy brown */
  --primary-dark: #3b2a20;     /* deep coffee */
  --accent: #e67e22;           /* burnt orange */
  --accent-light: #f2b35d;     /* warm sand */

  /* Text */
  --heading-color: #2b2521;
  --default-color: #514943;
  --light-text: #ffffff;
  --muted-text: #7a716b;

  /* Backgrounds */
  --background-color: #f8f3ed;
  --surface-color: #ffffff;
  --dark-surface: #2b211b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7a4b2a 0%, #3b2a20 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #f2b35d 100%);

  /* Border & Shadows */
  --border-color: #e7ddd4;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.14);

  --radius: 0.75rem;

  scroll-behavior: smooth;
}
/* ===============================================
   General Styling & Shared Classes
   =============================================== */

   /*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ═══════════════════════════════════════════════════
   Safari Kenya con Mappy — Header & Navigation CSS
   Add to assets/css/main.css (uses the :root tokens
   already defined there — no cy- / ian- prefixes)
   ═══════════════════════════════════════════════════ */

/* ── Header Shell ── */
.header {
  background: color-mix(in srgb, var(--background-color) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  z-index: 997;
}

.header.scrolled {
  background: color-mix(in srgb, var(--background-color) 97%, transparent);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(59, 42, 32, 0.12);
}

/* ── Logo ── */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  max-height: 40px;
}

/* ── Desktop Nav ── */
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    align-items: center;
  }

  .navmenu > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
  }

  .navmenu .dropdown {
    position: relative;
  }

  /* Nav link — soft pill hover */
  .navmenu a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--default-color);
    text-decoration: none;
    background: transparent;
    transition: background 0.22s ease, color 0.22s ease;
    position: relative;
    white-space: nowrap;
  }

  .navmenu a:hover,
  .navmenu a.active {
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
    text-decoration: none;
  }

  .navmenu a.active {
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary-dark);
  }

  /* Active dot indicator */
  .navmenu a.active::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
  }

  .toggle-dropdown {
    font-size: 11px;
    transition: transform 0.25s ease;
  }

  .navmenu .dropdown:hover .toggle-dropdown {
    transform: rotate(180deg);
  }

  /* Dropdown panel */
  .navmenu .dropdown ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: var(--surface-color);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 999;
  }

  .navmenu .dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown ul a {
    display: block;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--default-color);
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  }

  .navmenu .dropdown ul a:hover {
    background: color-mix(in srgb, var(--primary) 7%, transparent);
    color: var(--primary-dark);
    padding-left: 24px;
  }

  /* Dropdown leading accent bar */
  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 0 3px 3px 0;
  }
}

/* Hide desktop nav below xl */
@media (max-width: 1199px) {
  .navmenu {
    display: none;
  }
}

/* ── Header CTA ── */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--light-text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(230, 126, 34, 0.32);
  white-space: nowrap;
}

.header-cta:hover {
  background: color-mix(in srgb, var(--accent) 85%, black);
  color: var(--light-text);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.42);
  text-decoration: none;
}

.header-cta:active {
  transform: translateY(0);
}

/* ── Hamburger Toggle ── */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: color-mix(in srgb, var(--primary) 16%, transparent);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-active .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.is-active .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV — off-canvas drawer
   ═══════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 37, 33, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

/* Panel — slides in from right */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--surface-color);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

/* Panel header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mobile-nav-header .logo img {
  max-height: 32px;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--default-color);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-close:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  color: var(--primary-dark);
  border-color: color-mix(in srgb, var(--primary) 25%, transparent);
}

/* Menu list */
.mobile-nav-menu {
  flex: 1;
  padding: 16px 0;
}

.mobile-nav-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0 12px;
}

.mobile-nav-menu > ul > li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease calc(var(--i) * 55ms),
              transform 0.3s ease calc(var(--i) * 55ms);
}

.mobile-nav.is-open .mobile-nav-menu > ul > li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--default-color);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 2px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: color-mix(in srgb, var(--primary) 9%, transparent);
  color: var(--primary-dark);
  text-decoration: none;
}

.mobile-nav-link.active {
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}

/* Accordion (Safaris / Watamu Experiences) */
.mobile-nav-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: transparent;
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--default-color);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 2px;
}

.mobile-nav-acc-toggle:hover {
  background: color-mix(in srgb, var(--primary) 9%, transparent);
  color: var(--primary-dark);
}

.mobile-nav-acc-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-item--acc.is-open .mobile-nav-acc-toggle i {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 14px;
  display: none;
}

.mobile-nav-item--acc.is-open .mobile-nav-sub {
  display: block;
}

.mobile-nav-sub a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  border-left: 2px solid var(--border-color);
  margin-bottom: 2px;
}

.mobile-nav-sub a:hover {
  background: color-mix(in srgb, var(--primary) 7%, transparent);
  color: var(--primary);
  border-left-color: var(--accent);
}

/* Panel footer */
.mobile-nav-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

/* Prevent body scroll when the drawer is open */
body.mobile-nav-open {
  overflow: hidden;
}
/* ═══════════════════════════════════════════════════
   Safari Kenya con Mappy — Hero CSS
   Add to assets/css/main.css
   ═══════════════════════════════════════════════════ */

/* ── Shell ── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 0 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ── Headline ── */
.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.13;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-accent {
  color: var(--accent-light);
}

/* ── Lead ── */
.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 34px;
}

/* ── Buttons ── */
.hero-actions {
  margin-bottom: 22px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 50px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.hero-btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 85%, black);
  color: #ffffff;
  text-decoration: none;
}

.hero-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.hero-btn-glass__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 14px;
}

/* ── Duration line ── */
.hero-duration-line {
  margin-bottom: 48px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.5px;
}

/* ── Bottom glass bar ── */
.hero-stats-bar {
  display: flex;
  align-items: stretch;
  background: rgba(43, 33, 27, 0.92);
  border-radius: 14px 14px 0 0;
  padding: 24px 32px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.hero-stat__number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.hero-stat__label {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.hero-stat__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin: 4px 0;
}

/* ── Focus visibility (keyboard nav) ── */
.hero-btn-primary:focus-visible,
.hero-btn-glass:focus-visible,
.hero-stat:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 0;
    min-height: 100svh;
  }

  .hero .hero-bg img {
    object-position: center;
  }

  .hero-stats-bar {
    padding: 22px 24px;
  }
}

@media (max-width: 767px) {
  .hero-stats-bar {
    flex-wrap: wrap;
    padding: 20px 16px;
    gap: 0;
  }

  .hero-stat {
    flex: 0 0 50%;
    padding: 16px 8px;
  }

  .hero-stat__divider {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-glass {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Coming Soon
--------------------------------------------------------------*/
.coming-soon-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--background-color);
}

.coming-soon-content {
  max-width: 650px;
  padding: 120px 0;
}

.coming-soon-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.coming-soon-content h1 {
  margin: 16px 0 20px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  color: var(--heading-color);
}

.coming-soon-content p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 16px;
}

.coming-soon-note {
  color: var(--muted-text);
}

.coming-soon-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.coming-soon-btn:hover {
  background: color-mix(in srgb, var(--primary-dark) 85%, black);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.coming-soon-btn:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

@media (max-width: 575px) {
  .coming-soon-content {
    padding: 80px 0;
  }
}
/*--------------------------------------------------------------
# Industries Section (full-image filterable cards)
--------------------------------------------------------------*/
.industries  .section-title .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.industries .isotope-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.industries .isotope-filters li {
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.industries .isotope-filters li:hover,
.industries .isotope-filters li.filter-active {
  background: var(--accent);           /* #dd942d */
  color: #fff;
  border-color: var(--accent);
}

.industries .isotope-container .isotope-item {
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: var(--bs-gutter-y);
}

.industry-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
}

/* .industry-card a {
  width: 100%;
  height: 100%;
  display:block;
} */
 .industry-card a {
  display: block;
  width: 100%;
  height: 100% ; /* Or whatever fixed height you need */
  overflow: hidden; /* Keeps the zoom effect inside the box */
  position: relative;
  /* object-fit: cover; */
}
.industry-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* .industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
} */

.industry-card:hover img {
  transform: scale(1.08);
}

/* Gradient overlay + content */
.industry-card .card-overlay {
  position: absolute;
  pointer-events: none; /* Allows clicking the <a> tag behind it */
  z-index: 2; /* Ensure it stays above the <a> tag */
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 77, 45, 0.92) 0%,     /* --primary-dark */
    rgba(46, 77, 45, 0.15) 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  transition: background 0.4s ease;
}
/* Re-enable interaction for the button specifically */
.industry-card .learn-more-btn {
  pointer-events: auto; 
  position: relative;
  z-index: 3;
}

.industry-card .card-content {
  margin-bottom: 16px;
}

.industry-card .card-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.industry-card .card-content p {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 0;
  line-height: 1.4;
}

/* Learn More Button */
/* .industry-card .learn-more-btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent);           
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.industry-card .learn-more-btn:hover {
  background: #c17f28;
  transform: scale(1.05);
} */



/* Responsive heights */
@media (max-width: 992px) {
  .industry-card { height: 280px; }
}

@media (max-width: 576px) {
  .industry-card { height: 260px; }
  .industry-card .card-content h4 { font-size: 1.25rem; }
}

.industry-card .learn-more-btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent);
  border: none;
  color: white;
}

.industry-card .learn-more-btn:hover {
  background: #c17f28;
  transform: scale(1.05);
}

/* ==================== CUSTOM LEARN MORE BUTTON ==================== */
.industry-card .learn-more-btn {
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--accent);           /* #dd942d */
  color: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.industry-card .learn-more-btn:hover {
  background: #c17f28;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== CUSTOM BRANDED MODAL ==================== */
#industryModal .modal-content {
  border: none;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

#industryModal .modal-header {
  background: var(--primary-dark);     /* #2e4d2d */
  color: var(--light-text);
  padding: 1.5rem 2rem;
  border-bottom: none;
}

#industryModal .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

#industryModal .btn-close {
  background-color: rgba(255,255,255,0.2);
  opacity: 1;
  filter: invert(1);
}

#industryModal .modal-body {
  padding: 2rem;
  background: var(--surface-color);
  color: var(--default-color);
}

#industryModal .modal-body h6 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

#industryModal .modal-body ul {
  list-style: none;
  padding: 0;
}

#industryModal .modal-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

#industryModal .modal-body li:last-child {
  border-bottom: none;
}

#industryModal .modal-body li i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2px;
}

#industryModal .modal-footer {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
  gap: 12px;
}

#industryModal .modal-footer .btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
}

/* Primary button in modal */
#industryModal .btn-primary {
  background: var(--accent);
  border: none;
}

#industryModal .btn-primary:hover {
  background: #c17f28;
}

/* Outline button */
#industryModal .btn-outline-secondary {
  color: var(--default-color);
  border-color: var(--border-color);
}


/*--------------------------------------------------------------
# Solutions Section + Integrations
--------------------------------------------------------------*/
.solutions .solutions-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.solutions  .section-title .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}


/* .solutions .solutions-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}*/
/* .solutions .solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}  */

.solutions .solutions-image a {
  width: 100%;
  height: 100%;
  overflow: hidden; 
  display: block; 
}

.solutions .solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
  transition: transform 0.6s ease;
}


.solutions .solutions-image:hover img {
  transform: scale(1.05);
}

.solutions .solutions-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 77, 45, 0.92) 0%, rgba(46, 77, 45, 0.25) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: white;
  pointer-events: none;
  z-index: 2;
}

.solutions .solutions-image .image-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color:var(--light-text);
   pointer-events: auto; 
  position: relative;
  z-index: 3;
}

.solutions .solutions-image .image-overlay .overlay-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  pointer-events: auto; 
  position: relative;
  z-index: 3;
}


.solutions .solutions-image .image-overlay .overlay-link:hover {
  gap: 14px;
  color: #ffde59;
}

/* Left thumbnails container */
.solutions-thumbnails {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Main big image */
.thumbnail-main .solutions-image {
  min-height: 380px;           /* Adjust as needed */
  border-radius: 12px;
}

/* Small thumbnails */
.thumbnail-small {
  min-height: 160px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.thumbnail-small:hover {
  transform: scale(1.03);
}

.thumbnail-small a {
  width: 100%;
  height: 100%;
  display:block;
}

.thumbnail-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Solution Cards */
.solution-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 12px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--border-color), transparent 70%);
  height: 100%;
  transition: all 0.4s ease;
}

.solution-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.solution-item .solution-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
  background: var(--accent);
}

.solution-item:hover .solution-icon i {
  color: white;
}

.solution-item .solution-icon i {
  font-size: 28px;
  color: var(--primary);
}

.solution-item .solution-body h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.solution-item .solution-body p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 12px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.solution-features li {
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--default-color);
}

.solution-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Glassmorphic Integrations */
.integrations-row .glassmorphic {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.dark .integrations-row .glassmorphic {
  background: rgba(46, 77, 45, 0.6);
  border-color: rgba(221, 148, 45, 0.3);
}

.logo-item img {
  height: 42px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  opacity: 0.85;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .solutions .solutions-image { min-height: 340px; margin-bottom: 24px; }
}

@media (max-width: 576px) {
  .solution-item { flex-direction: column; text-align: center; }
  .solution-item .solution-icon { margin: 0 auto 16px; }
}

/* On large screens: main image takes most space, small ones below */
@media (min-width: 992px) {
  .solutions-thumbnails {
    gap: 20px;
  }
  
  .thumbnail-main {
    flex: 1;                    /* Takes remaining space */
  }
  
  .thumbnail-small {
    min-height: 145px;
  }
}

/* On smaller screens: all three images become similar mid-sized thumbnails */
@media (max-width: 991px) {
  .thumbnail-main .solutions-image {
    min-height: 280px;
  }
  
  .thumbnail-small {
   
    min-height: 130px;
  }
  
  /* Make the two small ones appear below the main one */
  .solutions-thumbnails .row {
    margin-top: 16px;
  }
}

/* ==================== MOBILE ONLY (≤ 576px) ==================== */
@media (max-width: 576px) {

  /* Main image - not too tall on phone */
  .thumbnail-main .solutions-image {
    min-height: 240px;        /* comfortable height */
    max-height: 260px;        /* prevent stretching too much */
  }

  /* Small thumbnails - behave like proper cards, not stretched */
  .thumbnail-small {
    min-height: 110px;        /* smaller but still visible */
    max-height: 120px;        /* stop them from becoming too tall */
    border-radius: 10px;
  }

  /* Force images to cover nicely without distortion */
  .thumbnail-small img,
  .thumbnail-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* this is the key */
    object-position: center;
  }

  /* Reduce gap between main and small thumbnails */
  .solutions-thumbnails .row {
    margin-top: 12px;
    gap: 10px;
  }

  /* Make the two small thumbnails stack vertically on very small phones */
  .solutions-thumbnails .row > div {
    width: 100% !important;   /* forces full width, one under the other */
  }
}

/*--------------------------------------------------------------
# Why Choose Mappy Section
--------------------------------------------------------------*/
.why-choose-Mappy .section-title {
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-choose-Mappy .section-title .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.why-choose-Mappy .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.why-choose-Mappy .section-title p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}

/* Feature Cards */
.why-choose-Mappy .feature-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-choose-Mappy .feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.why-choose-Mappy .feature-card:hover {
  transform: translateX(10px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.why-choose-Mappy .feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-Mappy .feature-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent);
  transition: color 0.3s ease;
}

.why-choose-Mappy .feature-card:hover .card-icon {
  background: var(--accent);
}

.why-choose-Mappy .feature-card:hover .card-icon i {
  color: var(--light-text);
}

.why-choose-Mappy .feature-card .card-body-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.why-choose-Mappy .feature-card .card-body-content p {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.5;
}

/* Image Block */
.why-choose-Mappy .image-block {
  position: relative;
  padding: 20px;
}

.why-choose-Mappy .image-block .main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-choose-Mappy .image-block .main-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.why-choose-Mappy .image-block .main-image:hover img {
  transform: scale(1.03);
}

/* Top Right Metric Badge
.why-choose-Mappy .image-block .metric-badge {
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 2;
}

.why-choose-Mappy .image-block .metric-badge .metric-inner {
  background: var(--gradient-accent);
  color: var(--light-text);
  padding: 26px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-choose-Mappy .image-block .metric-badge .metric-value {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.why-choose-Mappy .image-block .metric-badge .metric-text {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.95;
  margin-bottom: 4px;
}

.why-choose-Mappy .image-block .metric-badge small {
  font-size: 0.75rem;
  opacity: 0.85;
}
 */
/* Bottom Left Metrics Stack */
.why-choose-Mappy .image-block .metrics-stack {
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-choose-Mappy .image-block .metrics-stack .metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-color);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.why-choose-Mappy .image-block .metrics-stack .metric-item:hover {
  transform: translateX(8px);
}

.why-choose-Mappy .image-block .metrics-stack .metric-item i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary), transparent 88%);
  border-radius: 50%;
}

.why-choose-Mappy .image-block .metrics-stack .metric-item .metric-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.why-choose-Mappy .image-block .metrics-stack .metric-item .metric-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-Mappy .image-block {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .why-choose-Mappy .section-title h2 {
    font-size: 2rem;
  }

  /* .why-choose-Mappy .image-block .metric-badge {
    top: -50px;
    right: -5px;
  }

  .why-choose-Mappy .image-block .metric-badge .metric-inner {
    padding: 20px 24px;
  }

  .why-choose-Mappy .image-block .metric-badge .metric-value {
    font-size: 2rem;
  } */

  /* .why-choose-Mappy .image-block .metrics-stack {
    left: 0;
    bottom: -5px;
  } */
}

@media (max-width: 576px) {
  .why-choose-Mappy .feature-card {
    padding: 18px 20px;
  }

  .why-choose-Mappy .feature-card .card-icon {
    width: 48px;
    height: 48px;
  }

  .why-choose-Mappy .feature-card .card-icon i {
    font-size: 1.2rem;
  }
}


/* Top Right Metric Badge */
.why-choose-Mappy .image-block .metric-badge {
  position: absolute;
  top: -90px;
  right: 0;
  z-index: 2;
}

.why-choose-Mappy .image-block .metric-badge .metric-inner {
  background: var(--gradient-accent);
  color: var(--light-text);
  padding: 26px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-choose-Mappy .image-block .metric-badge .metric-value {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.why-choose-Mappy .image-block .metric-badge .metric-text {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.95;
  margin-bottom: 4px;
}

.why-choose-Mappy .image-block .metric-badge small {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* On small screens: remove absolute positioning so it stacks above image */
@media (max-width: 768px) {
  .why-choose-Mappy .image-block .metric-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
  }

  .why-choose-Mappy .image-block .metric-badge .metric-inner {
    padding: 20px 24px;
  }

  .why-choose-Mappy .image-block .metric-badge .metric-value {
    font-size: 2rem;
  }
    .why-choose-Mappy .image-block .metrics-stack {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    transform: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-title .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.testimonials .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.testimonials .section-title p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 700px;
  margin: 0 auto;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  padding: 40px 60px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonials .testimonial-card .stars {
  margin-bottom: 20px;
}

.testimonials .testimonial-card .stars i {
  color: var(--accent);
  font-size: 18px;
}

.testimonials .testimonial-card > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 30px;
}

.testimonials .testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonial-card .client-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent), transparent 70%);
}

.testimonials .testimonial-card .client-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.testimonials .testimonial-card .client-info span {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials .testimonial-card {
    padding: 30px 24px;
  }

  .testimonials .section-title h2 {
    font-size: 2rem;
  }

  .testimonials .testimonial-card > p {
    font-size: 1rem;
  }

  .testimonials .testimonial-card .client-info img {
    width: 56px;
    height: 56px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent), transparent 85%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background: color-mix(in srgb, var(--surface-color), transparent 92%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--light-text), transparent 85%);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 60px color-mix(in srgb, #000, transparent 85%);
  position: relative;
  z-index: 2;
}

.cta-section .cta-content {
  max-width: 650px;
}

.cta-section .cta-content .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  background: color-mix(in srgb, var(--accent), transparent 80%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.cta-section .cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--light-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-section .cta-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--light-text), transparent 30%);
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--heading-color);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent), transparent 60%);
}

.cta-section .btn-primary i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent), transparent 45%);
}

.cta-section .btn-primary:hover i {
  transform: translateX(5px);
}

.cta-section .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--light-text), transparent 90%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--light-text);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--light-text), transparent 70%);
  transition: all 0.3s ease;
}

.cta-section .btn-glass i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-section .btn-glass:hover {
  background: color-mix(in srgb, var(--light-text), transparent 80%);
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--light-text), transparent 50%);
}

.cta-section .btn-glass:hover i {
  transform: scale(1.1);
}

.cta-section .cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section .floating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-color);
  padding: 18px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px color-mix(in srgb, #000, transparent 80%);
  animation: float 3s ease-in-out infinite;
}

.cta-section .floating-badge i {
  font-size: 1.8rem;
  color: var(--accent);
}

.cta-section .floating-badge span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .cta-section .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
    text-align: center;
  }

  .cta-section .cta-content {
    max-width: 100%;
  }

  .cta-section .cta-buttons {
    justify-content: center;
  }

  .cta-section .cta-visual {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-section .cta-content h2 {
    font-size: 2rem;
  }

  .cta-section .cta-content p {
    font-size: 1rem;
  }

  .cta-section .btn-primary,
  .cta-section .btn-glass {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-title .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.contact .section-title p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 700px;
  margin: 0 auto;
}

/* Info Cards */
.contact .info-cards .info-card {
  padding: 28px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .info-cards .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact .info-cards .info-card:last-child {
  margin-bottom: 0;
}

.contact .info-cards .info-card:hover {
  transform: translateX(8px);
  border-color: color-mix(in srgb, var(--accent), transparent 60%);
  box-shadow: var(--shadow-md);
}

.contact .info-cards .info-card:hover::before {
  opacity: 1;
}

.contact .info-cards .info-card .icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 85%) 0%, color-mix(in srgb, var(--accent-light), transparent 85%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact .info-cards .info-card .icon-box i {
  font-size: 24px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.contact .info-cards .info-card:hover .icon-box {
  background: var(--gradient-accent);
  transform: rotate(-5deg);
}

.contact .info-cards .info-card:hover .icon-box i {
  -webkit-text-fill-color: var(--light-text);
  transform: scale(1.1);
}

.contact .info-cards .info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-cards .info-card p {
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.7;
}

.contact .info-cards .info-card p a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact .info-cards .info-card p a:hover {
  color: var(--accent-light);
}

/* Contact Form */
.contact .contact-form-wrap {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: var(--shadow-md);
}

.contact .contact-form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
}

.contact .contact-form-wrap input[type=text],
.contact .contact-form-wrap input[type=email],
.contact .contact-form-wrap input[type=tel],
.contact .contact-form-wrap select,
.contact .contact-form-wrap textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 14px 18px;
  border-radius: 10px;
  min-height: 50px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrap input[type=text]:focus,
.contact .contact-form-wrap input[type=email]:focus,
.contact .contact-form-wrap input[type=tel]:focus,
.contact .contact-form-wrap select:focus,
.contact .contact-form-wrap textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent), transparent 85%);
  background-color: var(--surface-color);
}

.contact .contact-form-wrap input[type=text]::placeholder,
.contact .contact-form-wrap input[type=email]::placeholder,
.contact .contact-form-wrap input[type=tel]::placeholder,
.contact .contact-form-wrap select::placeholder,
.contact .contact-form-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact .contact-form-wrap textarea {
  min-height: 160px;
  resize: vertical;
}

.contact .contact-form-wrap select {
  appearance: auto;
  cursor: pointer;
}

.contact .contact-form-wrap .btn-submit {
  background: var(--gradient-accent);
  color: var(--heading-color);
  border: none;
  padding: 16px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent), transparent 60%);
}

.contact .contact-form-wrap .btn-submit i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.contact .contact-form-wrap .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent), transparent 45%);
}

.contact .contact-form-wrap .btn-submit:hover i {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact .contact-form-wrap {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .section-title h2 {
    font-size: 2rem;
  }

  .contact .info-cards .info-card {
    padding: 22px;
  }

  .contact .contact-form-wrap {
    padding: 24px;
  }

  .contact .contact-form-wrap .btn-submit {
    width: 100%;
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  border-top: 1px solid var(--accent);
}

.footer .footer-top {
  padding-top: 64px;
  padding-bottom: 44px;
}

/* Brand */
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 14px;
}

.footer .footer-about .sitename {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: var(--default-font);
}

.footer .footer-about .footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 340px;
  margin-bottom: 20px;
}

/* Social links — plain icons, no circles */
.footer .social-links {
  gap: 18px;
}

.footer .social-links a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.footer .social-links a:hover {
  color: var(--accent-light);
}

/* Headings */
.footer h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

/* Link lists */
.footer .footer-links ul,
.footer .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li,
.footer .footer-contact ul li {
  padding: 7px 0;
}

.footer .footer-links ul li:first-child,
.footer .footer-contact ul li:first-child {
  padding-top: 0;
}

.footer .footer-links a,
.footer .footer-contact a,
.footer .footer-contact span {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  line-height: 1.6;
}

.footer .footer-links a:hover,
.footer .footer-contact a:hover {
  color: var(--accent-light);
}

/* Bottom bar */
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.footer .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .copyright strong {
  color: #ffffff;
  font-weight: 600;
}

.footer .credits {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .credits a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer .credits a:hover {
  color: var(--accent-light);
}

/* Responsive */
@media (max-width: 768px) {
  .footer .footer-about .footer-desc {
    max-width: none;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Preloader — "Trail Reveal"
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.preloader-brand {
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.preloader-trail {
  position: relative;
  width: 200px;
  height: 1px;
  background: var(--border-color);
}

.preloader-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  animation: preloader-run 1.3s ease-in-out forwards;
}

@keyframes preloader-run {
  0%   { left: 0%; }
  100% { left: 100%; }
}

/* Fade + lift out, applied by JS on window load */
#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
}

/*--------------------------------------------------------------
# Scroll to Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: var(--gradient-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--primary-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  border: none;
}

.scroll-top i,
.scroll-top svg {
  font-size: 22px;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--primary-dark);
  color: var(--light-text);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# WhatsApp Floating Widget
--------------------------------------------------------------*/
.whatsapp-container {
  position: fixed;
  bottom: 80px; /* sits above the scroll-top button */
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  background-color: var(--primary-dark);
  color: var(--light-text);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-icon:hover {
  background-color: var(--accent);
  transform: scale(1.06);
}

/* Toned-down pulse: smaller spread, slower, lower opacity */
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(230, 126, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

.whatsapp-dropdown {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: var(--surface-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 280px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.whatsapp-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: var(--default-color);
  text-decoration: none;
  transition: background 0.2s ease;
}

.whatsapp-link:hover {
  background: var(--background-color);
}

.whatsapp-link i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.whatsapp-link-text {
  display: flex;
  flex-direction: column;
}

.whatsapp-link-text strong {
  font-size: 14.5px;
  color: var(--heading-color);
}

.whatsapp-link-text span {
  font-size: 12px;
  color: var(--muted-text);
}

.dropdown-divider {
  margin: 4px 0;
  border: 0;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 576px) {
  .whatsapp-container {
    bottom: 90px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}


