/* CSS Variables */
:root {
    --primary-green: #1a4d2e;
    --secondary-green: #2d5f3d;
    --gold: #d4a574;
    --dark-brown: #3e2723;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--primary-green);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background-color: rgba(0,0,0,0.2);
    padding: 8px 0;
    font-size: 13px;
    color: var(--white);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
}

.header-contact i {
    margin-right: 5px;
}

.header-location {
    color: var(--white);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 120px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

.main-navigation a:hover {
    color: var(--gold);
}

.book-now-btn {
    background-color: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 10px 25px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: var(--gold) !important;
    color: var(--primary-green) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-tagline {
    font-family: 'Brush Script MT', cursive;
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Rooted Section */
.rooted-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/safari-bg.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.rooted-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Featured Safari Journeys Section */
.featured-safaris-section {
    padding: 100px 0;
    background-color: var(--white);
}

.featured-safaris-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-safaris-section .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.featured-safaris-section .section-header .gold-text {
    color: var(--gold);
    font-style: italic;
}

.featured-safaris-section .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.featured-safaris-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-safari-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-safari-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-safari-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-safari-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.featured-safari-content {
    padding: 25px 30px 30px;
}

.safari-duration {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.safari-duration i {
    margin-right: 6px;
}

.featured-safari-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 500;
}

.featured-safari-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.view-safari-btn {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.view-safari-btn::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-safari-btn:hover {
    color: var(--gold);
}

.view-safari-btn:hover::after {
    transform: translateX(5px);
}

.view-all-safaris {
    text-align: center;
    margin-top: 50px;
}

/* Featured Safari Responsive */
@media (max-width: 992px) {
    .featured-safaris-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-safaris-section {
        padding: 70px 0;
    }
    
    .featured-safaris-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featured-safari-image {
        height: 220px;
    }
    
    .featured-safaris-section .section-header h2 {
        font-size: 2rem;
    }
}

/* Balloon Safari Section */
.balloon-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.balloon-header {
    text-align: center;
    margin-bottom: 60px;
}

.balloon-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.balloon-header .gold-text {
    color: var(--gold);
    font-style: italic;
}

.balloon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.balloon-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.balloon-card:hover {
    transform: translateY(-10px);
}

.balloon-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.balloon-card-content {
    padding: 30px;
}

.balloon-card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.balloon-card-content .card-subtitle {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 10px;
}

.balloon-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.book-trip-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.book-trip-btn:hover {
    background-color: var(--secondary-green);
}

/* Handcrafted Section */
.handcrafted-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, #c9944a 100%);
    color: var(--white);
}

.handcrafted-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.handcrafted-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.handcrafted-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.handcrafted-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.handcrafted-images img {
    width: 100%;
    border-radius: 8px;
}

/* Private Safari Section */
.private-safari {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/private-safari.jpg') center/cover fixed;
    color: var(--white);
}

.private-safari-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.private-safari-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.private-safari-text p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.private-safari-image img {
    width: 100%;
    border-radius: 8px;
}

/* Itinerary Form Section */
.itinerary-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.itinerary-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.itinerary-form-wrapper h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.itinerary-form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.custom-itinerary-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-itinerary-form .form-group {
    margin-bottom: 20px;
}

.custom-itinerary-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.custom-itinerary-form input,
.custom-itinerary-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.custom-itinerary-form input:focus,
.custom-itinerary-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.custom-itinerary-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--secondary-green);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Footer */
.site-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h3 {
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.newsletter-form h4 {
    margin-bottom: 15px;
}

.newsletter-form form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c9944a;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Forms */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .balloon-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-main .container {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-green);
        display: none;
        z-index: 1000;
        padding-top: 120px;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        display: block !important;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        align-items: center;
    }
    
    .main-navigation li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation a {
        font-size: 1.2rem;
    }
    
    /* Hamburger animation when active */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .handcrafted-content,
    .private-safari-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .balloon-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-itinerary-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .itinerary-form-wrapper {
        padding: 30px 20px;
    }
    
    .handcrafted-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-contact a {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .about-text h2,
    .balloon-header h2,
    .handcrafted-text h2,
    .private-safari-text h2 {
        font-size: 1.8rem;
    }
}

/* Additional CSS for About, Packages, Destinations, Activities, Book, and Contact pages */

/* Page Hero */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 100px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-bg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.reason-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-item h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ========================================
   CUSTOM PACKAGE CTA SECTION - Enhanced
   ======================================== */
.custom-package-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9) 0%, rgba(45, 95, 61, 0.9) 100%), 
                url('../images/safari-sunset.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.custom-package-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.custom-package-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.custom-package-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-package-cta .cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 165, 116, 0);
    }
}

