/* Base Reset & Variables */
:root {
    --primary: #f27b21;
    --primary-hover: #d96d1d;
    --secondary: #0a2640;
    --text-color: #4a4a4a;
    --text-light: #777;
    --bg-light: #f7f9fa;
    --white: #ffffff;
    --font-main: 'Jost', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.position-relative { position: relative; }
.z-index-1 { position: relative; z-index: 1; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Typography elements */
.section-header {
    text-align: center!important;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff; /* Changed back to secondary for visibility on white background */
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header .text-white h2 {
    color: var(--white);
}

.cursive-subtitle {
    font-family: var(--font-cursive);
    color: #e5b27b; /* softer orange for cursive */
    font-size: 40px;
    font-weight: 400;
    margin-bottom: -10px;
}

.section-header .cursive-subtitle.text-dark {
    color: #dfaa7b;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.divider::before, .divider::after {
    content: '';
    height: 1px;
    width: 40px;
    background-color: var(--primary);
    margin: 0 10px;
}

.divider.light::before, .divider.light::after {
    background-color: rgba(255,255,255,0.5);
}

.icon-sun {
    color: #4db8ff; /* Light blue sun icon */
    font-size: 20px;
}

.section-subtext {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: #0d8cc6; /* vibrant blue */
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info .registration-no {
    font-weight: 600;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-social a:hover {
    color: var(--primary);
}

/* Navigation */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.nav-list li {
    margin: 0 12px;
}

.nav-list a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero .cursive-subtitle {
    color: #f7a950;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 10px 0 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

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

/* Explore Destinations */
.explore-destinations {
    background-color: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    grid-auto-rows: 250px;
}

.dest-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.dest-card.large {
    grid-column: span 2;
    grid-row: span 1;
}

.dest-card.wide {
    grid-column: span 2;
}

.dest-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--transition);
}

.dest-card:hover::before {
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.dest-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1;
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    bottom: 30px;
}

.dest-overlay h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Adventure Activity */
.activities-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 32, 57, 0.85); /* Deep navy blue overlay */
}

.subtitle-small {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.activity-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.activity-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.activity-card:hover .icon-wrap {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary);
    transform: rotateY(180deg);
}

.activity-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.activity-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Top Tour Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pkg-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.package-card:hover .pkg-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge:contains('TRENDING') { background-color: #28a745; }
.badge:contains('POPULAR') { background-color: #0d8cc6; }

.price-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    border-top-right-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.pkg-content {
    padding: 20px;
}

.pkg-location {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.pkg-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pkg-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.feat {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.feat i {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}

/* Services / Bookings */
.bookings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.booking-banner {
    border-radius: 15px;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
}

.booking-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.tiny-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #ddd;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.banner-content h2 span {
    color: var(--primary);
}

.banner-content p {
    font-size: 16px;
    font-weight: 600;
}

.banner-content p i {
    color: var(--primary);
    margin-right: 5px;
}

.deal-badge {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745; /* green */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.deal-badge.orange {
    background: var(--primary);
}

.deal-badge span {
    font-size: 12px;
    font-weight: 600;
}

.deal-badge strong {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h2 {
    font-family: var(--font-cursive);
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .top-info {
        display: none; /* Hide top bar contact on smaller screens to save space */
    }
    .top-bar-inner {
        justify-content: center;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dest-card.large, .dest-card.wide {
        grid-column: span 1;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 415px!important;
}
    
    .bookings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none; /* Hide initially */
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        width: 100%;
    }
    
    .nav-list li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav .btn {
        margin-top: 15px;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero .cursive-subtitle {
        font-size: 36px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-grid,
    .packages-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .deal-badge {
        display: none; /* Hide element to prevent overlapping on tiny screens */
    }
}

/* Swiper Enhancement */
.hero-slider {
    height: 85vh;
    min-height: 600px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 550px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(242, 123, 33, 0.3);
    border: 5px solid var(--white);
}

.experience-badge span {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.divider.align-left {
    justify-content: flex-start;
}

.divider.align-left::before {
    display: none;
}

.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.about-features {
    margin: 25px 0;
}

.about-features li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary);
    font-size: 18px;
}

/* Packages Slider Adjustments */
.packages-slider {
    padding-bottom: 60px;
    padding-top: 20px;
}

.pkg-next, .pkg-prev {
    top: 50%;
    color: var(--secondary);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pkg-next::after, .pkg-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.pkg-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--secondary);
    padding-bottom: 100px;
}

.reviews-section .section-header h2,
.reviews-section .section-header .cursive-subtitle {
    color: var(--white);
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    margin-top: 30px;
    height: 100%;
}

.review-quote {
    color: rgba(242, 123, 33, 0.2);
    font-size: 50px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.author-info span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.review-pagination {
    bottom: 20px !important;
}

.review-pagination .swiper-pagination-bullet {
    background: var(--white);
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 123, 33, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
}

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

.contact-social {
    margin-top: 40px;
}

.contact-social h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(242, 123, 33, 0.05);
}

/* Footer Section */
.footer {
    background-color: #07192a !important;
    padding: 80px 0 0 !important;
    margin-top: 80px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-col p {
    color: #b0bac3;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0bac3;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #b0bac3;
}

.footer-contact i {
    color: var(--primary);
}

.reg-no {
    display: inline-block;
    background: rgba(242, 123, 33, 0.1);
    color: var(--primary) !important;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px !important;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #7a8a9a;
    font-size: 14px;
    margin: 0;
}

.footer-brand-link img {
    height: 32px;
    transition: var(--transition);
}

.footer-brand-link:hover img {
    transform: scale(1.08);
}

/* Mobile alignment for footer bottom */
@media (max-width: 768px) {
    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Responsiveness for new sections */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 15px;
    }
    
    .contact-grid {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero .cursive-subtitle {
        font-size: 36px;
    }
}

/* Booking Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 5000; /* Increased z-index to ensure it is above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 650px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

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

.modal-header h2 {
    font-size: 28px;
    color: var(--secondary);
    text-transform: uppercase;
}

.modal-header h2 span {
    color: var(--primary);
}

.modal-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.modal-form .form-group {
    flex: 1;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.modal-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.modal-form label i {
    color: var(--primary);
    margin-right: 5px;
}

.modal-form input, 
.modal-form select, 
.modal-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    transition: var(--transition);
}

.modal-form input:focus, 
.modal-form select:focus, 
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 123, 33, 0.1);
}

.modal-form .btn-primary {
    margin-top: 10px;
    padding: 15px;
}

/* Responsive Modal */
@media (max-width: 600px) {
    .modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
        text-align: center !important;
        width: 100%;
    }
    .section-header {
        padding: 0 15px;
    }
}
