:root {
    --orange: #fd5634;
    --orange-dark: #e84420;
    --gold: #f7bf39;
    --gold-dark: #d9a81e;
    --dark: #151c2c;
    --dark-2: #1e2840;
    --dark-3: #253050;
    --white: #ffffff;
    --light: #f9f6f0;
    --light-2: #f0ece4;
    --text: #4a5568;
    --text-light: #718096;
    --border: rgba(21,28,44,0.1);
    --shadow: 0 10px 40px rgba(21,28,44,0.12);
    --shadow-lg: 0 20px 60px rgba(21,28,44,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --font-head: 'Playfair Display', 'Rubik', serif;
    --font-body: 'DM Sans', 'Roboto', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); outline: none; }

/* ---- TYPOGRAPHY ---- */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(253,86,52,0.1);
    border-left: 3px solid var(--orange);
    padding: 5px 14px 5px 12px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 16px;
}
.section-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 16px;
}
.section-heading em {
    font-style: italic;
    color: var(--orange);
}
.section-head p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--orange);
    transition: var(--transition);
    line-height: 1;
}
.btn-primary-custom:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,86,52,0.35); }

.btn-wa-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #25d366;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #25d366;
    transition: var(--transition);
}
.btn-wa-outline:hover { background: #25d366; color: var(--white); }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 2px solid var(--orange);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left span, .topbar-right a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 13px; }
.topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right a:hover { color: var(--gold); }
.topbar-wa { background: rgba(37,211,102,0.15); color: #4ddd7d !important; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(37,211,102,0.3); }
.topbar-wa:hover { background: #25d366; color: var(--white) !important; }

/* ---- HEADER ---- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21,28,44,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 0;
}
.site-logo img { height: 80px; width: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}
.main-nav ul li a:hover { color: var(--orange); }
.main-nav ul li a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call-custom {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange); color: var(--white);
    padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); display: block; border-radius: 2px; transition: var(--transition); }

/* Sticky header dark */
.header-sticky-active .site-header { background: var(--dark); }
.header-sticky-active .main-nav ul li a { color: rgba(0,0,0,0.85); }
.header-sticky-active .main-nav ul li a:hover { color: var(--gold); }
.header-sticky-active .hamburger span { background: var(--white); }

/* ---- OFFCANVAS ---- */
.offcanvas__info {
    position: fixed;
    top: 0; right: -360px;
    width: 340px;
    height: 100%;
    background: var(--dark);
    z-index: 10000;
    transition: 0.4s ease;
    overflow-y: auto;
}
.offcanvas__info.offcanvas-open { right: 0; }
.offcanvas__wrapper { padding: 30px 28px; }
.offcanvas__top { margin-bottom: 24px; }
.offcanvas__close button { background: rgba(255,255,255,0.1); color: var(--white); width: 36px; height: 36px; border-radius: 50%; font-size: 16px; transition: var(--transition); }
.offcanvas__close button:hover { background: var(--orange); }
.offcanvas-desc { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.offcanvas__contact h4 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.offcanvas-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 12px; }
.offcanvas-contact-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.offcanvas-contact-list li a { color: rgba(255,255,255,0.7); }
.offcanvas-contact-list li a:hover { color: var(--gold); }
.offcanvas-social { display: flex; gap: 10px; margin-top: 20px; }
.offcanvas-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.offcanvas-social a:hover { background: var(--orange); color: var(--white); }
.offcanvas__overlay { position: fixed; inset: 0; background: rgba(21,28,44,0.7); z-index: 9999; display: none; backdrop-filter: blur(3px); }
.offcanvas__overlay.active { display: block; }
.mobile-menu { display: none; }

/* ---- HERO SECTION ---- */
.hero-section { position: relative; }
.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(21,28,44,0.88) 0%, rgba(21,28,44,0.55) 60%, rgba(21,28,44,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,191,57,0.15);
    border: 1px solid rgba(247,191,57,0.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
}
.hero-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(253,86,52,0.5);
    line-height: 1;
}
.btn-hero-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(253,86,52,0.6); }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); color: var(--white);
    padding: 14px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition); backdrop-filter: blur(8px);
    line-height: 1;
}
.btn-hero-secondary:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-hero-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,211,102,0.15); color: #4ddd7d;
    padding: 14px 24px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    border: 2px solid rgba(37,211,102,0.4);
    line-height: 1;
    transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-hero-wa:hover { background: #25d366; color: var(--white); border-color: #25d366; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); font-size: 14px;
}
.trust-item i { color: var(--gold); }