.custom-package-cta .cta-icon i {
    font-size: 3rem;
    color: var(--gold);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.custom-package-cta h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out;
}

.custom-package-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-package-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--primary-green);
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.custom-package-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.custom-package-cta .cta-button:hover::before {
    left: 100%;
}

.custom-package-cta .cta-button:hover {
    background: #e6b885;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.custom-package-cta .cta-button i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.custom-package-cta .cta-button:hover i {
    transform: translateX(5px);
}

/* ========================================
   END CUSTOM PACKAGE CTA SECTION
   ======================================== */

/* ========================================
   WHY BOOK WITH US SECTION - Redesigned
   ======================================== */
.why-book-section {
    padding: 100px 0;
    background: var(--white);
}

.why-book-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.why-book-section .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 400;
}

.why-book-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--gold));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.12);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f6f3, #e8e8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-content h3 {
    color: var(--gold);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

.benefit-number {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(26, 77, 46, 0.08);
    font-family: 'Playfair Display', Georgia, serif;
    transition: all 0.4s ease;
    z-index: 0;
}

.benefit-card:hover .benefit-number {
    color: rgba(212, 165, 116, 0.15);
    transform: scale(1.2);
}

/* Alternative grid layout for exactly 6 items */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet adjustments */
@media (max-width: 992px) {
    .why-book-section {
        padding: 80px 0;
    }
    
    .why-book-section .section-header h2 {
        font-size: 2.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .why-book-section {
        padding: 60px 0;
    }
    
    .why-book-section .section-header {
        margin-bottom: 50px;
    }
    
    .why-book-section .section-header h2 {
        font-size: 2rem;
    }
    
    .why-book-section .section-header p {
        font-size: 1.05rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 30px;
    }
    
    .benefit-icon {
        width: 65px;
        height: 65px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
        bottom: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.6rem;
    }
}

/* ========================================
   END WHY BOOK WITH US SECTION
   ======================================== */

/* Packages Section */
.packages-intro {
    padding: 60px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.intro-content a {
    color: var(--gold);
    text-decoration: underline;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    margin: 10px 0;
}

.package-duration {
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-includes {
    list-style: none;
    margin: 20px 0;
}

.package-includes li {
    padding: 5px 0;
    color: var(--text-dark);
}

.package-includes i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Multi-day Packages */
.multiday-packages {
    padding: 80px 0;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.package-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.package-details {
    padding: 40px;
}

.package-details h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.package-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.package-meta i {
    margin-right: 5px;
}

.package-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

.package-highlights h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.package-highlights ul {
    list-style: none;
    margin-bottom: 25px;
}

.package-highlights li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.package-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Custom Safari CTA */
.custom-safari-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, #c9944a 100%);
    color: var(--white);
    text-align: center;
}

.custom-safari-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Destinations */
.destinations-section {
    padding: 80px 0;
}

.destination-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.destination-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.destination-card:nth-child(even) {
    direction: rtl;
}

.destination-card:nth-child(even) > * {
    direction: ltr;
}

.destination-image img {
    width: 100%;
    border-radius: 8px;
}

.destination-content h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.destination-tagline {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 15px;
}

.destination-highlights {
    margin: 20px 0;
}

.destination-highlights h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.destination-highlights ul {
    list-style: none;
}

.destination-highlights li {
    padding: 5px 0;
}

.destination-highlights i {
    color: var(--primary-green);
    margin-right: 10px;
}

.best-time {
    margin: 15px 0;
    color: var(--text-light);
}

.destination-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.destination-btn:hover {
    background-color: var(--secondary-green);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.map-placeholder {
    max-width: 1000px;
    margin: 40px auto 0;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

/* ========================================
   FAMILY PACKAGES SECTION - Enhanced
   ======================================== */
.family-packages {
    padding: 100px 0;
    background: var(--white);
}

.family-packages .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.family-packages .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 400;
}

.family-packages .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.family-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 45px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.family-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.family-card:hover::before {
    transform: scaleX(1);
}

.family-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.12);
    border-color: var(--primary-green);
}

.family-card h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.family-card:hover h3 {
    color: var(--gold);
}

.family-card .package-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.family-card .package-duration i {
    color: var(--gold);
    font-size: 1rem;
}

.family-card .package-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.family-card .package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.family-card .package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.family-card .package-features li:last-child {
    border-bottom: none;
}

.family-card:hover .package-features li {
    padding-left: 5px;
}

.family-card .package-features li i {
    color: var(--primary-green);
    font-size: 1.1rem;
    min-width: 20px;
    transition: all 0.3s ease;
}

.family-card:hover .package-features li i {
    color: var(--gold);
    transform: scale(1.1);
}

.family-card .package-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.family-card .package-price {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.family-card .package-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.family-card .price-note {
    color: var(--primary-green);
    font-size: 0.92rem;
    margin: 0;
    font-style: italic;
}

.family-card .book-trip-btn {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    margin-top: 10px;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid var(--primary-green);
}

.family-card .book-trip-btn:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .family-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .family-packages {
        padding: 80px 0;
    }
    
    .family-packages .section-header h2 {
        font-size: 2.3rem;
    }
    
    .family-packages .section-header p {
        font-size: 1.05rem;
    }
    
    .family-grid {
        gap: 30px;
    }
    
    .family-card {
        padding: 35px 30px;
    }
    
    .family-card h3 {
        font-size: 1.7rem;
    }
    
    .family-card .package-price {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .family-card {
        padding: 30px 25px;
    }
    
    .family-card h3 {
        font-size: 1.5rem;
    }
    
    .family-card .package-features li {
        font-size: 0.9rem;
    }
    
    .family-card .book-trip-btn {
        padding: 12px 25px;
    }
}

/* ========================================
   END FAMILY PACKAGES SECTION
   ======================================== */

/* ========================================
   ENHANCED BOOKING PAGE STYLES
   ======================================== */

/* Booking Hero */
.booking-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/booking-hero.jpg') center/cover no-repeat;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 0;
    background: var(--light-bg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Enhanced Booking Process */
.booking-process-enhanced {
    padding: 100px 0;
    background: var(--white);
}

.booking-process-enhanced .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.booking-process-enhanced .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.booking-process-enhanced .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.12);
    border-color: var(--primary-green);
}

.step-number-badge {
    position: absolute;
    left: -15px;
    top: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.step-content {
    padding-left: 60px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f6f3, #e8e8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--gold), #c9944a);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.process-step-card:hover .step-icon i {
    color: var(--white);
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.timeline-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-green), var(--gold));
    margin: -15px 0 -15px 10px;
    opacity: 0.3;
}

/* Enhanced Booking Form Section */
.booking-form-section-enhanced {
    padding: 100px 0;
    background: var(--light-bg);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form-column {
    background: var(--white);
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Form Section Cards */
.form-section-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.form-section-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--gold);
}

.section-title h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 600;
}

