:root {
    --logo-orange: #F7941D;
    --logo-green: #00A651;
    --logo-blue: #0072BC;
    --logo-navy: #1B365D;
    --soft-parchment: #FDF8F1;
    --white: #FFFFFF;
    --black: #050A0A;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--soft-parchment);
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Light Modern Cinematic Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--soft-parchment);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loader-modern-inner {
    text-align: center;
}

.loader-logo-wrap {
    margin-bottom: 30px;
    position: relative;
}

.loader-logo-modern {
    width: 180px;
    /* Slightly larger in light mode */
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.05));
    animation: loaderPulseLight 3s ease-in-out infinite;
}

.loader-counter {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--logo-navy);
    font-size: 84px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
}

.loader-counter .percent {
    font-size: 28px;
    opacity: 0.2;
    letter-spacing: 0;
    margin-left: 5px;
}

.loader-brand-tag {
    color: var(--logo-navy);
    font-size: 11px;
    letter-spacing: 7px;
    font-weight: 700;
    opacity: 0.3;
    text-transform: uppercase;
}

@keyframes loaderPulseLight {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.8;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 10, 10, 0.5), transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.3);
    /* Significantly more white/opaque */
    backdrop-filter: blur(15px);
    padding: 12px 30px 12px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo-container:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
}

.brand-logo {
    height: 100px;
    /* Increased for better visibility */
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) brightness(1.1) contrast(1.1);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    /* Slightly larger */
    letter-spacing: 3px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--logo-orange);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--logo-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #b08e56;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--black);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 70%);
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.slide-info {
    max-width: 600px;
}

.slide-title {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1;
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.slider-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-num,
.total-num {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.progress-bar-bg {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--golden-sand);
    transition: width 0.5s ease;
}

/* Quick Search (Real Estate Style) */
.quick-search-container {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 20;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 80px rgba(5, 10, 10, 0.15);
    border-radius: 12px;
    padding: 30px 40px;
}

.quick-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.search-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--deep-teal);
    margin-bottom: 10px;
    opacity: 0.6;
}

.search-field input,
.search-field select {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    outline: none;
}

.search-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
}

.search-btn {
    background: var(--logo-blue);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    margin-left: 20px;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--logo-green);
    transform: scale(1.05);
}

/* Responsive Design */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .slide-title {
        font-size: 60px;
    }

    .slider-content {
        padding: 0 40px 140px;
    }

    .quick-search-container {
        width: 95%;
        bottom: -40px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--logo-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s ease-in-out;
        z-index: 1000;
        display: flex;
        /* Show the list but off-screen */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .brand-logo {
        height: 60px;
    }

    .slide-title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .slider-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px 180px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .progress-bar-bg {
        width: 60px;
    }

    .quick-search-container {
        bottom: -20px;
        position: relative;
        left: unset;
        transform: none;
        margin: -100px auto 40px;
        width: 92%;
    }

    .quick-search {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .search-field {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .search-divider {
        display: none;
    }

    .search-btn {
        margin: 20px 0 0;
        width: 100%;
        padding: 15px;
    }

    .loader-img {
        width: 80px;
        height: 80px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Experience Section (Best-in-Class Redesign) */
.experience-section {
    padding: 100px 0;
    background-color: var(--soft-parchment);
    position: relative;
    overflow: hidden;
}

.experience-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.experience-content {
    flex: 1;
}

.experience-content .tagline {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--logo-orange);
    font-weight: 800;
    margin-bottom: 25px;
}

.experience-section .section-title {
    margin-bottom: 30px;
    font-size: 52px;
}

.experience-section .section-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 650px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--logo-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--logo-green);
    color: var(--white);
    transform: translateY(-5px) rotate(15deg);
}

.feature-text h3 {
    font-size: 22px;
    color: var(--logo-navy);
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.feature-text p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

.experience-visual {
    flex: 1.1;
}

.vimeo-card {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    /* Custom tall cinematic aspect */
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(2, 48, 71, 0.15);
    background: var(--logo-navy);
}

.experience-vimeo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    /* Ensure it covers the tall container */
    height: 100%;
    transform: translate(-50%, -50%);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(2, 48, 71, 0.3));
    z-index: 2;
    pointer-events: none;
}