.hero-slider-nav {
    position: absolute;
    bottom: 10px;
    right: 50%;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(50%);
}
.hero-slider-nav button, .array-prev, .array-next {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.hero-slider-nav button:hover, .array-prev:hover, .array-next:hover { background: var(--orange); border-color: var(--orange); }

.hero-form-wrap {
    position: absolute;
    /* bottom: 0; */
    /* left: 0; */
    right: 10%;
    z-index: 10;
    transform: translateY(-50%);
    top: 50%;
}
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    border-top: 4px solid var(--orange);
}
.hfc-header { margin-bottom: 20px; }
.hfc-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(253,86,52,0.08);
    color: var(--orange);
    border: 1px solid rgba(253,86,52,0.2);
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 10px;
}
.hfc-header h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--dark); margin-bottom: 4px; }
.hfc-form { margin-top: 0; }
.hfc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.hfc-group { display: flex; flex-direction: column; gap: 6px; }
.hfc-group label { font-size: 13px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.hfc-group label i { color: var(--orange); }
.hfc-group input, .hfc-group select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}
.hfc-group input:focus, .hfc-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(253,86,52,0.1); }
.hfc-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hfc-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253,86,52,0.4); }
.hfc-secure { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.hfc-secure i { color: #25d366; }

/* ---- STATS STRIP ---- */
.stats-strip {
    background: var(--dark);
    padding: 30px 0 30px;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item { text-align: center; padding: 20px 40px; }
.stat-item h3 { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-item h3 span { color: var(--orange); }
.stat-item p { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ---- ABOUT SECTION ---- */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
    position: absolute;
    top: 30px; left: -20px;
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(253,86,52,0.4);
}
.exp-number { display: block; font-size: 2rem; font-weight: 900; font-family: var(--font-head); line-height: 1; }
.exp-text { font-size: 12px; font-weight: 600; opacity: 0.9; }
.about-content > p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.ah-item { display: flex; gap: 12px; align-items: flex-start; }
.ah-item > i { font-size: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.ah-item h5 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.ah-item p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ---- WHY CHOOSE US ---- */
.why-section { padding: 100px 0; background: var(--light); }
.why-section .section-head { margin-bottom: 50px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 60px; height: 60px;
    background: rgba(253,86,52,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-icon i { font-size: 24px; color: var(--orange); }
.why-card:hover .why-icon { background: var(--orange); }
.why-card:hover .why-icon i { color: var(--white); }
.why-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.why-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---- PACKAGES SECTION ---- */
.packages-section { padding: 100px 0; background: var(--white); }
.packages-section .section-head { margin-bottom: 50px; }
.pkg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-img { position: relative; overflow: hidden; }
.pkg-img img { width: 100%; height: 200px; object-fit: cover; transition: 0.5s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px;
}
.pkg-badge-gold { background: var(--gold); color: var(--dark); }
.pkg-body { 
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
.pkg-body h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; font-family: var(--font-head); }
.pkg-body > p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.pkg-features { margin-bottom: 20px; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: 8px; color: var(--text); font-size: 14px; margin-bottom: 8px; }
.pkg-features li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.pkg-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.btn-pkg-primary {
    flex: 1;
    background: var(--orange);
    color: var(--white);
    padding: 11px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-align: center;
    transition: var(--transition);
}
.btn-pkg-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-pkg-call {
    width: 42px; height: 42px; border-radius: 8px;
    background: rgba(253,86,52,0.1);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: var(--transition); flex-shrink: 0;
}
.btn-pkg-call:hover { background: var(--orange); color: var(--white); }
.btn-pkg-wa {
    width: 42px; height: 42px; border-radius: 8px;
    background: rgba(37,211,102,0.1);
    color: #25d366;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    transition: var(--transition); flex-shrink: 0;
}
.btn-pkg-wa:hover { background: #25d366; color: var(--white); }
/* CTA Card */
.pkg-cta-card {
    background: linear-gradient(140deg, var(--dark) 0%, var(--dark-3) 100%);
    border: none;
    position: relative;
    overflow: hidden;
}
.pkg-cta-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(253,86,52,0.1);
    border-radius: 50%;
}
.pkg-cta-inner {
    padding: 40px 28px;
    text-align: center;
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    height: 100%;
    justify-content: center;
}
.pkg-cta-inner > i { font-size: 48px; color: var(--gold); }
.pkg-cta-inner h4 { font-size: 22px; font-weight: 700; color: var(--white); }
.pkg-cta-inner p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.6; }
.btn-cta-white {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 13px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 700;
    transition: var(--transition);
}
.btn-cta-white:hover { background: var(--gold); color: var(--dark); }
.cta-phone-link { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.cta-phone-link:hover { color: var(--gold); }

/* ---- ZONES SECTION ---- */
.zones-section { padding: 100px 0; background: var(--dark); overflow: hidden; }
.zones-section .container { position: relative; }
.zones-section .section-head { margin-bottom: 50px; }
.zones-section .section-label { border-color: var(--gold); background: rgba(247,191,57,0.1); color: var(--gold); }
.zones-section .section-heading { color: var(--white); }
.zones-section .section-head p { color: rgba(255,255,255,0.6); }
.zones-slider { overflow: visible; padding: 10px 0 30px; }
.zone-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}
.zone-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.zone-card:hover img { transform: scale(1.08); }
.zone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(21,28,44,0.95) 0%, rgba(21,28,44,0.4) 55%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    transition: var(--transition);
}
.zone-tag {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(247,191,57,0.9);
    color: var(--dark);
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 50px;
}
.zone-overlay h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); font-weight: 700; }
.zone-overlay p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.zone-animals { display: flex; gap: 8px; flex-wrap: wrap; }
.zone-animals span { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 12px; padding: 4px 10px; border-radius: 20px; }
.zone-animals span i { color: var(--orange); font-size: 10px; }
.zone-btns { display: flex; gap: 8px; }
.zb-primary {
    flex: 1;
    background: var(--orange); color: var(--white);
    padding: 10px 16px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-align: center;
    transition: var(--transition);
}
.zb-primary:hover { background: var(--gold); color: var(--dark); }
.zb-wa {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(37,211,102,0.15); color: #4ddd7d;
    display: flex; align-items: center; justify-content: center; font-size: 17px;
    transition: var(--transition);
}
.zb-wa:hover { background: #25d366; color: var(--white); }
.zones-nav {
    display: flex; justify-content: center; gap: 12px; margin-top: 30px;
}
.zn-prev, .zn-next {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.15);
}
.zn-prev:hover, .zn-next:hover { background: var(--orange); border-color: var(--orange); }

/* ---- SERVICES SECTION ---- */
.services-section { padding: 100px 0; background: var(--light); }
.services-section .section-head { margin-bottom: 50px; }
.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(21,28,44,0.06);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-img { position: relative; }
.svc-img img { width: 100%; height: 220px; object-fit: cover; transition: 0.5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-icon {
    position: absolute; bottom: -22px; right: 24px;
    width: 50px; height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(253,86,52,0.4);
}
.svc-body { padding: 36px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-body h4 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 12px; font-family: var(--font-head); }
.svc-body p { color: var(--text-light); font-size: 15px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.svc-actions { display: flex; gap: 10px; margin-top: auto; }
.btn-svc-primary {
    flex: 1;
    background: var(--orange);
    color: var(--white);
    padding: 11px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-align: center;
    transition: var(--transition);
}
.btn-svc-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-svc-secondary {
    flex: 1;
    background: transparent;
    color: var(--orange);
    padding: 11px 18px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-align: center;
    border: 2px solid var(--orange);
    transition: var(--transition);
}
.btn-svc-secondary:hover { background: var(--orange); color: var(--white); }

/* ---- CTA BANNER ---- */
.cta-banner {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}
.cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 50%, var(--dark-2) 100%);
}
.cta-banner::before {
    content: '🐯';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    opacity: 0.05;
    line-height: 1;
}
.cta-content {
    position: relative; z-index: 2;
    text-align: center;
}
.cta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-orange {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    padding: 16px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(253,86,52,0.5);
}
.btn-cta-orange:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-3px); }
.btn-cta-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 14px 28px; border-radius: 50px;
    font-size: 16px; font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-cta-outline:hover { border-color: var(--white); background: var(--white); color: var(--dark); }
.btn-cta-wa {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,211,102,0.15); color: #4ddd7d;
    padding: 14px 28px; border-radius: 50px;
    font-size: 16px; font-weight: 600;
    border: 2px solid rgba(37,211,102,0.4);
    transition: var(--transition);
}
.btn-cta-wa:hover { background: #25d366; color: var(--white); border-color: #25d366; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testi-inner { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.testi-left .section-label { margin-bottom: 14px; }
.testi-rating-box { display: flex; align-items: center; gap: 16px; margin: 24px 0; background: var(--light); padding: 20px; border-radius: var(--radius); border-left: 4px solid var(--gold); }
.trb-score { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--dark); line-height: 1; }
.trb-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.trb-stars i { color: var(--gold); font-size: 16px; }
.trb-info span { font-size: 13px; color: var(--text-light); }
.testi-slider-nav { display: flex; gap: 10px; margin-top: 24px; }
.tn-prev, .tn-next {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition);
}
.tn-prev:hover, .tn-next:hover { background: var(--orange); }
.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: rgba(253,86,52,0.2); }
.tc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tc-quote { font-size: 28px; color: var(--orange); flex-shrink: 0; }
.tc-rating { display: flex; align-items: center; gap: 3px; flex: 1; }
.tc-rating i { color: var(--gold); font-size: 13px; }
.tc-rating span { font-size: 12px; font-weight: 700; color: var(--text-light); margin-left: 4px; }
.tc-google { height: 20px; width: auto; margin-left: auto; }
.testi-card h5 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.testi-card > p { color: var(--text-light); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.tc-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.tc-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tc-author strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); }
.tc-author span { font-size: 13px; color: var(--text-light); }

