@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #242833;
  --bg-darker: #1a1f2a;
  --bg-darkest: #13171f;
  --bg-light: #f3f3f3;
  --bg-white: #ffffff;
  --bg-green: #00504c;
  --bg-green-dark: #003d3a;
  --bg-safari: #222A2A;
  --text-dark: #121212;
  --text-light: #ffffff;
  --text-muted: #888888;
  --text-muted-dark: #666666;
  --accent-cream: #dfd59e;
  --accent-green: #00504c;
  --accent-blue: #334fb4;
  --border-col: #333b4a;
  --max-width: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Assistant', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===================== HEADER ===================== */
.site-header {
  background: var(--bg-green);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.logo span { color: var(--accent-cream); }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  transition: color .2s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent-cream); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; padding: 16px 20px; }
  .main-nav { display: none; width: 100%; order: 3; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; border-top: 1px solid var(--border-col); margin-top: 12px; }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.2); }
  .nav-toggle { display: block; }
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel { position: relative; width: 100%; overflow: hidden; display: block; }
.hero-slides {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}
.hero-slide {
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 700px;
}
.hero-slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}
.hero-slide-content p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; }
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.carousel-dot.active { background: var(--accent-green); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn-prev { left: 16px; }
.carousel-btn-next { right: 16px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--bg-green); color: #fff; border-color: var(--bg-green); }
.btn-primary:hover { background: var(--bg-green-dark); border-color: var(--bg-green-dark); }
.btn-outline-cream { background: transparent; color: var(--accent-cream); border-color: var(--accent-cream); }
.btn-outline-cream:hover { background: var(--bg-green); border-color: var(--bg-green); color: #fff; }
.btn-outline-green { background: transparent; color: var(--bg-green); border-color: var(--bg-green); }
.btn-outline-green:hover { background: var(--bg-green); color: #fff; }
.btn-dark { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }
.btn-dark:hover { background: #333; }
.btn-small { padding: 8px 18px; font-size: 0.78rem; }
.btn-danger { background: transparent; border-color: #a3463b; color: #e08a7d; }
.btn-danger:hover { background: #a3463b; color: #fff; }

/* ===================== SECTIONS ===================== */
.section { padding: 60px 0; }
.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Dark scheme */
.scheme-dark { background: var(--bg-dark); color: var(--text-light); }
.scheme-darker { background: var(--bg-green); color: var(--text-light); }
.scheme-green { background: var(--bg-green); color: var(--text-light); }
.scheme-light { background: var(--bg-light); color: var(--text-dark); }
.scheme-white { background: var(--bg-white); color: var(--text-dark); }
.scheme-safari { background: var(--bg-safari); color: var(--accent-cream); }

/* ===================== SERVICES - 5 COLUMNS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

.service-card { text-align: center; }
.service-card .card-image { aspect-ratio: 1/1; overflow: hidden; background: #000; }
.service-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .card-image img { transform: scale(1.04); }
.service-card .card-body { padding: 20px 16px 28px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; color: rgba(255,255,255,0.75); }

/* ===================== SAFARI CARDS ===================== */
.safari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .safari-grid { grid-template-columns: 1fr; } }

.safari-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}
.safari-card .card-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.safari-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.safari-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent-blue); color: #fff;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 4px; z-index: 2;
}
.safari-card .card-body { padding: 20px; }
.safari-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.safari-card .location { font-size: 0.85rem; color: var(--text-muted-dark); margin-bottom: 12px; }
.safari-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.safari-actions { display: flex; flex-direction: column; gap: 10px; }
.safari-actions .btn { text-align: center; font-size: 0.8rem; padding: 12px; }

/* ===================== PRODUCTS GRID ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.product-card {
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.product-card .card-image { aspect-ratio: 3/4; overflow: hidden; }
.product-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card .card-body { padding: 16px; }
.product-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.product-card .price { color: var(--bg-green); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }

/* ===================== CREATE OWN PACKAGE / CTA ===================== */
.cta-safari {
  background: var(--bg-safari);
  text-align: center;
  padding: 60px 24px;
}
.cta-safari h2 { font-size: 2rem; font-weight: 700; color: var(--accent-cream); margin-bottom: 16px; }
.cta-safari p { color: var(--accent-cream); opacity: 0.85; max-width: 700px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-safari .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== IMAGE WITH TEXT (Portfolio) ===================== */
.img-text-section { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .img-text-section { grid-template-columns: 1fr; } }
.img-text-section .img-side img { width: 100%; height: 100%; object-fit: cover; }
.img-text-section .text-side { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.img-text-section.text-first .text-side { order: -1; }

/* ===================== WHY CHOOSE (LIGHT SECTION) ===================== */
.why-section { background: var(--bg-light); padding: 60px 0; }
.why-section .split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
@media (max-width: 800px) { .why-section .split { grid-template-columns: 1fr; padding: 0 20px; } }
.why-section h2 { font-size: 1.8rem; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 28px; }
.why-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}
.why-list li::before {
  content: '✓';
  position: absolute; left: 0; color: var(--bg-green); font-weight: bold; font-size: 1.1rem;
}

/* ===================== CTA BANNER (bottom) ===================== */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.cta-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-size: 1.6rem; margin-bottom: 24px; font-weight: 600; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-green); border-top: 1px solid var(--border-col); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; max-width: var(--max-width); margin: 0 auto 30px; padding: 0 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; padding: 0 20px; } }
.footer-grid h4 { color: var(--accent-cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent-cream); }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; border-top: 1px solid var(--border-col); padding-top: 20px; max-width: var(--max-width); margin: 0 auto; padding: 20px 40px 0; }
.subscribe-form { display: flex; gap: 8px; }
.subscribe-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid var(--border-col); color: #fff; border-radius: 4px; font-family: inherit; }

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-col);
  color: var(--text-light);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-col); border-radius: 8px; padding: 36px; max-width: 560px; margin: 0 auto; }
