/* Wildlife Adventure India - Custom Styles */

/* ===== CSS Variables ===== */
:root {
    --primary-green: #2d5a27;
    --primary-green-dark: #1e3d1a;
    --accent-gold: #c9a227;
    --accent-gold-light: #e8c547;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --bg-cream: #f5f3ee;
    --bg-dark: #0d1b0f;
    --overlay-dark: rgba(13, 27, 15, 0.7);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s ease;
    --brand-900: #0b2a1a;
    --brand-800: #103221;
    --brand-700: #15412a;
    --brand-600: #1b5536;
    --brand-500: #1f6a41;
    --brand-100: #eaf7ef;
    --accent: #f59e0b;
    --card: #0e2f1e;
    --white-5: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-75: rgba(255, 255, 255, 0.75);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-85: rgba(255, 255, 255, 0.85);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Common Typography */
.font-extrabold {
    font-weight: 800;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

/* Common Text colors */
.text-white-40 {
    color: var(--white-40);
}

.text-white-55 {
    color: var(--white-55);
}

.text-white-60 {
    color: var(--white-60);
}

.text-white-70 {
    color: var(--white-70);
}

.text-white-75 {
    color: var(--white-75);
}

.text-white-80 {
    color: var(--white-80);
}

.text-white-85 {
    color: var(--white-85);
}

.text-amber-300 {
    color: #fcd34d;
}

.text-amber-400 {
    color: #fbbf24;
}

.text-emerald-200 {
    color: #a7f3d0;
}

.text-emerald-300 {
    color: #6ee7b7;
}

.text-red-300 {
    color: #fca5a5;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-cyan-100 {
    color: #cffafe;
}

.text-purple-400 {
    color: #c084fc;
}

.text-purple-100 {
    color: #f3e8ff;
}

.text-indigo-400 {
    color: #818cf8;
}

.text-rose-400 {
    color: #fb7185;
}

/* Common Background colors */
.bg-white-5 {
    background: var(--white-5);
}

.bg-white-10 {
    background: var(--white-10);
}

.bg-emerald-400 {
    background: #34d399;
}

.bg-amber-300 {
    background: #fcd34d;
}

.bg-indigo-500 {
    background: #6366f1;
}

.bg-rose-500 {
    background: #f43f5e;
}

.bg-cyan-500 {
    background: #06b6d4;
}

/* Common Glass effect */
.glass {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Common Gradients */
.bg-gradient-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, .95), rgba(245, 158, 11, .7));
}

.bg-gradient-green-amber {
    background: linear-gradient(135deg, rgba(34, 197, 94, .95), rgba(245, 158, 11, .65));
}

.bg-gradient-logo {
    background: linear-gradient(135deg, rgba(245, 158, 11, .95), rgba(34, 197, 94, .55));
}

.bg-sunset {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

/* Common Rounded corners */
.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ===== Navbar Styles ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d5a27' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Mobile Dropdown Improvements ===== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 15px 0;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        margin-top: 0;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Bigger tap target */
    .nav-link {
        padding: 12px 18px !important;
    }
}


/* ===== Hover Dropdown (Desktop Only) ===== */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.25s ease;
        margin-top: 10px;
        border-radius: 10px;
        border: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}

.dropdown-item {
    padding: 12px 22px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    color: #fff;
    padding-left: 28px;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 60vh;
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
        url('/images/background/hero_cta.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-hero-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 13px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 13px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: var(--text-light);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-hero-secondary1 {
    background: var(--text-light);
    color: var(--primary-green);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary1:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-light);
    font-size: 2rem;
    opacity: 0.7;
}

.hero-scroll a:hover {
    opacity: 1;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-cream);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.about-experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 40px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    margin-bottom: 0rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

/* ===== National Parks Section ===== */
.parks-section {
    background: #fff;
}

.park-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    border: none;
}

.park-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.park-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.park-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.park-card:hover .park-image {
    transform: scale(1.1);
}

.park-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.park-content {
    padding: 25px;
}

.park-content h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.park-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: justify;
}