/* Tablet Experience */
@media (max-width: 1200px) {
    .experience-flex {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .experience-flex {
        flex-direction: column;
        text-align: center;
    }

    .experience-section .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vimeo-card {
        max-width: 600px;
        margin: 0 auto;
        padding-bottom: 100%;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 80px 0;
    }

    .experience-section .section-title {
        font-size: 38px;
    }

    .vimeo-card {
        border-radius: 20px;
    }
}

/* Mobile Experience BG */
@media (max-width: 768px) {
    .experience-bg-section {
        padding: 100px 0;
        min-height: 600px;
    }

    .experience-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-white {
        width: 250px;
    }
}

/* Packages Section Header */
.packages-section .container {
    padding-top: 0;
}

/* Universal Section Headers - Centered & Clean */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .tagline {
    display: block;
    font-size: 10px;
    letter-spacing: 8px;
    color: var(--logo-orange);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-header .section-title {
    font-size: 60px;
    line-height: 1.1;
    color: var(--logo-navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.header-line {
    width: 40px;
    /* Thorter as per screenshot */
    height: 4px;
    /* Thicker */
    background: var(--logo-orange);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Split Header Redesign */
.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    /* Alignment fix */
    margin-bottom: 80px;
    gap: 40px;
    position: relative;
    padding-left: 20px;
}

.section-header.split::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--logo-orange);
    border-radius: 10px;
}

.header-main {
    flex: 1;
}

.section-header.split .tagline {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--logo-orange);
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.section-header.split .section-title {
    font-size: 64px;
    /* Larger & more premium */
    line-height: 1.1;
    color: var(--logo-navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.header-info {
    flex: 1;
    max-width: 450px;
}

.header-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .section-header.split {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .section-header.split .section-title {
        font-size: 48px;
    }
}

/* Luxury Magazine Style Packages */
.packages-section {
    padding: 100px 0;
    background-color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 25px;
}

.package-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    cursor: pointer;
}

.package-image {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.1);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

/* Floating Price Pill */
.package-price {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(27, 54, 93, 0.1);
}

.package-price span.amount {
    color: var(--logo-navy);
    font-weight: 800;
    font-size: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.package-price span.currency {
    color: var(--logo-orange);
    font-weight: 700;
}

/* Content Area */
.package-content {
    padding: 0 10px;
}

.package-location {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--logo-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-location i {
    font-size: 14px;
}

.package-title {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--logo-navy);
    line-height: 1.2;
    margin-bottom: 20px;
    transition: var(--transition);
}

.package-card:hover .package-title {
    color: var(--logo-orange);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.rating-stars i {
    font-size: 12px;
    color: var(--logo-orange);
}

.review-count {
    font-size: 11px;
    font-weight: 700;
    color: #999;
}

.package-details {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(27, 54, 93, 0.08);
    position: relative;
}

.detail-item {
    font-size: 11px;
    font-weight: 700;
    color: var(--logo-navy);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--logo-blue);
    font-size: 14px;
}

/* Hidden CTA */
.package-card::after {
    content: 'EXPLORE ITINERARY →';
    position: absolute;
    bottom: -40px;
    left: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--logo-orange);
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover::after {
    bottom: -25px;
    opacity: 1;
}

.package-bookmark,
.package-status {
    display: none;
    /* Simplify for Magazine look */
}

/* Responsive Editorial */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .package-image {
        height: 350px;
    }

    .container {
        padding: 0 20px;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--soft-parchment);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-visual {
    flex: 1;
    position: relative;
}

.mini-slider {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    height: 500px;
    /* Fixed height for the square-ish look */
}

.mini-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.mini-slider img.active {
    opacity: 1;
}

.experience-years {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--logo-orange);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.experience-years .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-years .text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--logo-navy);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Destinations Section */
.destinations-section {
    padding: 100px 0 120px;
    background-color: var(--soft-parchment);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
}

.destinations-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.05);
}

.destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.destination-card:hover img {
    transform: scale(1.08);
}

.dest-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--logo-orange);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(27, 54, 93, 0.85), rgba(27, 54, 93, 0.4), transparent);
    color: var(--white);
    transition: var(--transition);
}