/* Custom Booking Form Styles */
.custom-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-booking-form .form-group {
    margin-bottom: 20px;
}

.custom-booking-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #d9534f;
    font-weight: 700;
}

.custom-booking-form input,
.custom-booking-form textarea,
.custom-booking-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    background: var(--white);
}

.custom-booking-form input:focus,
.custom-booking-form textarea:focus,
.custom-booking-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.custom-booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-booking-form small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Enhanced Checkbox Grid */
.checkbox-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.checkbox-card {
    cursor: pointer;
    display: block;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.checkbox-content i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.checkbox-content span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.checkbox-card:hover .checkbox-content {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-color: var(--primary-green);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content i,
.checkbox-card input[type="checkbox"]:checked + .checkbox-content span {
    color: var(--white);
}

/* Enhanced Submit Button */
.submit-btn-enhanced {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
}

.submit-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 77, 46, 0.4);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.submit-btn-enhanced i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn-enhanced:hover i {
    transform: translateX(5px);
}

/* Form Footer Notes */
.form-footer-notes {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-note i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-benefits li:last-child {
    border-bottom: none;
}

.sidebar-benefits i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 2px;
}

.sidebar-benefits strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 4px;
    font-size: 1rem;
}

.sidebar-benefits p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.contact-card h3,
.contact-card p {
    color: var(--white);
}

.contact-card > p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.sidebar-contact-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-contact-option:last-child {
    border-bottom: none;
}

.sidebar-contact-option i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 3px;
}

.sidebar-contact-option strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.sidebar-contact-option a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 4px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-contact-option a:hover {
    color: var(--gold);
}

.sidebar-contact-option small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Testimonial Card */
.testimonial-card {
    background: #fafafa;
    border-left: 4px solid var(--gold);
}