.alert { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #1a3326; border: 1px solid #2a5c3f; color: #a8dbb9; }
.alert-error { background: #3a1f1f; border: 1px solid #5c2f2f; color: #f0b6b6; }

/* ===================== ADMIN ===================== */
.admin-body { background: #f4f3ef; color: #222; font-family: 'Assistant', sans-serif; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 230px; background: var(--bg-green); color: var(--text-light); padding: 0; flex-shrink: 0; }
.admin-sidebar .logo { padding: 20px 24px; display: block; border-bottom: 1px solid rgba(0,0,0,0.2); margin-bottom: 8px; font-size: 1.1rem; }
.admin-sidebar a { display: block; padding: 12px 24px; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all .15s; }
.admin-sidebar a:hover, .admin-sidebar a.active { color: var(--accent-cream); background: rgba(223,213,158,0.06); border-left: 2px solid var(--accent-cream); }
.admin-main { flex: 1; padding: 32px 40px; background: #f4f3ef; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #eee; font-size: 0.88rem; }
.admin-table th { background: #f0ede6; text-transform: uppercase; font-size: 0.72rem; letter-spacing: .5px; color: #666; }
.admin-table img { width: 50px; height: 50px; object-fit: cover; border-radius: 6px; }
.admin-card { background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,.08); max-width: 640px; }
.admin-card .form-group input, .admin-card .form-group textarea, .admin-card .form-group select { background: #fff; border: 1px solid #ddd; color: #222; }
.admin-card .form-group label { color: #555; }
.status-pill { font-size: 0.72rem; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; font-weight: 600; }
.status-new { background: #fde7c7; color: #8a5a00; }
.status-contacted { background: #d1ecff; color: #0a5ba8; }
.status-closed { background: #e5e5e5; color: #666; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-green); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; margin-bottom: 30px; }
.stat-card { background: #fff; border-radius: 8px; padding: 22px; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.stat-card .num { font-size: 2rem; font-weight: 700; color: var(--bg-green); }
.stat-card .label { font-size: 0.85rem; color: #888; margin-top: 4px; }



/* Footer dark green logo area */
.site-footer { background: var(--bg-darkest); }

/* ===================== ANNOUNCEMENT BANNER ===================== */
.announce-bar {
  background: #f3f3f3;
  color: #333;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  font-family: 'Assistant', sans-serif;
}

/* ===================== HEADER OVERHAUL ===================== */
.site-header {
  background: var(--bg-green) !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 100%;
  position: relative;
}

/* Burger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Logo — centered */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.logo sup { font-size: 0.55em; vertical-align: super; }

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.icon-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.icon-btn:hover { opacity: 0.75; }

/* Search bar */
.search-bar {
  display: none;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  gap: 12px;
}
.search-bar.open { display: flex; }
.search-form {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 14px;
}
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: 'Assistant', sans-serif;
  color: #222;
  background: transparent;
}
.search-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
}
.search-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #555;
  cursor: pointer;
  flex-shrink: 0;
}

/* Nav drawer (slide in from left) */
.main-nav {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-green);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.main-nav.open { transform: translateX(0); }
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.main-nav ul { padding: 8px 0; }
.main-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.main-nav ul a {
  display: block;
  padding: 16px 20px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .15s;
}
.main-nav ul a:hover, .main-nav ul a.active {
  background: rgba(0,0,0,0.15);
  color: var(--accent-cream);
}

/* Overlay when nav is open */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}
.nav-overlay.open { display: block; }

/* ── Logo image (replaces text) ── */
.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img { display: flex; align-items: center; }
.logo-img img { height: 36px; width: auto; display: block; }

/* Remove old centered logo styles */
.logo {
  position: static !important;
  transform: none !important;
}

/* ===================== PRODUCT CAROUSEL ===================== */
.product-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.product-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}
.product-carousel-slide {
  min-width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .product-carousel-slide { min-width: 25%; }
}
.product-carousel-slide .product-card {
  background: var(--bg-green-dark);
  color: #fff;
  border-radius: 0;
  border: none;
}
.product-carousel-slide .product-card .card-image {
  aspect-ratio: 1/1;
  background: var(--bg-green);
}
.product-carousel-slide .product-card .card-body {
  padding: 14px 12px 20px;
  background: var(--bg-green-dark);
}
.product-carousel-slide .product-card h3 {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.product-carousel-slide .product-card .price {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.btn-choose {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
  transition: all .2s;
  font-family: 'Assistant', sans-serif;
}
.btn-choose:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Carousel nav */
.product-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 30px;
}
.product-carousel-nav .carr-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 10px;
  transition: color .2s;
}
.product-carousel-nav .carr-btn:hover { color: #fff; }
.product-carousel-nav .carr-page {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  min-width: 40px;
  text-align: center;
}

/* ===================== SERVICES CAROUSEL (Shopify style) ===================== */
.services-carousel-section {
  background: var(--bg-dark);
  padding: 0;
}
.services-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.services-carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  transition: transform 0.4s ease;
  will-change: transform;
  width: 100%;
}
.service-carousel-slide {
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  box-sizing: border-box;
}
.service-carousel-card {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px 10px;
  min-height: 480px;
}
.service-carousel-card .svc-img-box {
  width: 75%;
  max-width: 320px;
  aspect-ratio: 4/3;
  background: #1a1e2a;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-carousel-card .svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-carousel-card .svc-img-box .img-placeholder {
  width: 100%;
  height: 100%;
  background: #1e2333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}
.service-carousel-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.service-carousel-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
.service-carousel-card .svc-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Assistant', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity .2s;
  padding: 0;
}
.service-carousel-card .svc-btn:hover { opacity: 0.75; }
.service-carousel-card .svc-btn .arrow {
  font-size: 1.1rem;
  transition: transform .2s;
}
.service-carousel-card .svc-btn:hover .arrow { transform: translateX(4px); }

/* Carousel nav row */
.services-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 0 28px;
  background: var(--bg-dark);
}
.services-carousel-nav .svc-carr-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 12px;
  transition: color .2s;
}
.services-carousel-nav .svc-carr-btn:hover { color: #fff; }
.services-carousel-nav .svc-carr-page {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  min-width: 40px;
  text-align: center;
}

/* ── Service carousel button — solid green like SEND REQUEST ── */
.service-carousel-card .svc-btn {
  background: var(--bg-green) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  width: 100% !important;
  justify-content: center !important;
  margin-top: 8px !important;
}
.service-carousel-card .svc-btn:hover {
  background: var(--bg-green-dark) !important;
  opacity: 1 !important;
}

/* ── Hero image-only slides ── */
.hero-img-slide {
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  overflow: hidden;
}
.hero-img-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .hero-img-slide img { height: 56vw; min-height: 220px; }
}

/* ── Uniform product card heights ── */
.product-carousel-track {
  align-items: stretch;
}
.product-carousel-slide {
  display: flex;
  flex-direction: column;
}
.product-carousel-slide .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-carousel-slide .product-card .card-image {
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.product-carousel-slide .product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-carousel-slide .product-card .btn-choose {
  margin-top: auto;
}

/* Remove top padding from products section since no heading */
.scheme-green { padding-top: 0; }



/* ── Service carousel card layout (clean) ── */
.service-carousel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px 10px;
  min-height: 480px;
  text-align: center;
}
.svc-content-wrap {
  width: 80%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-content-wrap .svc-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
  background: #1a1e2a;
}
.svc-content-wrap .svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-content-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.svc-content-wrap p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.svc-content-wrap .svc-btn {
  background: var(--bg-green) !important;
  color: #fff !important;
  padding: 15px 24px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  box-sizing: border-box !important;
}
.svc-content-wrap .svc-btn:hover {
  background: var(--bg-green-dark) !important;
}

/* ── Desktop: center EXPLORE THE WILD text ── */
@media (min-width: 900px) {
  .safari-banner-text {
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 40px !important;
  }
  .safari-banner-text h2 {
    text-align: center !important;
  }

  /* Desktop: show all 3 safari packages in a row */
  #safariCarouselWrap { overflow: visible !important; }
  #safariTrack {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    transform: none !important;
    transition: none !important;
    flex-wrap: wrap !important;
  }
  #safariTrack > div {
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }
  /* Hide safari carousel nav on desktop */
  #safariPrev, #safariNext, #safariPage { display: none !important; }
  #safariCarouselWrap + div { display: none !important; }
}