/* ---- FAQ SECTION ---- */
.faq-section { padding: 100px 0; background: var(--light); }
.faq-grid { display: grid; grid-template-columns: 380px 1fr; gap: 70px; align-items: start; }
.faq-cta { margin-top: 28px; }
.faq-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.faq-cta .btn-primary-custom, .faq-cta .btn-wa-outline { margin-right: 10px; margin-bottom: 10px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 14px; flex-shrink: 0; transition: var(--transition); color: var(--orange); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-bottom: 18px; }
.faq-answer p { color: var(--text-light); font-size: 15px; line-height: 1.75; margin: 0; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-details { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.cd-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--text);
}
.cd-item:hover { background: rgba(253,86,52,0.06); }
.cd-icon {
    width: 44px; height: 44px;
    background: rgba(253,86,52,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--orange); font-size: 18px;
}
.cd-icon-wa { background: rgba(37,211,102,0.1); color: #25d366; }
.cd-item span { display: block; font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 3px; }
.cd-item strong { display: block; font-size: 15px; color: var(--dark); font-weight: 600; }
.cf-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--orange);
}
.cf-card h4 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cf-card > p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; }
.cf-group { margin-bottom: 18px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.cf-group input, .cf-group textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    resize: none;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(253,86,52,0.1); }
.w-100 { width: 100%; justify-content: center; }
.cf-secure { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.cf-secure i { color: #25d366; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; margin: 18px 0 22px; max-width: 340px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h5 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--orange); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14.5px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact li a, .footer-contact li span { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-contact li a:hover { color: var(--gold); }
.footer-contact li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,211,102,0.12);
    color: #4ddd7d;
    border: 1px solid rgba(37,211,102,0.25);
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    transition: var(--transition);
    margin-top: 8px;
}
.footer-wa-btn:hover { background: #25d366; color: var(--white); border-color: #25d366; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; }
.footer-bottom i { color: var(--orange); }

/* ---- POPUP ---- */
.main-popup {
    position: fixed; inset: 0;
    z-index: 99999;
    background: rgba(21,28,44,0.85);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}
.main-popup.active { opacity: 1; visibility: visible; }
.outer-popup { max-width: 520px; width: 100%; }
.popup-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    border-top: 5px solid var(--orange);
    box-shadow: var(--shadow-lg);
}
.popup-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: rgba(21,28,44,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--dark);
    transition: var(--transition);
}
.popup-close:hover { background: var(--orange); color: var(--white); }
.popup-header { margin-bottom: 24px; text-align: center; }
.popup-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(253,86,52,0.08); color: var(--orange);
    border: 1px solid rgba(253,86,52,0.2);
    font-size: 12px; font-weight: 600; letter-spacing: 1px;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.popup-header h4 { font-size: 24px; font-weight: 700; color: var(--dark); font-family: var(--font-head); margin-bottom: 6px; }
