:root {
    --primary: #537aa2;
    /* Deep Teal (Primary) */
    --primary-dark: #1E434F;
    --primary-light: #537aa2;
    --secondary: #f7973b;
    --secondary-light: #E68A5C;
    --text-dark: #1A1A1A;
    --text-light: #F8F8F8;
    --bg-light: #FFFBF5;
    --bg-dark: #0F1419;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 99999;
}

.phone {
    border-radius: 28%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 167px;
    left: 20px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1000;
    transition: transform 0.3s ease;
    background: white;
}

.phone img {
    width: 100%;
}

.social-to-top {
    position: fixed;
    z-index: 9999;
    bottom: 17%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.social-to-top ul{
    list-style-type: none;
}

.social-to-top li a {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 20px 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    min-height: 160px;
    width: 45px;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.social-to-top .quickicons {
    background-color: #537aa2;
    border-radius: 0 0 0 10px;
}

/* Improved Header & Navigation */
.top-header {
    background: #0f172a;
    /* Premium deep dark */
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    font-size: 0.78rem;
    font-weight: 400;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.5px;
}

#header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1111;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.8s ease-out;
    background: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Top Header styles moved up */

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info a i {
    color: var(--secondary);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    background: rgb(255 255 255 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info a:hover {
    color: white;
}

.contact-info a:hover i {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(244, 162, 97, 0.3);
}

.social-links-top {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.social-links-top a {
    text-decoration: none;
    color: rgb(244 162 97);
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    background: rgb(255 255 255 / 23%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links-top a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.social-links-top a.social-fb:hover {
    background: #537aa2;
}

.social-links-top a.social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links-top a.social-tw:hover {
    background: #000000;
    /* X/Twitter Black */
}

/* Main Navigation */
nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#header.scrolled nav {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.main-logo {
    width: 100%;
    max-width: 190px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--secondary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 118, 66, 0.2);
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 118, 66, 0.3);
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    list-style: none;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    text-align: left;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background: rgba(42, 92, 107, 0.05);
    color: var(--secondary) !important;
    padding-left: 1.8rem;
}

.has-dropdown:hover>a {
    color: var(--secondary) !important;
}

.has-dropdown>a i {
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Banner with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    /* Offset for top-header + nav height to maintain overlay */
    background: var(--bg-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Premium dark gradient overlay for better text readability */
    background: linear-gradient(to bottom,
            rgba(15, 20, 25, 0.2) 0%,
            rgba(15, 20, 25, 0.6) 100%);
    z-index: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transform-origin: center;
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    color: white;
    display: flex;
    align-items: center;
}

.slide-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-content h1 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-btn.primary {
    background: var(--secondary);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(217, 118, 66, 0.3);
}

.hero-btn.primary:hover {
    background: var(--secondary);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 118, 66, 0.4);
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: scale(1.05) translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: white;
    animation: scrollMove 2s infinite ease-in-out;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(350%);
    }
}

.slider-dots {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

/* Small CTA */
.small-cta {
    padding: 4rem 0;
    background: transparent !important;
}

.cta-box-premium {
    background: linear-gradient(135deg, #ffffff 0%, rgba(217, 118, 66, 0.08) 100%);
    padding: 5rem 6%;
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(42, 92, 107, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-inner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.cta-text-side {
    flex: 1;
    text-align: left;
}

.cta-action-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-luxury-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(217, 118, 66, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.cta-text-side h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-text-side p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    max-width: 600px;
    line-height: 1.7;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.4rem 3.5rem;
    background: var(--secondary);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(42, 92, 107, 0.2);
}

.cta-button-premium:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(217, 118, 66, 0.3);
}

.cta-button-premium i {
    transition: transform 0.4s ease;
}

.cta-button-premium:hover i {
    transform: translateX(8px);
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 0.6;
}

.cta-trust-badge i {
    color: #FFD700;
}

/* Decorative Circles */
.cta-circle-1,
.cta-circle-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(217, 118, 66, 0.1);
    top: -150px;
    right: -50px;
}

.cta-circle-2 {
    width: 250px;
    height: 250px;
    background: rgba(42, 92, 107, 0.05);
    bottom: -120px;
    left: -50px;
}

@media (max-width: 991px) {
    .cta-inner-flex {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .cta-text-side {
        text-align: center;
    }

    .cta-text-side h3 {
        font-size: 2.5rem;
    }

    .cta-text-side p {
        margin: 0 auto;
    }
}

/* Destinations Section Refined */
.destinations {
    background: #fdfcfb;
    padding: 8rem 0;
}

.sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

/* Destinations Masonry Grid */
.destinations-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 2rem;
}

/* Destinations*/
.destinations-luxury {
    background: var(--bg-light);
    overflow: hidden;
}

.section-header-luxury h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0.5rem 0 1rem;
    letter-spacing: -1px;
}

.luxury-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.luxury-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border-bottom: 2px solid rgba(109, 151, 71, 0.2);
    padding-bottom: 5px;
}

.luxury-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    gap: 15px;
}

.luxury-tile:hover .tile-glass-content {
    transform: translateY(0);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tile-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.tile-glass-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: var(--secondary);
}

.tile-glass-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
}

.tile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
}