.park-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
}

.park-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.park-meta i {
    color: var(--accent-gold);
}

.btn-park {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--primary-green);
}

.btn-park:hover {
    background: transparent;
    color: var(--primary-green);
}

/* ===== Safari Packages Section ===== */
.packages-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2f1c 100%);
    color: var(--text-light);
}

.packages-section .section-title {
    color: var(--text-light);
}

.packages-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.packages-section .section-divider {
    background: var(--accent-gold);
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.2);
}

.package-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-category {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.package-header h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.package-park {
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-body {
    padding: 25px;
}

.package-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.package-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.package-detail i {
    color: var(--accent-gold);
}

.package-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-highlights li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-highlights li:last-child {
    border-bottom: none;
}

.package-highlights li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.package-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.package-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.btn-package {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-package:hover {
    background: transparent;
    color: var(--accent-gold);
}

/* ===== Why Choose Us Section ===== */
.why-section {
    background: var(--bg-cream);
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-light);
}

.why-card h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact-section {
    background: #fff;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating>.form-control,
.form-floating>.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1rem;
    height: auto;
    font-size: 1rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.form-floating>label {
    padding: 1rem;
    color: #888;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-green);
}

.btn-submit {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 500px;
    position: relative;
}

#nationalParksMap {
    width: 100%;
    height: 100%;
}

.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
}

.map-controls button {
    display: block;
    width: 100%;
    padding: 8px 15px;
    margin-bottom: 5px;
    border: none;
    background: var(--primary-green);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-controls button:last-child {
    margin-bottom: 0;
}

.map-controls button:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
}

/* ===== Modal Styles ===== */
.enquiry-modal .modal-dialog {
    max-width: 800px;
}

.enquiry-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

.enquiry-modal .modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.enquiry-modal .btn-close {
    filter: brightness(0) invert(1);
}

.enquiry-modal .modal-body {
    padding: 30px;
}

.package-info {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.package-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.package-info-content h5 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.package-info-content p {
    margin: 0;
    color: #666;
}

.enquiry-form {
    margin-top: 20px;
}

.enquiry-form .form-floating {
    margin-bottom: 20px;
}

.enquiry-form .form-floating>.form-control,
.enquiry-form .form-floating>.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1rem;
    height: auto;
    font-size: 1rem;
}

.enquiry-form .form-floating>.form-control:focus,
.enquiry-form .form-floating>.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
}

.enquiry-form .form-floating>label {
    padding: 1rem;
    color: #888;
}

.enquiry-form .form-floating>.form-control:focus~label,
.enquiry-form .form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-green);
}