.popup-header p { color: var(--text-light); font-size: 15px; }
.popup-field { margin-bottom: 18px; }
.popup-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.popup-field label i { color: var(--orange); }
.popup-field input, .popup-field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    resize: none;
}
.popup-field input:focus, .popup-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(253,86,52,0.1); }
.popup-submit {
    width: 100%;
    background: var(--orange); color: var(--white);
    padding: 14px; border-radius: 8px;
    font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--transition);
}
.popup-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,86,52,0.4); }
.popup-secure { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.popup-secure i { color: #25d366; }

/* ---- FLOATING BUTTONS ---- */
.float-wa, .float-call {
    position: fixed;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    z-index: 9998;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    transition: var(--transition);
}
.float-wa { background: #25d366; color: var(--white); bottom: 90px; right: 24px; }
.float-call { background: var(--orange); color: var(--white); bottom: 24px; right: 24px; }
.float-wa:hover, .float-call:hover { transform: scale(1.12) translateY(-3px); }
.float-wa:hover { background: #128c7e; }
.float-call:hover { background: var(--orange-dark); }

/* ---- SWIPER OVERRIDE ---- */
.swiper { width: 100%; }
.zones-slider .swiper-wrapper { padding-bottom: 10px; }
.testimonial-slider .swiper-slide { height: auto; }

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

@media (max-width: 1200px) {
    .stats-grid { gap: 0; }
    .stat-item { padding: 20px 28px; }
}

@media (max-width: 991px) {
    .hamburger { display: flex; }
    .main-nav { display: none; }
    .hero-slide { padding: 100px 0 100px; min-height: auto; }
    .hero-slider-nav { bottom: 280px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main img { height: 360px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { order: 2; }
    .faq-right { order: 1; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-strip { margin-top: 420px; }
    .hero-form-wrap { position: static; transform: none; }
    .hero-form-card { border-radius: 0; border-top: none; border-bottom: 4px solid var(--orange); margin-top: -10px; }
}

@media (max-width: 767px) {
    .topbar { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-strip { margin-top: 0; }
    .stat-divider { display: none; }
    .stats-grid { flex-direction: column; gap: 0; }
    .stat-item { padding: 18px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hfc-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .btn-hero-primary, .btn-hero-secondary, .btn-hero-wa { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .hero-slider-nav { display: none; }
    .section-heading { font-size: 1.8rem; }
    .pkg-cta-card { min-height: 280px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-cta-orange, .btn-cta-outline, .btn-cta-wa { width: 100%; max-width: 300px; justify-content: center; }
    .about-highlights { grid-template-columns: 1fr; }
    .testi-left .section-heading { font-size: 1.8rem; }
    .popup-inner { padding: 28px 22px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-slide { padding: 50px 0 50px; }
    .hero-section { padding-bottom: 0; }
    .about-img-accent { display: none; }
    .about-exp-badge { top: 16px; left: 16px; }
    .pkg-actions { flex-wrap: wrap; }
    .btn-pkg-primary { width: 100%; }
    .btn-pkg-call, .btn-pkg-wa { flex: 1; }
    .svc-actions { flex-direction: column; }
    .btn-svc-primary, .btn-svc-secondary { text-align: center; }
}

/* ---- ANIMATION UTILITIES ---- */
.wow { visibility: hidden; }
[class*="fadeIn"] { animation-fill-mode: both; }

/* ---- ACCESSIBILITY ---- */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- SCROLL MARGIN FOR ANCHORS ---- */
section[id] { scroll-margin-top: 80px; }

/**
 * corbett.js — Jim Corbett Wildlife Landing Page
 * Custom scripts for all interactive components
 */
 .nice-select{
  
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    line-height: 1.2;
    height: 42px;
 }
 /* ==================== FIX FOR TESTIMONIAL SLIDER ==================== */
.testimonials-section .testi-right {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-slider .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.testimonial-slider .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

/* Ensure the container has proper width */
.testi-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testi-left {
    flex: 1;
    min-width: 280px;
}

.testi-right {
    flex: 2;
    min-width: 280px;
}

/* Fix for Swiper initialization */
.swiper-container-initialized .swiper-slide {
    width: calc((100% - 24px) / 1);
}

@media (min-width: 768px) {
    .swiper-container-initialized .swiper-slide {
        width: calc((100% - 24px) / 2) !important;
    }
}
.footer-brand img{
  width: 120px;
  border-radius: 5px;
}
@media (max-width: 768px) {
    .hero-cta .btn-hero-primary,
    .hero-cta .btn-hero-secondary{
      display: none;
    }
    .hero-content > p{
      font-size: 12px;
      line-height: 1.1;
    }
    .hero-trust{
      display: none;
    }
    .stats-strip{
      display: none;
    }
}