.testimonial-icon {
    margin-bottom: 15px;
}

.testimonial-icon i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .booking-layout {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .process-step-card {
        padding: 30px 35px;
    }
    
    .step-content {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .booking-process-enhanced {
        padding: 80px 0;
    }
    
    .booking-form-column {
        padding: 35px 25px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .custom-booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .checkbox-content {
        padding: 15px 10px;
    }
    
    .checkbox-content i {
        font-size: 1.5rem;
    }
    
    .process-step-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .step-number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: -10px;
        top: 25px;
    }
    
    .step-content {
        padding-left: 40px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .booking-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section-card {
        padding: 20px;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .checkbox-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   END ENHANCED BOOKING PAGE STYLES
   ======================================== */

/* ========================================
   FORM MESSAGES & VALIDATION STYLES
   ======================================== */

/* Form Messages */
.form-message {
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 1rem;
    line-height: 1.6;
    display: none;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Form Validation States */
input.invalid,
textarea.invalid,
select.invalid {
    border-color: #d9534f !important;
    background-color: #fff5f5;
}

input.invalid:focus,
textarea.invalid:focus,
select.invalid:focus {
    border-color: #d9534f !important;
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1) !important;
}

input:valid,
textarea:valid,
select:valid {
    border-color: #28a745;
}

/* Loading States */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   END FORM MESSAGES & VALIDATION
   ======================================== */

/* Activities */
.activities-section {
    padding: 80px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.activity-card {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activity-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.activity-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.activity-features {
    list-style: none;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: var(--text-light);
}

.activity-features li {
    padding: 5px 0;
}

.activity-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.activity-link:hover {
    color: var(--primary-green);
}

/* Booking Page */
.booking-process {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.booking-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.booking-form-section {
    padding: 80px 0;
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.form-footer p {
    margin: 10px 0;
}

.form-footer i {
    margin-right: 8px;
    color: var(--primary-green);
}

.quick-contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.quick-contact > p {
    text-align: center;
    margin-bottom: 50px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-option {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

.contact-option i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-option h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-option a {
    color: var(--primary-green);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin: 10px 0;
}

.contact-option p {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-card .note,
.contact-card .hours,
.contact-card .response-time {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.faq-cta a {
    color: var(--gold);
    font-weight: 500;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.social-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.social-section > p {
    margin-bottom: 50px;
    color: var(--text-light);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.social-card {
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.instagram i {
    color: #E4405F;
}

.social-card.youtube i {
    color: #FF0000;
}

.social-card.tripadvisor i {
    color: #00AF87;
}

.social-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.social-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .package-item,
    .destination-card {
        grid-template-columns: 1fr;
    }
    
    .destination-card:nth-child(even) {
        direction: ltr;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .activities-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Modern Features, Animations, Modals & Interactive Elements CSS */
/* Add this to your existing style.css or create as animations.css */

/* AOS Animation Setup */
[data-aos] {
    transition-property: transform, opacity;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ===== GALLERY PAGE ===== */

/* Gallery Filter */
.gallery-filter {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

/* Gallery Grid */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: var(--white);
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 10px;
}

.view-btn {
    background: var(--gold);
    border: none;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #c9944a;
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-caption {
    background: var(--white);
    padding: 20px;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

/* Stats Section with Counter */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Featured Testimonials Slider */
.featured-testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card-large {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
}

.rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-green);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Testimonials Grid */
.testimonials-grid-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-card .rating {
    margin-bottom: 15px;
}

.testimonial-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-card .author {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-card .author strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.testimonial-card .author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    text-align: center;
}

.video-testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: var(--white);
    margin-left: 5px;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--white);
}

.video-info h4 {
    margin-bottom: 5px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.video-container {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Review Platforms */
.review-platforms {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.review-platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.platform-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.platform-card i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.platform-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.platform-rating {
    margin: 15px 0;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.3rem;
}

.rating-text {
    display: block;
    color: var(--text-light);
    margin-top: 5px;
}

/* Write Review Section */
.write-review-section {
    padding: 80px 0;
}

.review-cta-box {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.review-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.review-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.review-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-green);
}

.modal-content h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 2rem;
    margin: 10px 0;
}

.star-rating i {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--gold);
    transform: scale(1.2);
}

/* ===== FAQ PAGE ===== */

/* FAQ Search */
.faq-search {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(26, 77, 46, 0.1);
}

/* FAQ Categories */
.faq-categories {
    padding: 40px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--gold);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-green);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0 15px 20px;
}

.faq-answer li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--primary-green);
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-options-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Download Guide */
.download-guide {
    padding: 80px 0;
}

.guide-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--gold), #c9944a);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
    gap: 30px;
}

.guide-icon i {
    font-size: 4rem;
}

.guide-content {
    flex: 1;
}

.guide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.download-btn {
    padding: 15px 30px;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Download Modal */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.download-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 165, 116, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 165, 116, 0);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Smooth Hover Effects */
.smooth-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smooth-hover:hover {
    transform: translateY(-5px);
}

/* ===== SCROLL TO TOP BUTTON ===== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* ===== LOADING SPINNER ===== */

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== POPUP NOTIFICATIONS ===== */

.popup-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.3s ease;
}

.popup-notification.show {
    display: flex;
}

.popup-notification.success {
    border-left: 5px solid #28a745;
}

.popup-notification.error {
    border-left: 5px solid #dc3545;
}

.popup-notification i {
    font-size: 1.5rem;
}

.popup-notification.success i {
    color: #28a745;
}

.popup-notification.error i {
    color: #dc3545;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .filter-buttons,
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        padding: 20px 10px;
    }
    
    .testimonial-card-large {
        padding: 30px 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-box {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .contact-options-inline {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* ===== DARK MODE SUPPORT (Optional) ===== */

@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* ===== PRINT STYLES ===== */

@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .scroll-to-top,
    .lightbox,
    .modal {
        display: none !important;
    }
}
/* ========================================
   GLOBAL PADDING & SPACING FIXES
   Add this to your style.css file
   ======================================== */

/* Ensure body doesn't have extra space */
body {
    margin: 0;
    padding: 0;
}

/* Fix header spacing */
.site-header {
    margin-bottom: 0;
}

/* All main sections proper padding */
section {
    padding: 80px 0;
    clear: both;
}

/* Reduce padding for smaller sections */
.header-top {
    padding: 10px 0;
}

.header-main {
    padding: 15px 0;
}

/* Hero sections - proper spacing */
.hero-section,
.page-hero {
    margin-top: 120px; /* Account for fixed header */
    padding: 100px 0;
    min-height: 50vh;
}

/* Container consistent padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; /* Increased from 20px */
}

/* Section spacing consistency */
.about-section,
.balloon-section,
.handcrafted-section,
.private-safari,
.itinerary-section,
.package-categories,
.classic-packages,
.luxury-packages,
.family-packages,
.destinations-section,
.activities-section,
.gallery-section,
.testimonials-grid-section,
.faq-section,
.booking-form-section,
.contact-info-section {
    padding: 100px 0;
}

/* Smaller sections padding */
.rooted-section,
.stats-section,
.featured-testimonials,
.faq-search,
.faq-categories,
.package-filter,
.gallery-filter {
    padding: 60px 0;
}

/* CTA sections */
.cta-section,
.custom-safari-cta,
.custom-package-cta,
.contact-cta,
.write-review-section,
.review-platforms {
    padding: 80px 0;
}

/* Card and Grid Spacing */
.balloon-grid,
.destination-list,
.activities-grid,
.testimonials-grid,
.package-list,
.gallery-grid {
    margin-top: 40px;
    gap: 40px;
}

/* Individual card padding */
.balloon-card-content,
.destination-content,
.activity-card,
.testimonial-card,
.package-details,
.gallery-item {
    padding: 30px;
}

/* Form sections proper spacing */
.itinerary-form-wrapper,
.booking-form-wrapper,
.contact-form-wrapper {
    padding: 60px;
    margin: 0 auto;
}

/* Footer padding */
.site-footer {
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
}

/* Text content spacing */
.section-intro,
.section-header {
    margin-bottom: 60px;
    padding: 0 20px;
    text-align: center;
}

.about-text p,
.destination-content p,
.package-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* List spacing */
.package-includes,
.package-highlights ul,
.destination-highlights ul,
.activity-features {
    margin: 25px 0;
    padding-left: 0;
}

.package-includes li,
.package-highlights li,
.destination-highlights li {
    padding: 8px 0;
    margin-bottom: 8px;
}

/* Button spacing */
.cta-button,
.book-trip-btn,
.submit-btn,
.destination-btn {
    margin-top: 20px;
    padding: 15px 40px;
}

/* Accordion spacing */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    padding: 25px 30px;
}

.faq-answer {
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
}

/* Category cards spacing */
.category-grid,
.platforms-grid,
.benefits-grid {
    gap: 30px;
    margin-top: 50px;
}

.category-card,
.platform-card,
.benefit-item {
    padding: 40px 30px;
}

/* Testimonial slider spacing */
.testimonial-slider {
    padding: 60px 80px;
    margin: 40px 0;
}

.testimonial-card-large {
    padding: 60px;
}

/* Gallery spacing */
.gallery-grid {
    gap: 25px;
    margin-top: 50px;
}

.gallery-overlay {
    padding: 25px;
}

/* Stats section */
.stats-grid {
    gap: 50px;
}

.stat-item {
    padding: 20px;
}

/* Package list items */
.package-item {
    margin-bottom: 80px;
    overflow: hidden;
}

.package-details {
    padding: 50px;
}

/* Luxury cards */
.luxury-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.luxury-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.luxury-card:hover .luxury-image img {
    transform: scale(1.08);
}

.luxury-content {
    padding: 30px;
}

.luxury-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.luxury-content .package-duration {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.luxury-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.luxury-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.luxury-features span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.luxury-features i {
    color: var(--gold);
    margin-right: 5px;
}

/* Family cards */
.family-card {
    padding: 40px;
    margin-bottom: 30px;
}

/* Video sections */
.video-grid {
    gap: 40px;
    margin-top: 50px;
}

.video-info {
    padding: 25px;
}

/* Contact sections */
.contact-grid {
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    padding: 50px 40px;
}

.contact-box {
    padding: 60px 40px;
}

/* Search box spacing */
.search-box {
    margin: 0 auto;
    padding: 0 20px;
}

.search-box input {
    padding: 18px 25px 18px 60px;
}

/* Category tabs */
.category-tabs,
.filter-buttons {
    padding: 20px;
    gap: 15px;
}

.tab-btn,
.filter-btn {
    padding: 12px 28px;
}

/* Mobile Responsive Padding */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Reduce padding on mobile */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-section,
    .page-hero {
        padding: 80px 0;
        margin-top: 100px;
    }
    
    .itinerary-form-wrapper,
    .booking-form-wrapper,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .testimonial-slider {
        padding: 40px 20px;
    }
    
    .testimonial-card-large {
        padding: 30px 20px;
    }
    
    .package-details {
        padding: 30px 20px;
    }
    
    .luxury-content,
    .family-card,
    .contact-card {
        padding: 30px 20px;
    }
    
    .category-card,
    .platform-card {
        padding: 30px 20px;
    }
    
    .balloon-card-content,
    .activity-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .site-footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    /* Reduce gaps on mobile */
    .balloon-grid,
    .activities-grid,
    .testimonials-grid,
    .gallery-grid {
        gap: 20px;
    }
    
    /* Custom Package CTA - Mobile */
    .custom-package-cta {
        padding: 80px 0;
    }
    
    .custom-package-cta h2 {
        font-size: 2rem;
    }
    
    .custom-package-cta p {
        font-size: 1.05rem;
    }
    
    .custom-package-cta .cta-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    
    .custom-package-cta .cta-icon i {
        font-size: 2.5rem;
    }
    
    .custom-package-cta .cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .page-hero {
        padding: 60px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .cta-button,
    .book-trip-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Custom Package CTA - Extra Small Screens */
    .custom-package-cta {
        padding: 60px 0;
    }
    
    .custom-package-cta h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .custom-package-cta p {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .custom-package-cta .cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .custom-package-cta .cta-icon i {
        font-size: 2rem;
    }
    
    .custom-package-cta .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Fix any overflow issues */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ensure smooth transitions */
section,
.container,
.balloon-card,
.package-item {
    transition: padding 0.3s ease;
}

/* Additional spacing utilities */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }
.p-50 { padding: 50px; }

/* Fix any floating issues */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure consistent line heights */
p, li {
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Final spacing fix */
.site-header + section,
.site-header + .hero-section,
.site-header + .page-hero {
    margin-top: 120px; /* Account for fixed header */
}

/* Newsletter form spacing */
.newsletter-form form {
    margin: 20px 0;
}

.newsletter-form input {
    padding: 14px 18px;
}

.newsletter-form button {
    padding: 14px 28px;
}

/* ========================================
   GLOBAL MARGIN & PADDING OPTIMIZATION
   Ensures consistent breathing room on all screens
   ======================================== */

/* Global container spacing */
.container {
    max-width: 1320px; /* keeps it elegant, not stretched */
    padding-left: 60px;
    padding-right: 60px;
}

/* Standard section padding */
section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Hero & page hero adjustments */
.hero-section,
.page-hero {
    padding: 120px 60px;
}

/* Header and footer internal breathing */
.header-main .container,
.header-top .container,
.site-footer .container {
    padding-left: 60px;
    padding-right: 60px;
}

/* Cards and grids consistent gutters */
.balloon-card-content,
.package-details,
.activity-card,
.testimonial-card,
.destination-content,
.contact-card {
    padding: 40px;
}

/* Footer spacing */
.site-footer {
    padding: 100px 0 40px;
}

/* Medium screens: scale spacing down slightly */
@media (max-width: 992px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hero-section,
    .page-hero {
        padding: 100px 40px;
    }
    
    /* Custom Package CTA - Tablet */
    .custom-package-cta {
        padding: 100px 0;
    }
    
    .custom-package-cta h2 {
        font-size: 2.5rem;
    }
    
    .custom-package-cta p {
        font-size: 1.15rem;
    }
}

/* Mobile devices: tighter but still airy */
@media (max-width: 600px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-section,
    .page-hero {
        padding: 80px 25px;
    }
}

/* ========================================
   ENHANCED BOOKING PAGE STYLES
   Modern, Professional UI Enhancement
   ======================================== */

/* Enhanced Hero Section */
.booking-hero-enhanced {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.booking-hero-enhanced .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #c9944a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

.booking-hero-enhanced h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.booking-hero-enhanced p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-feature i {
    font-size: 1.3rem;
    color: var(--gold);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover i {
    opacity: 1;
}

/* Enhanced Trust Indicators */
.trust-indicators-enhanced {
    padding: 80px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transition: left 0.5s ease;
}

.trust-card:hover::before {
    left: 0;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 77, 46, 0.15);
}

.trust-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f6f3, #e8e8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: rotateY(360deg);
}

.trust-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: color 0.4s;
}

.trust-card:hover .trust-icon-wrapper i {
    color: var(--white);
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Modern Process Section */
.booking-process-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f6f3 100%);
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header-modern h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 400;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-grid-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step-horizontal {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
}

.process-step-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 77, 46, 0.12);
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(26, 77, 46, 0.3);
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    background: #f8f6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.process-step-horizontal:hover .step-icon-circle {
    background: var(--gold);
    transform: scale(1.1);
}

.step-icon-circle i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: color 0.4s;
}

.process-step-horizontal:hover .step-icon-circle i {
    color: var(--white);
}

.process-step-horizontal h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step-horizontal p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-arrow-horizontal {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.process-arrow-horizontal i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.5;
}

/* Ultra Enhanced Form Section */
.booking-form-section-ultra {
    padding: 100px 0;
    background: #f8f6f3;
}

.booking-layout-ultra {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-form-main-ultra {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.08);
}

.form-header-ultra {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header-icon-ultra {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 30px rgba(26, 77, 46, 0.2);
}

.form-header-icon-ultra i {
    font-size: 2rem;
    color: var(--white);
}

.form-header-ultra h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 400;
}

.form-header-ultra p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.form-section-ultra {
    margin-bottom: 40px;
    padding: 35px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.section-title-ultra {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
}

.section-icon-ultra {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #c9944a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon-ultra i {
    font-size: 1.5rem;
    color: var(--white);
}

.section-title-ultra h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.section-title-ultra p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.form-grid-ultra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field-ultra {
    margin-bottom: 25px;
}

.form-field-ultra label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.required-star {
    color: #d9534f;
    margin-left: 3px;
}

.input-wrapper-ultra {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper-ultra i {
    position: absolute;
    left: 18px;
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.input-wrapper-ultra input,
.input-wrapper-ultra textarea,
.input-wrapper-ultra select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.input-wrapper-ultra input:focus,
.input-wrapper-ultra textarea:focus,
.input-wrapper-ultra select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
}

.input-wrapper-ultra textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}

.form-field-ultra small {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Enhanced Interest Cards */
.interests-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.interest-card-ultra {
    cursor: pointer;
    display: block;
}

.interest-card-ultra input[type="checkbox"] {
    display: none;
}

.interest-content-ultra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.interest-content-ultra i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.interest-content-ultra span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.interest-card-ultra:hover .interest-content-ultra {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.interest-card-ultra input[type="checkbox"]:checked + .interest-content-ultra {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.interest-card-ultra input[type="checkbox"]:checked + .interest-content-ultra i,
.interest-card-ultra input[type="checkbox"]:checked + .interest-content-ultra span {
    color: var(--white);
}

/* Ultra Submit Button */
.submit-btn-ultra {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.submit-btn-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 77, 46, 0.4);
}

.submit-btn-ultra i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn-ultra:hover i {
    transform: translateX(5px);
}

/* Form Message */
.form-message-ultra {
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    display: none;
    animation: slideDown 0.4s ease;
}

.form-message-ultra.success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.form-message-ultra.error {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

/* Security Notes */
.form-security-ultra {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.security-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Enhanced Sidebar */
.booking-sidebar-ultra {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card-ultra {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-icon-ultra {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #c9944a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-icon-ultra i {
    font-size: 1.8rem;
    color: var(--white);
}

.sidebar-card-ultra h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.sidebar-list-ultra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list-ultra li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-list-ultra li:last-child {
    border-bottom: none;
}

.sidebar-list-ultra i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-list-ultra strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 4px;
    font-size: 1rem;
}

.sidebar-list-ultra p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Card */
.contact-card-ultra {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.contact-card-ultra h3 {
    color: var(--white);
}

.contact-item-ultra {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-item-ultra:last-child {
    border-bottom: none;
}

.contact-item-ultra i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-item-ultra strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-item-ultra a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item-ultra a:hover {
    color: var(--gold);
}

/* Testimonial Card */
.testimonial-card-ultra {
    background: #fafafa;
    border-left: 4px solid var(--gold);
}

.quote-icon-ultra {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-card-ultra p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-ultra {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.author-ultra strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.author-ultra span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CSS Animations - No External Library Needed */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.6s both;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out 0.3s both;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-scale-in-delay {
    animation: scaleIn 0.6s ease-out 0.1s both;
}

.animate-scale-in-delay-2 {
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.animate-scale-in-delay-3 {
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.animate-slide-up {
    animation: slideUp 0.7s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.7s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.7s ease-out 0.4s both;
}

.animate-slide-up-delay-3 {
    animation: slideUp 0.7s ease-out 0.6s both;
}

.animate-slide-left {
    animation: slideLeft 0.7s ease-out;
}

.animate-slide-left-delay {
    animation: slideLeft 0.7s ease-out 0.2s both;
}

.animate-slide-left-delay-2 {
    animation: slideLeft 0.7s ease-out 0.4s both;
}

/* Scroll Animation Trigger */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.is-visible {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .booking-layout-ultra {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .booking-hero-enhanced h1 {
        font-size: 2.8rem;
    }
    
    .process-grid-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow-horizontal {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .booking-layout-ultra {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar-ultra {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .booking-hero-enhanced {
        min-height: 60vh;
    }
    
    .booking-hero-enhanced h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .trust-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .booking-form-main-ultra {
        padding: 35px 25px;
    }
    
    .form-grid-ultra {
        grid-template-columns: 1fr;
    }
    
    .interests-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .booking-hero-enhanced h1 {
        font-size: 1.8rem;
    }
    
    .trust-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .interests-grid-ultra {
        grid-template-columns: 1fr;
    }
    
    .booking-form-main-ultra {
        padding: 25px 20px;
    }
}

/* ================================================
   CONTACT PAGE FIX - STRONGER VERSION
   Add this at the VERY END of style.css
   ================================================ */

/* Override white text on contact info section cards */
.contact-info-section .contact-card {
    background: var(--white) !important;
}

.contact-info-section .contact-card p {
    color: #333333 !important;
    margin-bottom: 10px;
}

.contact-info-section .contact-card h3 {
    color: var(--primary-green) !important;
}

.contact-info-section .contact-card a {
    color: var(--primary-green) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-section .contact-card a:hover {
    color: var(--gold) !important;
}

.contact-info-section .contact-card .note,
.contact-info-section .contact-card .hours,
.contact-info-section .contact-card .response-time {
    color: #666666 !important;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ===========================================
   FIX: Contact Us Button on FAQ Page
   Add this to the END of your style.css file
   =========================================== */

/* Fix for .cta-button inside contact-options-inline (FAQ page) */
.contact-options-inline .cta-button {
    background: var(--primary-green) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-green) !important;
    border-radius: 4px;
    padding: 15px 30px;
}

.contact-options-inline .cta-button:hover {
    background: var(--secondary-green) !important;
    border-color: var(--secondary-green) !important;
    color: var(--white) !important;
}