.btn-enquiry {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-enquiry:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand i {
    color: var(--accent-gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--accent-gold-light);
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 80px;
    }

    .about-experience-badge {
        right: 20px;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-secondary1 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -20px;
        right: 10px;
        padding: 15px 20px;
    }

    .about-experience-badge .years {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .package-info {
        flex-direction: column;
        text-align: center;
    }

    .map-controls {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .map-controls button {
        flex: 1;
        margin-bottom: 0;
    }
}

/* ===== Alert Styles ===== */
.alert-success {
    background: rgba(45, 90, 39, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 12px;
    padding: 15px 20px;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 12px;
    padding: 15px 20px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
>>> Whatsapp Floating Footer 
----------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 1;
}

.whatsapp-float a {
    display: flex;
    margin-left: 4px;
}

/* ===================================================== */
/* CONTACT PAGE
/* ===================================================== */

/* ---------- HERO / PAGE HEADER ---------- */
.page-header {
    min-height: 65vh;
    background:
        linear-gradient(180deg, rgba(13, 27, 15, 0.85), rgba(13, 27, 15, 0.75)),
        url("/images/background/hero_background.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(201, 162, 39, 0.15), transparent 60%);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    letter-spacing: 1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.page-header .breadcrumb {
    margin-top: 10px;
    opacity: 0.9;
}

/* ---------- SECTION SPACING ---------- */
section.py-5 {
    padding: 90px 0 !important;
}

/* ---------- CONTACT CARDS ---------- */
.contact-section .card {
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.contact-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-section .card h4,
.contact-section .card h5 {
    color: var(--primary-green);
}

/* ---------- ICON BLOCKS ---------- */
.icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ---------- FORM DESIGN ---------- */
.contact-section .form-control,
.contact-section .form-select,
.contact-section textarea {
    border-radius: 14px;
    border: 2px solid #e6e6e6;
    padding: 15px 16px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: #fff;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus,
.contact-section textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.18);
}

/* ---------- SUBMIT BUTTON ---------- */
.contact-section .btn-success {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    border-radius: 60px;
    padding: 16px 34px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: var(--transition-smooth);
}

.contact-section .btn-success:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(201, 162, 39, 0.45);
}

/* ---------- SOCIAL BUTTONS ---------- */
.contact-section .btn-outline-primary,
.contact-section .btn-outline-info,
.contact-section .btn-outline-danger,
.contact-section .btn-outline-success {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border-width: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.contact-section .btn-outline-primary:hover,
.contact-section .btn-outline-info:hover,
.contact-section .btn-outline-danger:hover,
.contact-section .btn-outline-success:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    transform: translateY(-6px) scale(1.05);
}

/* ---------- QUICK CALL BOX ---------- */
.contact-section .bg-success {
    background: linear-gradient(135deg, var(--primary-green), #0f2612) !important;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

/* ---------- MAP SECTION ---------- */
.map-container {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    filter: grayscale(25%) contrast(1.08);
}

/* ---------- FAQ ACCORDION ---------- */
.accordion-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    font-weight: 600;
    padding: 18px 22px;
    color: var(--primary-green);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-cream);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* ---------- MOBILE TUNING ---------- */
@media (max-width: 768px) {
    .page-header {
        min-height: 55vh;
    }

    .page-header h1 {
        font-size: 2.6rem;
    }

    section.py-5 {
        padding: 65px 0 !important;
    }
}

/* ===== Timeline Styles ===== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -35px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid var(--primary-green);
}

.timeline-content h5 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* ===== About Us Page Specific Styles ===== */
.about-us-hero {
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
        url('/images/background/hero_background.jpg') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.about-us-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.15), transparent 60%);
}

.about-us-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.about-us-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-us-story {
    padding: 80px 0;
    background: var(--bg-cream);
}

.about-us-story h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    position: relative;
}

.about-us-story h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.about-us-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-us-mission {
    padding: 80px 0;
    background: #fff;
}

.mission-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-light);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    font-size: 1rem;
}

.about-us-team {
    padding: 80px 0;
    background: var(--bg-cream);
}

.team-member {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.team-social a:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.about-us-values {
    padding: 80px 0;
    background: #fff;
}

.value-item {
    text-align: center;
    margin-bottom: 40px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-light);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    font-size: 1rem;
}

.about-us-achievements {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.achievement-item {
    text-align: center;
    margin-bottom: 30px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive Styles for About Us Page ===== */
@media (max-width: 767px) {
    .about-us-hero h1 {
        font-size: 2.5rem;
    }

    .about-us-hero p {
        font-size: 1rem;
    }

    .about-us-story h2,
    .about-us-mission h2,
    .about-us-team h2,
    .about-us-values h2,
    .about-us-achievements h2 {
        font-size: 2rem;
    }

    .mission-card,
    .team-member {
        margin-bottom: 30px;
    }
}

/* ===================================================== */
/* COMMON STYLES */
/* ===================================================== */
.packages-section-tiger {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2f1c 100%);
    color: var(--text-light);
}

/* Common Card hover effect */
.card-hover-tiger {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card-hover-tiger:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    border-color: rgba(245, 158, 11, .35) !important;
}

/* Common Pill styles */
.pill-tiger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pill-active-tiger {
    background: linear-gradient(135deg, rgba(245, 158, 11, .92), rgba(245, 158, 11, .65)) !important;
    color: var(--brand-900) !important;
    border-color: rgba(245, 158, 11, .55) !important;
}

.pill-active-tiger i {
    color: var(--brand-900) !important;
}

/* Common Buttons */
.btn-primary-tiger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: var(--brand-900);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-tiger:hover {
    transform: scale(1.02);
    color: var(--brand-900);
}

.btn-secondary-tiger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: #fff;
    background: var(--white-5);
    border: 1px solid var(--white-20);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary-tiger:hover {
    background: var(--white-10);
    color: #fff;
}

/* Common Forms */
.form-control-tiger {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;
}

.form-control-tiger::placeholder {
    color: var(--white-40);
}

.form-control-tiger:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .25);
    border-color: rgba(245, 158, 11, .55);
    background: var(--white-5);
    color: #fff;
}