.tile-price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 0.95rem;
}

.tile-footer i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.destination-card-premium {
    position: relative;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.85;
}

.destination-card-premium:hover .dest-img {
    transform: scale(1.1);
    opacity: 1;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgb(0 0 0 / 52%) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 70%;
    transition: all 0.4s ease;
}

.dest-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.destination-card-premium:hover .dest-content {
    transform: translateY(0);
}

.dest-category {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.dest-content h3 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.dest-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dest-price {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.dest-btn-circle {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dest-btn-circle:hover {
    transform: rotate(-45deg) scale(1.1);
    background: white;
    color: var(--secondary) !important;
}

@media (max-width: 991px) {
    .destination-card-premium {
        height: 500px;
    }

    .dest-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .destination-card-premium {
        height: 450px;
    }

}

/* Luxury Editorial Layout */
.editorial-card-wrapper {
    position: relative;
    padding: 2rem;
}

.editorial-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.04;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
    z-index: 1;
}

.editorial-decor-text {
    position: absolute;
    right: -51px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 10px;
    color: var(--primary);
    opacity: 0.15;
    white-space: nowrap;
    pointer-events: none;
}

.right-staggered .editorial-decor-text {
    left: -80px;
    right: auto;
}

.right-staggered .editorial-number {
    left: auto;
    right: -20px;
}

.dest-content h3 span {
    color: var(--secondary);
}

@media (max-width: 991px) {

    .left-staggered,
    .right-staggered {
        transform: none;
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .editorial-number {
        font-size: 5rem;
    }

    .editorial-decor-text {
        display: none;
    }
}

/* Package Cards */
.packages-slider-container {
    overflow: hidden;
    padding: 1rem 0 3rem;
    position: relative;
}

.packages-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.package-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
}

@media (max-width: 1200px) {
    .package-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .package-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.package-item {
    padding: 10px;
}

.package-card-modern {
    background: transparent;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-img-box {
    position: relative;
    height: 280px;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
}

.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.package-card-modern:hover .package-img-box img {
    transform: scale(1.1);
}

.loc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rate-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffc107;
    border-radius: 50px;
    font-size: 0.7rem;
    z-index: 5;
    display: flex;
    gap: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-content-modern {
    background: #ffffff;
    margin: -60px 3px 20px;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.package-card-modern:hover .package-content-modern {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.package-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.package-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.info-item i {
    color: var(--primary);
}

.package-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 1.5rem;
}

.package-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.package-price-modern {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-value {
    font-size: 14px;
    font-weight: 900;
    color: #000;
}

.package-explore-btn {
    padding: 0.8rem 1.4rem;
    background: #d97642;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.package-explore-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.package-book-btn {
    padding: 0.8rem 1.4rem;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.package-book-btn:hover {
    background: #d97642;
    color: #fff;
    transform: translateY(-3px);
}

.package-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 480px) {
    .package-footer-modern {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem;
    }

    .package-buttons {
        width: 100%;
        flex-direction: column;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-content-modern {
        margin: -50px 15px 15px;
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.25rem;
    }

    .price-value {
        font-size: 1.2rem;
    }
}

/* Slider Nav Improvements */
.slider-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: none;
    background: #f8f9fa;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109, 151, 71, 0.2);
}

.package-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Modern CTA - Parallax & Glassmorphism */
.modern-cta {
    position: relative;
    padding: 5rem 0;
    background: url('../images/other/spiti-slider.webp') center/cover;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(5 5 5 / 41%) 0%, rgb(0 0 0 / 43%) 100%);
}

.cta-glass-card {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-trust-badge-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.cta-trust-badge-minimal i {
    color: #FFD700;
    font-size: 0.9rem;
}

.cta-trust-badge-minimal span {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-sub {
    display: block;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.cta-glass-card h2 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -2px;
}

.cta-glass-card h2 span {
    color: var(--secondary);
}

.cta-glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-btn {
    padding: 1.4rem 3.5rem;
    background: var(--secondary);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(217, 118, 66, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta-btn:hover {
    background: white;
    color: var(--secondary) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

.secondary-cta-btn {
    padding: 1.4rem 3.5rem;
    background: transparent;
    color: white !important;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .modern-cta {
        padding: 6rem 0;
        background-attachment: scroll;
    }

    .cta-glass-card {
        padding: 3rem 1.5rem;
        margin: 0 10px;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(109, 151, 71, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.08;
    transition: all 0.5s;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.15;
    transform: scale(1.2) rotate(-10deg);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a4a4a;
    position: relative;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.testimonial-card:hover .author-img {
    transform: scale(1.1);
    border-color: var(--primary);
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.4rem 0;
    font-weight: 500;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    background: rgba(76, 175, 80, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

.verified-badge i {
    font-size: 0.7rem;
}

.about-luxury {
    padding: 8rem 0;
    overflow: hidden;
    background: transparent;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(42, 92, 107, 0.15);
    position: relative;
    z-index: 2;
}

.about-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: rgba(217, 118, 66, 0.08);
    border-radius: 50px;
    transform: rotate(-15deg);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: center;
    min-width: 160px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary);
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.about-content h2 span {
    color: var(--secondary);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 118, 66, 0.1);
    color: var(--secondary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.8rem;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(42, 92, 107, 0.2);
}

.about-cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(217, 118, 66, 0.3);
}

@media (max-width: 991px) {
    .about-luxury {
        padding: 5rem 0;
    }

    .about-content h2 {
        font-size: 2.8rem;
        margin-top: 2rem;
    }

    .about-main-img {
        height: 400px;
    }

    .experience-badge {
        left: 0;
        bottom: 20px;
        padding: 1.5rem;
        width: 100%;
        max-width: 149px;
    }
}

/* Why Choose Us - Bento Grid Styles */
.why-choose-bento {
    background: linear-gradient(135deg, #0f172a 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.why-choose-bento.light-theme {
    background: #ffffff;
}

.why-choose-bento::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(109, 151, 71, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* Why Choose Us - Simple & Clean */
.why-choose-simple {
    background: #ffffff;
    padding: 8rem 0;
}

.sub-title-clean {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title-clean {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title-clean span {
    color: var(--secondary);
}

.title-separator {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 2rem;
}

.section-desc-clean {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-card-clean {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.why-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-wrapper-clean {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.why-card-clean:hover .icon-wrapper-clean {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.1);
}

.why-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.why-card-clean p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-title-clean {
        font-size: 2.5rem;
    }
}

/* Scroll Reveals */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer - Refined */
.footer {
    background: #0a0a0a;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
}

.footer-section h3 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-section .main-logo{
    border-radius: 10px;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 1rem;
}

.contact-list span {
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(109, 151, 71, 0.3);
}

.footer-bottom {
    font-size: 0.85rem;
}

.gt-logo {
    width: 100%;
    max-width: 110px;
}

/* Advanced Responsive Design */
@media (max-width: 1250px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }

    nav {
        padding: 1.2rem 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem;
        gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-dark);
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.8rem;
    }

    .nav-links a.nav-cta {
        text-align: center;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Dropdown Adjustments */
    .has-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
        /* Controlled by JS */
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        border: none;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown li a {
        padding: 0.8rem 1.5rem;
        border-bottom: none;
        font-size: 0.95rem;
    }

    .dropdown-toggle-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .has-dropdown.open .dropdown-toggle-btn {
        transform: rotate(180deg);
        background: var(--secondary);
        color: white;
    }
}

@media (max-width: 768px) {

    .destinations-grid,
    .packages-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 0;
        height: 80vh;
    }

    #header {
        padding: 1rem 5%;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .destinations-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Page Banner Component */
.page-banner {
    padding: 12rem 0 8rem;
    background: url('../images/other/kashmir-slider.webp') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

#spiti-banner {
    background-image: url('../images/spiti/spiti-banner.jpg');
}

#chandratal-banner {
    background-image: url('../images/spiti/chandratal-banner.jpg');
}

#spiti-kinnaur {
    background-image: url('../images/spiti/spiti-kinnaur.webp');
    background-position: center;
}

#spiti-bike-trip {
    background-image: url('../images/spiti/spiti-bike.jpg');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 33%), rgb(5 5 5 / 41%));
    z-index: 1;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "•";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .page-banner {
        padding: 10rem 0 6rem;
        margin-top: -80px;
    }

    .banner-title {
        font-size: 3rem;
    }
}

/* Sidebar Components - Theme Synced */
.sidebar-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.sidebar-form .form-control,
.sidebar-form .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.facility-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 0.8rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}

.facility-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.facility-item i {
    font-size: 1.1rem;
    color: var(--secondary);
    width: 25px;
    text-align: center;
}

.facility-item:hover i {
    color: white;
}

.facility-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sidebar CTA - Theme Synced */
.sidebar-cta {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.sidebar-cta .cta-content {
    position: relative;
    z-index: 2;
}

.sidebar-cta .badge {
    background: var(--bg-light);
    color: var(--secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
    border: 1px solid rgba(217, 118, 66, 0.2);
}

.sidebar-cta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.sidebar-cta h3 span {
    color: var(--secondary);
}

.sidebar-cta p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Mini Destination Slider */
.mini-dest-slider {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 15px;
}

.mini-dest-track {
    display: flex;
    flex-direction: column;
    animation: miniSlider 12s infinite ease-in-out;
}

.mini-dest-card {
    position: relative;
    flex: 0 0 180px;
    height: 180px;
}

.mini-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mini-dest-card:hover img {
    transform: scale(1.1);
}

.mini-dest-card .mini-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.mini-dest-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mini-dest-card a {
    color: var(--secondary-light);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
}

@keyframes miniSlider {

    0%,
    45% {
        transform: translateY(0);
    }

    50%,
    95% {
        transform: translateY(-180px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .sidebar-wrapper {
        margin-top: 50px;
        position: static;
    }
}

/* Premium Quote Form - Theme Synced */
.quote-widget {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.offer-badge {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(42, 92, 107, 0.1);
}

.price-on-request {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.quote-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.premium-quote-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-quote-form label i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.premium-quote-form .form-control,
.premium-quote-form .form-select {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0.9rem 1.2rem !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    font-weight: 500;
}

.premium-quote-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.quote-btn {
    background: var(--secondary) !important;
    color: white !important;
    border: none !important;
    padding: 1.1rem !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(217, 118, 66, 0.2);
}

.quote-btn:hover {
    background: var(--secondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 118, 66, 0.3);
}

.cta-contact-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cta-contact-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.cta-contact-item i {
    font-size: 1.1rem;
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.cta-contact-item:hover i {
    color: white;
}

.quote-footer p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* package deatils */
.package-hero-details {
    border-radius: 60px;
}

.package-overview {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.package-overview h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.package-highlights {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.package-highlights h3{
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.quick-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 118, 66, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid rgba(217, 118, 66, 0.15);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-badge:hover {
    transform: translateY(-2px);
    background: rgba(217, 118, 66, 0.1);
    box-shadow: 0 5px 15px rgba(217, 118, 66, 0.1);
}

.info-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.package-overview p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.highlight-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.package-gallery img {
    width: 100%;
    height: 100%;
}

/* Itinerary Timeline */
.itinerary-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 800;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 20px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    background: #fff;
    padding: 22px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: rgba(217, 118, 66, 0.03);
}

.accordion-button::after {
    filter: grayscale(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

.day-badge {
    background: var(--primary);
    text-align: center;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-right: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(42, 92, 107, 0.2);
}

.accordion-button:not(.collapsed) .day-badge {
    background: var(--secondary);
    box-shadow: 0 4px 10px rgba(217, 118, 66, 0.3);
}

.accordion-body {
    padding: 25px;
    background: #fff;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Inclusions / Exclusions */
.inc-exc-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(42, 92, 107, 0.05);
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.inc-exc-list li:last-child {
    margin-bottom: 0;
}

.inc-exc-list.inclusions li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #10b981;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.inc-exc-list.exclusions li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #ef4444;
    font-size: 1.2rem;
    background: rgba(239, 68, 68, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* pay-now page */
.payment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.payment-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(10, 48, 65, 0.05);
    height: 100%;
}

.payment-card-title {
    font-family: 'Montserrat', sans-serif;
    color: #0A3041;
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-card-title i {
    color: #f7973b;
}

/* Bank Details Styling */
.bank-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.bank-details-list li {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.bank-details-list span.label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bank-details-list span.value {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.pay-scanner {
    width: 100%;
    height: 250px;
    max-width: 250px;
    object-fit: cover;
}

.upi-section {
    background: rgba(10, 48, 65, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    border: 1px dashed rgba(10, 48, 65, 0.2);
}

.upi-id {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: #0A3041;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 15px 0;
}

/* Form Styling */
.form-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #444;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 48, 65, 0.1);
    border-color: #0A3041;
}

.submit-payment-btn {
    background: linear-gradient(135deg, #0A3041 0%, #154c66 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 48, 65, 0.2);
    color: #fff;
}

.payment-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}

.payment-security-badge i {
    color: #28a745;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .payment-card {
        padding: 25px;
    }
}

/* ==contact page== */
.contact-unified-block {
    max-width: 1100px;
    margin: 60px auto 100px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(10, 48, 65, 0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Left Side: Info */
.contact-info-side {
    background: var(--primary);
    color: #fff;
    padding: 60px 50px;
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(222, 102, 70, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.info-side-content {
    position: relative;
    z-index: 1;
}

.info-side-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.info-side-content p.subtitle {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-right: 20px;
    flex-shrink: 0;
}

.method-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.method-details p,
.method-details a {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--secondary);
}

/* Right Side: Form */
.contact-form-side {
    padding: 60px 50px;
    flex: 2 1 500px;
    background: #fff;
}

.form-side-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

/* Minimal Input Fields */
.custom-input-group {
    margin-bottom: 25px;
    position: relative;
}

.custom-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #333;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.custom-input::placeholder {
    color: transparent;
    /* We'll use the label as placeholder */
}

.custom-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    pointer-events: none;
}

.custom-input:focus~.custom-label,
.custom-input:not(:placeholder-shown)~.custom-label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

select.custom-input {
    color: #999;
    cursor: pointer;
}

select.custom-input:focus,
select.custom-input:valid {
    color: #333;
}

textarea.custom-input {
    resize: none;
    height: 40px;
    /* initial height */
}

textarea.custom-input:focus,
textarea.custom-input:not(:placeholder-shown) {
    height: 100px;
}

.submit-btn-minimal {
    background: var(--primary);
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn-minimal:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(222, 102, 70, 0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-unified-block {
        flex-direction: column;
        margin: 0 20px 80px;
    }

    .contact-info-side {
        padding: 50px 30px;
    }

    .contact-form-side {
        padding: 50px 30px;
    }
}

.contact-intro-pre {
    color: var(--secondary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.contact-intro-title {
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.contact-intro-desc {
    max-width: 700px;
    font-size: 1.1rem;
}

/* === privacy-policy=== */
.legal-content-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.legal-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    font-family: 'Outfit', sans-serif;
    color: #444;
    line-height: 1.8;
}

.legal-box h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0A3041;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #f7973b;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-box p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-box ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-box li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .legal-box {
        padding: 30px 20px;
    }

    .legal-box h2 {
        font-size: 1.6rem;
    }
}

/* =========================================================================
   PREMIUM PACKAGE UI OVERHAUL (Shimla Manali)
========================================================================= */

/* Drop Cap for Overview */
.overview-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.overview-content p:first-of-type::first-letter {
    float: left;
    font-size: 3.8rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 12px;
    padding-left: 3px;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Bento Grid Highlights */
.bento-highlight-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bento-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(42, 92, 107, 0.1);
}

.bento-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgb(217 118 66 / 14%);
    color: #d97642;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bento-highlight-card:hover .bento-icon-box {
    background: #d97642;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.bento-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
    margin-top: 8px;
}

/* Vertical Timeline Itinerary */

.itinerary-section h3{
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark) !important;
    font-size: 2rem;
    font-weight: 800;
}

.timeline-itinerary {
    position: relative;
    padding-left: 40px;
}

.timeline-itinerary::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: #d9764245;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--secondary);
    z-index: 2;
}

.timeline-header {
    padding: 20px 25px;
    background: #fdfdfd;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: background 0.3s ease;
}

.timeline-header:hover,
.timeline-header:not(.collapsed) {
    background: #f9fbf9;
}

.timeline-day-badge {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    flex-grow: 1;
}

.timeline-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.timeline-header:not(.collapsed) .timeline-toggle-icon {
    transform: rotate(180deg);
}

.timeline-body {
    padding: 25px;
    background: #fff;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

.timeline-list li::before {
    content: '\f111';
    /* FontAwesome dot */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.5rem;
    color: var(--secondary);
}

/* Premium Inclusions/Exclusions */
.premium-inc-exc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.premium-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.premium-box.inclusions {
    border-top: 4px solid #4CAF50;
    background: linear-gradient(to bottom, #f9fff9 0%, #fff 100%);
}

.premium-box.exclusions {
    border-top: 4px solid #f44336;
    background: linear-gradient(to bottom, #fff5f5 0%, #fff 100%);
}

.premium-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.premium-box h4 i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.premium-box.inclusions h4 i {
    color: #4CAF50;
}

.premium-box.exclusions h4 i {
    color: #f44336;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.premium-list li i {
    margin-top: 4px;
    margin-right: 12px;
}

.premium-list.inclusions li i {
    color: #4CAF50;
}

/* Premium Package Hero Details (Floating Style) */
.package-hero-details {
    background: #fff;
    border: none !important;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 30px 40px !important;
    margin-bottom: 40px !important;
    position: relative;
    z-index: 10;
}

.left-hero-details h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 8px !important;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(42, 92, 107, 0.05);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-badge i {
    color: var(--secondary);
    margin-right: 8px;
}

.hero-info-item {
    padding: 0 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-info-item:last-child {
    border-right: none;
    padding-right: 0;
}

.info-label {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.info-value span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.hero-reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.star-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.review-count {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

@media (max-width: 991px) {
    .package-hero-details {
        padding: 25px !important;
    }

    .hero-info-item {
        padding: 0 15px;
        border-right: none;
        margin-bottom: 15px;
    }

    .right-hero-details {
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
}

/* Bento Gallery */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    margin-bottom: 40px;
}

.bento-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.bento-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-gallery-item:hover img {
    transform: scale(1.1);
}

.bento-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .bento-gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* FAQ Section Styling */
.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

/* Why Book With Us - Package Detail Version */
.why-book-package-section {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-book-package-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.package-why-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.package-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 92, 107, 0.08);
    border-color: rgba(217, 118, 66, 0.2);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(217, 118, 66, 0.08);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.package-why-card:hover .why-icon-box {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.1);
}

.why-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .package-why-card {
        padding: 20px;
    }
}

/* About Page Specific Sections */
/* Minimalist Clean Mission & Vision */
.mission-vision-minimal {
    padding: 8rem 0;
    background: #ffffff;
}

.minimal-purpose-box {
    padding: 3rem;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.minimal-purpose-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--secondary);
    transition: all 0.6s ease;
}

.minimal-purpose-box:hover::before {
    height: 100%;
}

.minimal-purpose-box:hover {
    background: #fcfdfd;
}

.purpose-icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.minimal-purpose-box:hover .purpose-icon-circle {
    background: var(--secondary);
    color: white;
}

.minimal-purpose-box h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.minimal-purpose-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .minimal-purpose-box {
        padding: 2rem 1rem;
        border-bottom: 1px solid #eee;
    }
}

/* Values Grid */
.values-section {
    padding: 4rem 0;
    background: #fdfcfb;
}

.value-card-minimal {
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card-minimal:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.value-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(217, 118, 66, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.value-card-minimal h4 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.value-card-minimal p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--primary);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mission-card {
        padding: 3rem 2rem;
    }

    .mission-vision-section,
    .values-section {
        padding: 5rem 0;
    }
}

/* Visual Story Features Section */
.visual-story-section {
    padding: 8rem 0;
    background: #ffffff;
}

.story-grid {
    display: flex;
    gap: 30px;
}

.story-card {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 48, 65, 0.9) 100%);
    z-index: 1;
    transition: all 0.4s;
}

.story-card:hover {
    flex: 1.5;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.story-card:hover img {
    transform: scale(1.1);
}

.story-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    transition: all 0.5s;
}

.story-card:hover .story-card-content {
    transform: translateY(0);
}

.story-card-content i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.story-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.story-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.story-card:hover p {
    opacity: 1;
    height: auto;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .story-grid {
        flex-direction: column;
    }

    .story-card {
        height: 400px;
        flex: none !important;
    }

    .story-card-content p {
        opacity: 1;
        height: auto;
    }
}

/* Providing Section Styles (from about.php) */
.providing-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.providing-section .sub-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.providing-section .main-title {
    color: #1a1a1a;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    line-height: 1.2;
}

.feature-card-v2 {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
}

.icon-wrapper-v2 {
    width: 85px;
    height: 85px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(217, 118, 66, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icon-wrapper-v2::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    border-style: double;
    transition: all 0.4s ease;
}

.feature-card-v2:hover .icon-wrapper-v2 {
    background: var(--primary);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px rgba(42, 92, 107, 0.3);
}

.feature-card-v2:hover .icon-wrapper-v2::before {
    border-color: var(--primary);
    transform: scale(1.15);
    opacity: 0.6;
}

.feature-info-v2 h5 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-info-v2 p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .providing-section {
        padding: 60px 0;
    }

    .providing-section .main-title {
        margin-bottom: 40px;
    }

    .feature-card-v2 {
        margin-bottom: 30px;
    }
}

/* Why Choose Us V2 (from image) */
.why-choose-v2 {
    background: #fff;
    padding: 100px 0;
}

.why-choose-v2 .sub-title-orange {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
}

.why-choose-v2 .main-title-black {
    color: #1a1a1a;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -1px;
}

.why-card-v2 {
    background: var(--secondary);
    padding: 50px 30px;
    border-radius: 25px;
    color: white;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card-v2:hover {
    background: var(--primary);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(42, 92, 107, 0.3);
}

.why-card-v2:hover .icon-inner {
    color: var(--primary);
}

.icon-outer {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.icon-inner {
    color: var(--secondary);
    font-size: 2.5rem;
}

.dot-blue {
    width: 18px;
    height: 18px;
    background: #003060;
    border-radius: 50%;
    position: absolute;
    border: 3px solid white;
    z-index: 3;
}

.dot-blue.pos-1 {
    top: 5px;
    right: 15px;
}

.dot-blue.pos-2 {
    bottom: 5px;
    left: 15px;
}

.why-card-v2 h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.why-card-v2 p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Diagonal stripes effect */
.why-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Clean Small CTA V2 */
.small-cta-v2 {
    padding: 80px 0;
    background: #ffffff;
}

.cta-banner-v2 {
    background: var(--primary);
    padding: 70px;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(42, 92, 107, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-v2 .cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.cta-banner-v2 h2 {
    font-size: clamp(2.2rem, 5vw, 1.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-banner-v2 h2 span {
    color: var(--secondary);
}

.cta-banner-v2 p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.6;
}

.cta-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.4rem 3.5rem;
    background: white;
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-btn-v2:hover {
    background: var(--secondary);
    color: white !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(217, 118, 66, 0.4);
}

.cta-trust-v2 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    opacity: 0.7;
}

.cta-trust-v2 i {
    color: #FFD700;
    /* Gold for stars */
}

/* Decorative background elements */
.cta-banner-v2::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 118, 66, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .cta-banner-v2 {
        padding: 60px 30px;
        text-align: center;
    }

    .cta-banner-v2 h2 {
        font-size: 2.8rem;
    }

    .cta-banner-v2 p {
        margin: 0 auto 40px;
    }

    .cta-trust-v2 {
        justify-content: center;
    }
}

/* Quote Popup Styles */
.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 92, 107, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quote-popup.active .popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg);
}

.popup-header-v2 {
    text-align: center;
    margin-bottom: 30px;
}

.popup-header-v2 h3 {
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.popup-header-v2 p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.form-label-custom {
    font-weight: 700;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-label-custom i {
    color: var(--secondary);
    margin-right: 5px;
}

/* ===thanks page=== */
.thanks-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fbff;
}

.thanks-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(42, 92, 107, 0.1);
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.thanks-icon {
    width: 110px;
    height: 110px;
    background: var(--secondary, #d97642);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(217, 118, 66, 0.3);
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.thanks-card h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--primary, #2a5c6b);
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.thanks-card p {
    font-family: 'Outfit', sans-serif;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.back-home-btn {
    display: inline-block;
    background: var(--primary, #2a5c6b);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(42, 92, 107, 0.2);
}

.back-home-btn:hover {
    background: var(--secondary, #d97642);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 118, 66, 0.3);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thanks-section {
        padding: 60px 0;
        min-height: 70vh;
    }

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-card h1 {
        font-size: 2.2rem;
    }

    .thanks-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .popup-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .popup-header-v2 h3 {
        font-size: 1.5rem;
    }
}