.destination-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.destination-card.large .destination-info h3 {
    font-size: 42px;
}

.destination-info p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Tablet Destinations */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
}

/* Mobile Destinations */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .destination-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Micro Modern Minimalist Footer */
.modern-footer {
    background-color: var(--logo-navy);
    padding: 40px 0 30px;
    color: var(--white);
    text-align: center;
}

.footer-brand-vogue {
    margin-bottom: 20px;
}

.footer-brand-vogue img {
    height: 30px;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

.brand-text {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.brand-tag {
    font-size: 8px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.footer-nav-minimal {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-nav-minimal a {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-nav-minimal a:hover {
    color: var(--logo-orange);
}

.footer-social-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.footer-social-minimal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-minimal a:hover {
    color: var(--logo-orange);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-nav-minimal {
        flex-direction: column;
        gap: 15px;
    }

    .brand-text {
        font-size: 20px;
    }
}

/* Interactive Map Section */
.map-section {
    padding: 120px 0;
    background-color: var(--white);
}

.map-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.map-wrapper {
    flex: 1.2;
    background: var(--soft-parchment);
    padding: 60px;
    border-radius: 40px;
}

.sri-lanka-map {
    width: 100%;
    height: auto;
    max-height: 600px;
}

.map-path {
    fill: #e8e2d4;
    stroke: var(--logo-navy);
    stroke-width: 1px;
    transition: var(--transition);
}

.marker {
    fill: var(--logo-orange);
    stroke: white;
    stroke-width: 2px;
    r: 6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker:hover {
    r: 10;
    fill: var(--logo-navy);
}

.marker.active {
    fill: var(--logo-navy);
    r: 10;
}

/* Leaflet Map Styling */
.map-real {
    padding: 0 !important;
    overflow: hidden;
    height: 600px;
    background: #f0f0f0;
}

#map-leaflet {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Leaflet Custom Pin Highlight */
.leaflet-div-icon {
    background: var(--logo-orange);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(247, 148, 29, 0.6);
    cursor: pointer;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(247, 148, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
    }
}

/* Tooltip Styling */
.leaflet-tooltip {
    background: var(--logo-navy);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
}

.leaflet-tooltip-left:before {
    border-left-color: var(--logo-navy);
}

.leaflet-tooltip-right:before {
    border-right-color: var(--logo-navy);
}

.map-details {
    flex: 1;
}

.location-card-expand {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(27, 54, 93, 0.1);
    transform: translateY(20px);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-image-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.card-info {
    padding: 40px;
}

.card-info h3 {
    font-size: 32px;
    color: var(--logo-navy);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.card-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .mini-slider {
        height: 350px;
    }

    .experience-years {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }

    .about-stats {
        justify-content: center;
        gap: 30px;
    }

    .map-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-wrapper {
        padding: 20px;
        width: 100%;
        height: 400px;
    }

    .map-real {
        height: 100%;
    }
}

/* Contact Section Styling */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--soft-parchment) 0%, #f9f6f2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.contact-info-panel .contact-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 30px 0 50px;
    max-width: 450px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-orange);
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-item:hover .icon-box {
    background: var(--logo-orange);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-item .text span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.contact-item .text strong {
    font-size: 18px;
    color: var(--logo-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-social {
    display: flex;
    gap: 20px;
}

.contact-social a {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-navy);
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--logo-navy);
    color: var(--white);
    border-color: var(--logo-navy);
    transform: translateY(-3px);
}

/* Form Styling */
.contact-form-panel {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(27, 54, 93, 0.08);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--logo-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 25px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--logo-navy);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--logo-orange);
    outline: none;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.05);
}

.btn-submit {
    margin-top: 20px;
    padding: 20px 40px;
    background: var(--logo-navy);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--logo-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(247, 148, 29, 0.2);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.btn-submit:hover i {
    transform: translate(5px, -5px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-panel {
        text-align: center;
    }

    .contact-info-panel .contact-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        align-items: center;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}