.form-control-tiger option {
    background: var(--brand-900);
    color: #fff;
}

/* Common Section styles */
.section-padding-tiger {
    padding: 4rem 0;
}

.section-badge-tiger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.section-title-tiger {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-top: 1rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.section-description-tiger {
    color: var(--white-70);
    margin-top: 0.5rem;
}

/* Common Gradient overlay */
.gradient-overlay-tiger {
    background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(11, 42, 26, .9));
}

.gradient-overlay-tiger-strong {
    background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(11, 42, 26, .95));
}

/* Common Scroll anchor offset */
.anchor-offset-tiger {
    scroll-margin-top: 90px;
}

/* Common Text glow effects */
.text-glow-amber-tiger {
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (min-width: 576px) {
    .hero-title-tiger {
        font-size: 2.5rem;
    }

    .cta-section-tiger {
        padding: 4rem;
    }

    .cta-title-tiger {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title-tiger {
        font-size: 3rem;
    }

    .search-box-tiger {
        width: 420px;
    }
}

/* Hide on mobile */
@media (max-width: 767px) {
    .hide-mobile-tiger {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .hide-desktop-tiger {
        display: none !important;
    }
}

/* Hero Section */
.hero-section-tiger {
    position: relative;
    padding-top: 7rem;
}

.hero-bg-tiger {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-tiger-image {
    height: 100%;
    width: 100%;
    background-image: url('/images/background/hero_background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-tiger-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 42, 26, .88), rgba(11, 42, 26, .96));
}

.hero-title-tiger {
    font-size: 2.5rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: white;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-description-tiger {
    font-size: 1.125rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--white-75);
    max-width: 672px;
}

.hero-stat-card-tiger {
    padding: 1rem;
    border-radius: 1rem;
}

.hero-stat-number-tiger {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
}

.hero-stat-label-tiger {
    font-size: 0.75rem;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--white-70);
}

/* Quick Form Card */
.quick-form-card-tiger {
    padding: 1.25rem 1.5rem;
    border-radius: 1.5rem;
}

.quick-form-icon-box-tiger {
    height: 48px;
    width: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border: 1px solid var(--white-10);
}

/* ===================================================== */
/* Packages */
/* ===================================================== */

/* Search box glass wrapper – desktop & mobile safe */
.glass.packages-search-box-tiger {
    width: 100%;
    max-width: 100%;
    border-radius: 1.25rem;
}

/* Inner input alignment fix */
.packages-search-box-tiger .form-control-tiger {
    min-width: 0;
    /* ✅ prevents overflow in flex */
}

/* Search box */
.packages-search-box-tiger {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    width: 100%;
}

.packages-search-input-tiger {
    border-radius: 0.75rem;
}

.packages-clear-btn-tiger {
    font-size: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--white-15);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.packages-clear-btn-tiger:hover {
    background: var(--white-10);
}

/* Category pills container */
.packages-category-pills-container-tiger {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* ✅ Desktop: show all */
}

/* Desktop & tablet: no scroll */
@media (min-width: 992px) {
    .packages-category-pills-container-tiger {
        overflow-x: visible;
    }
}

/* Mobile: horizontal scroll */
@media (max-width: 991.98px) {
    .packages-category-pills-container-tiger {
        flex-wrap: nowrap;
        /* ✅ Force single row */
        overflow-x: auto;
        /* ✅ Enable scroll */
        padding-bottom: 0.5rem;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .packages-category-pills-container-tiger::-webkit-scrollbar {
        display: none;
    }
}


.packages-category-pill-tiger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 9999px;
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.packages-category-pill-tiger:hover {
    background: var(--white-10);
}

/* Package cards */
.packages-card-tiger {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--white-10);
}

.packages-image-tiger {
    height: 176px;
    width: 100%;
    object-fit: cover;
}

.packages-image-tiger-container {
    position: relative;
}

.packages-badge-tigers {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.packages-badge-tiger {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.packages-badge-tiger-weekend {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(52, 211, 153, 0.25);
    color: #a7f3d0;
}

.packages-badge-tiger-luxury {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(251, 191, 36, 0.25);
    color: #fde68a;
}

.packages-badge-tiger-family {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(56, 189, 248, 0.25);
    color: #bae6fd;
}

.packages-badge-tiger-photography {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(251, 113, 133, 0.25);
    color: #fecdd3;
}

.packages-badge-tiger-popular {
    background: rgba(132, 204, 22, 0.15);
    border-color: rgba(163, 230, 53, 0.25);
    color: #d9f99d;
}

.packages-badge-tiger-default {
    background: var(--white-10);
    border-color: var(--white-15);
    color: var(--white-80);
}

.packages-content-tiger {
    padding: 1.25rem;
}

.packages-title-tiger {
    font-size: 1.125rem;
    font-weight: 800;
}

.packages-price-tiger {
    font-size: 1.25rem;
    font-weight: 800;
    color: #a7f3d0;
}

.packages-meta-tiger {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.packages-meta-tiger-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--white-15);
    background: var(--white-5);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--white-70);
}

.packages-highlights-tiger {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.packages-highlights-tiger li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white-70);
    margin-bottom: 0.25rem;
}

.packages-buttons-tiger {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.packages-btn-enquire-tiger {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-900);
    border: none;
    cursor: pointer;
}

.packages-btn-copy-tiger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--white-5);
    border: 1px solid var(--white-20);
    cursor: pointer;
}

.packages-btn-copy-tiger:hover {
    background: var(--white-10);
}

/* Mobile optimization */
@media (max-width: 991.98px) {
    .glass.packages-search-box-tiger {
        padding: 0.75rem;
    }

    .packages-search-box-tiger label {
        font-size: 0.7rem;
    }

    .packages-search-input-tiger {
        font-size: 0.85rem;
    }

    .packages-clear-btn-tiger {
        padding: 0.45rem 0.6rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* Desktop enhancement */
@media (min-width: 992px) {
    .glass.packages-search-box-tiger {
        padding: 1rem 1.25rem;
    }

    .packages-search-input-tiger {
        font-size: 0.9rem;
    }
}

/* ============== */
/* Corbett Styles */
/* ============== */
/* Page Header Styles */
.corbett-page-header {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(13, 27, 15, 0.9), rgba(13, 27, 15, 0.7)),
        url('/images/background/hero_background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.corbett-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.2), transparent 60%);
}

.corbett-page-header .container {
    position: relative;
    z-index: 2;
}

.corbett-page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.corbett-page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    margin-top: 1rem;
}

.corbett-page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.corbett-page-header .breadcrumb-item.active {
    color: #fff;
}

.corbett-page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.corbett-page-header .breadcrumb-item a:hover {
    color: var(--accent-gold);
}

/* Introduction Section */
.corbett-intro {
    background: linear-gradient(135deg, #f5f3ee 0%, #e8f0e3 100%);
    position: relative;
}

.corbett-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.corbett-intro .about-image-wrapper {
    position: relative;
    transform: translateY(-30px);
    z-index: 1;
}

.corbett-intro .about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.corbett-intro .about-image:hover {
    transform: scale(1.02);
}

.corbett-intro .about-experience-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    bottom: -20px;
    right: -20px;
}

.corbett-intro .about-content h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.corbett-intro .about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
}

.corbett-intro .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.corbett-intro .about-features {
    margin-top: 2rem;
}

.corbett-intro .about-feature {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corbett-intro .about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.corbett-intro .about-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Highlights Section */
.corbett-highlights {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.corbett-highlights .highlight-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.corbett-highlights .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-highlights .highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.corbett-highlights .highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(10deg);
}

.corbett-highlights .highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.corbett-highlights .highlight-label {
    font-size: 1.1rem;
    color: #666;
}

/* History Section */
.corbett-history {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.corbett-history .history-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.corbett-history .history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.corbett-history .history-card:hover::before {
    transform: scaleX(1);
}

.corbett-history .history-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-history .history-year {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px;
    text-align: center;
}

.corbett-history .history-content {
    padding: 25px;
}

.corbett-history .history-content h5 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Zones Section */
.corbett-zones {
    /* background-image: url('https://img.freepik.com/free-vector/watercolor-bloom-frame_53876-93919.jpg?t=st=1768806069~exp=1768809669~hmac=23a427f5dc357f385f1699fb6bc54350447c3359c391675ad6c15c61ecca2886&w=1480'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */

    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.corbett-zones .zone-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* height: 100%; */
    height: auto;
}

.corbett-zones .zone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-zones .zone-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corbett-zones .zone-card:hover img {
    transform: scale(1.05);
}

.corbett-zones .zone-card .card-body {
    padding: 25px;
}

.corbett-zones .zone-card h5 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.corbett-zones .zone-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.zone-body h6 {
    margin-top: 12px;
    color: #707070;
    font-size: 14px;
}

.zone-body p {
    margin-top: 12px;
    font-size: 14px;
}

.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
}

.zone-card.active .collapse-content {
    max-height: 1200px;
}

.view-toggle-btn {
    margin-top: 12px;
    background: transparent;
    border: 1px solid #ffc107;
    color: #ffc107;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

.view-toggle-btn:hover {
    background: #ffc107;
    color: #000;
}

/* Flora & Fauna Section */
.corbett-flora-fauna {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.corbett-flora-fauna .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.corbett-flora-fauna .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-flora-fauna .card-header {
    border: none;
    padding: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.corbett-flora-fauna .card-header.bg-success {
    background: linear-gradient(135deg, var(--primary-green), #1e3d1a) !important;
}

.corbett-flora-fauna .card-header.bg-warning {
    background: linear-gradient(135deg, var(--accent-gold), #b8941f) !important;
}

.corbett-flora-fauna .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.corbett-flora-fauna .list-unstyled li:hover {
    transform: translateX(5px);
}

.corbett-flora-fauna .list-unstyled li:last-child {
    border-bottom: none;
}

/* Best Time Section */
.corbett-best-time {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.corbett-best-time .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.corbett-best-time .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.corbett-best-time .card:hover::before {
    transform: scaleX(1);
}

.corbett-best-time .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-best-time .icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    transition: transform 0.3s ease;
}

.corbett-best-time .card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
}

/* Safari Types Section */
.corbett-safari-types {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.corbett-safari-types .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.corbett-safari-types .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-safari-types .card img {
    transition: transform 0.5s ease;
}

.corbett-safari-types .card:hover img {
    transform: scale(1.05);
}

.corbett-safari-types .card-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Photography Tips Section */
.corbett-photography {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.corbett-photography .tip-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.corbett-photography .tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-gold));
}

.corbett-photography .tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-photography .tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Accommodation Section */
.corbett-accommodation {
    background: linear-gradient(135deg, #f5f3ee 0%, #e8f0e3 100%);
}

.corbett-accommodation .accommodation-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.corbett-accommodation .accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-accommodation .accommodation-card img {
    height: 200px;
    object-fit: cover;
}

.corbett-accommodation .accommodation-card .price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* How to Reach Section */
.corbett-reach {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.corbett-reach .reach-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.corbett-reach .reach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-reach .reach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.reach-card-border {
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

/* Nearby Attractions Section */
.corbett-attractions {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.corbett-attractions .attraction-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.corbett-attractions .attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-attractions .attraction-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corbett-attractions .attraction-card:hover img {
    transform: scale(1.05);
}

.corbett-attractions .distance-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Testimonials Section */
.corbett-testimonials {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.corbett-testimonials .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.corbett-testimonials .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-testimonials .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(201, 162, 39, 0.2);
}

.corbett-testimonials .testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.corbett-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.corbett-testimonials .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.corbett-testimonials .rating {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* FAQ Section */
.corbett-faq {
    background: linear-gradient(135deg, #f5f3ee 0%, #e8f0e3 100%);
}

.corbett-faq .accordion-button {
    background: white;
    color: var(--primary-green);
    font-weight: 600;
    border: none;
    box-shadow: none;
    padding: 20px;
}

.corbett-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: white;
}

.corbett-faq .accordion-button:focus {
    box-shadow: none;
}

.corbett-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.corbett-faq .accordion-body {
    padding: 20px;
    background: white;
}

/* Do's and Don'ts Section */
.corbett-dos-donts {
    background: linear-gradient(135deg, #f5f3ee 0%, #e8f0e3 100%);
}

.corbett-dos-donts .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.corbett-dos-donts .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.corbett-dos-donts .card-header {
    border: none;
    padding: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.corbett-dos-donts .list-unstyled li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.corbett-dos-donts .list-unstyled li:hover {
    background: rgba(255, 255, 255, 0.5);
    padding-left: 10px;
}

.corbett-dos-donts .list-unstyled li:last-child {
    border-bottom: none;
}

/* Booking Section */
.corbett-booking {
    position: relative;
    overflow: hidden;
}

.corbett-booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent 70%);
    border-radius: 50%;
}

.corbett-booking::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    border-radius: 50%;
}

.corbett-booking .section-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.corbett-booking .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.corbett-booking .section-divider {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    margin: 0 auto 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .corbett-page-header h1 {
        font-size: 2.5rem;
    }

    .corbett-intro .about-image-wrapper {
        transform: translateY(0);
        margin-bottom: 30px;
    }

    .corbett-intro .about-content h2 {
        font-size: 2rem;
    }
}

/* End of Corbett Styles */


/* ===================================================== */
/* ===== SAFARI TYPES STYLE ===== */
.safari-type-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.safari-type-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d4a373;
}

.type-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2d5a27;
    transition: 0.3s;
}

.safari-type-card:hover .type-icon-wrapper {
    background: #2d5a27;
    color: white;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.spec-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.spec-list li span {
    color: #666;
}

.spec-list li strong {
    color: #2d5a27;
}

/* ===== ZONES STYLE ===== */
.zone-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 380px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 20%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    transition: all 0.4s ease;
}

.zone-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.zone-card:hover .zone-img {
    transform: scale(1.1);
}

.zone-card:hover .zone-overlay {
    background: rgba(26, 60, 26, 0.9);
    justify-content: center;
}

.zone-card:hover .zone-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Safari Types Section */
.safari-types-sec {
    background: #fff;
    position: relative;
}

.safari-card-sec {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.safari-card-sec:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.safari-img-wrapper-sec {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.safari-img-wrapper-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card-sec:hover .safari-img-wrapper-sec img {
    transform: scale(1.1);
}

.safari-badge-sec {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.safari-content-sec {
    padding: 25px;
}

.safari-title-sec {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.safari-description-sec {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.safari-features-sec {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.safari-features-sec li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.safari-features-sec i {
    color: var(--primary-green);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-safari-sec {
    display: inline-block;
    /* background: linear-gradient(to right, #8d5b4c, #5d4037); */
    background: var(--primary-green);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.btn-safari-sec:hover {
    /* background: linear-gradient(to right, #5d4037, #8d5b4c); */
    background: var(--primary-green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.2);
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .safari-img-wrapper-sec {
        height: 180px;
    }

    .safari-content-sec {
        padding: 20px;
    }
}