:root {
    --primary-color: #e65c00; /* Darker Orange */
    --primary-hover: #cc5200;
    --text-main: #222222;
    --text-light: #444444;
    --bg-light: #f0f0f0;
    --white: #ffffff;
    --black: #0a0a0a;
    --topbar-bg: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

main, footer, .top-bar {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050505;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5; /* Dim the video so the text is prominent */
    filter: saturate(1.2) contrast(1.1);
}

.preloader-overlay {
    text-align: center;
    position: relative;
    z-index: 1;
}

.preloader-text {
    font-family: 'DM Serif Display', serif;
    font-size: 8vw;
    color: #fff;
    margin: 0;
    text-shadow: 0 10px 20px rgba(0,0,0,0.8);
    animation: pulseText 2.5s infinite alternate;
}

.preloader-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: #fbc531; /* Golden accent */
    text-transform: uppercase;
    margin-top: -10px;
    opacity: 0;
    animation: fadeInSubtext 1s ease forwards 1s;
}

@keyframes pulseText {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes fadeInSubtext {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .header-container { justify-content: space-between !important; align-items: center; }
    .preloader-text {
        font-size: 18vw;
    }
    .preloader-subtext {
        font-size: 12px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--topbar-bg);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-content i {
    color: var(--primary-color);
    font-size: 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* Navigation */
.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav a:hover, .nav a.active {
    color: var(--primary-color);
}

/* CTA Button */
.btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 123, 37, 0.3);
}

.btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-container {
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Reduced from 600px for breathing room */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vignette gradient overlay to make text readable and add depth */
.video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.6) 100%), linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-overlay-text p {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.subtitle {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    font-family: 'DM Serif Display', serif; /* Or a specific serif font if available */
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #b0cbe8; /* Slightly darker pastel blue */
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-image {
    width: 100%;
    max-width: 250px;
    height: 200px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Drop shadow to make 3d image pop */
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    font-family: 'DM Serif Display', serif;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Packages Section - Bento Grid */
.packages {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.bento-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 123, 37, 0.25);
    z-index: 2;
}

.bento-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.6) 100%), linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.1) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.bento-card:hover .bento-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(255, 123, 37, 0.3) 100%);
}

.bento-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bento-main-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 40px;
}

.bento-main-card .bento-card-overlay {
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.7) 100%), linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);
}

.bento-main-card h3 {
    font-size: 46px;
    font-family: 'DM Serif Display', serif;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.bento-main-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 90%;
}

.bento-wide-card {
    grid-column: 3 / 5;
}

.bento-span-2 {
    grid-column: span 2;
}

.day-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.bento-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.tour-highlights {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.bento-card:hover .tour-highlights {
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    box-shadow: 0 10px 20px rgba(255, 123, 37, 0.3);
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.destination-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dest-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #e1b34e; /* Golden color */
    padding: 5px;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 20px rgba(225, 179, 78, 0.2);
    transition: transform 0.3s ease;
}

.destination-item:hover .dest-image-wrapper {
    transform: scale(1.05);
}

.dest-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dest-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--black);
    white-space: nowrap;
    border: 1px solid #f0f0f0;
}

.destination-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    font-family: 'DM Serif Display', serif;
}

.destination-item p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Trust Box */
.trust-box {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.trust-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.trust-box strong {
    color: var(--black);
}

/* Explore Section */
.explore-section {
    background-color: #3b3a36;
    background-image: url('sleeping_lord_narayana_by_tanumay_dbqs5az-fullview.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Lighter, neutral overlay to let colors pop */
    z-index: 1;
}

.explore-container {
    position: relative;
    z-index: 2;
}

.explore-content {
    max-width: 800px;
}

.explore-subtitle {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.explore-section h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'DM Serif Display', serif;
    background: linear-gradient(90deg, #ffd700 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.explore-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.explore-description .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.explore-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary-outline {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    text-decoration: none;
}

.btn-primary-outline:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.explore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.3s ease;
    cursor: default;
}

.tag:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

/* Colored Icons */
.icon-orange { 
    background: linear-gradient(135deg, #f97316, #ea580c); 
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); 
}
.icon-brown { 
    background: linear-gradient(135deg, #d97706, #b45309); 
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3); 
}
.icon-blue { 
    background: linear-gradient(135deg, #3b82f6, #2563eb); 
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); 
}
.icon-purple { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3); 
}
.icon-green { 
    background: linear-gradient(135deg, #10b981, #059669); 
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); 
}
.icon-black { 
    background: linear-gradient(135deg, #374151, #1f2937); 
    box-shadow: 0 10px 20px rgba(31, 41, 55, 0.3); 
}

.feature-content h3 {
    font-size: 19px;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 12px;
    color: var(--black);
}

.feature-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Testimonials Premium Section */
.testimonials-premium-section {
    padding: 120px 0;
    background: #0f1115;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.testimonials-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #ff7b25;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #e1b34e;
    bottom: -50px;
    right: 10%;
    animation-delay: -3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: #3b82f6;
    top: 30%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.testimonials-premium-container {
    position: relative;
    z-index: 1;
}

.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-white h2 {
    color: #ffffff;
    font-size: 48px;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 20px;
}

.text-light {
    color: #b0b3b8;
    font-size: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff7b25, #fbc531);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
}

.testimonials-carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 40px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 30px;
}

.premium-testimonial-card {
    width: 400px;
    max-width: 90vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
    perspective: 1000px;
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-testimonial-card:hover .card-glass {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    border-color: rgba(255, 123, 37, 0.5);
    box-shadow: 0 30px 50px rgba(255, 123, 37, 0.15);
}

.quote-mark {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 60px;
    color: rgba(255, 123, 37, 0.2);
    z-index: 0;
    transition: color 0.4s ease, transform 0.4s ease;
}

.premium-testimonial-card:hover .quote-mark {
    color: rgba(255, 123, 37, 0.8);
    transform: scale(1.1);
}

.rating-stars {
    color: #fbc531;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.rating-stars i {
    animation: starPulse 2s infinite;
}
.rating-stars i:nth-child(1) { animation-delay: 0.1s; }
.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.3s; }
.rating-stars i:nth-child(4) { animation-delay: 0.4s; }
.rating-stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #e4e6eb;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.pilgrim-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.pilgrim-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff7b25;
}

.pilgrim-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.pilgrim-info span {
    font-size: 13px;
    color: #a0a3a8;
}

/* Minimal Newsletter Section */
.newsletter-minimal-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.newsletter-minimal-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-minimal-content {
    flex: 1;
    max-width: 500px;
}

.minimal-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.newsletter-minimal-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.15;
    letter-spacing: -1px;
}

.newsletter-minimal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.newsletter-minimal-form-wrapper {
    flex: 1;
    max-width: 450px;
}

.newsletter-minimal-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-minimal-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-main);
    background-color: #f9fafb;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-minimal-form input:focus {
    border-color: var(--black);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.btn-minimal-subscribe {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-minimal-subscribe:hover {
    background-color: var(--primary-color);
}

.minimal-disclaimer {
    font-size: 12px;
    color: #9ca3af;
}

/* Footer Section */
.footer {
    position: relative;
    padding: 100px 0 60px;
    background-image: url('Mathura-Vrindavan-Spiritual-haven-for-devotees-Prem-Mandir-Image-3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e0e0e0;
    font-size: 14px;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.footer .container {
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 1360px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-logo .logo-text h3 {
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    line-height: 1;
    margin-bottom: 4px;
}

.footer-logo .logo-text p {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
}

.brand-desc {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #333;
    color: var(--white);
}

.social-links a.primary-social {
    background-color: var(--primary-color);
    color: var(--white);
}

.social-links a.primary-social:hover {
    background-color: var(--primary-hover);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'DM Serif Display', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.footer-gallery img:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.contact-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-col ul li a i {
    color: var(--primary-color);
    width: 16px;
}

.address-desc {
    color: #888;
    line-height: 1.6;
    margin-top: 25px;
    font-size: 13px;
}

.footer-seo-text {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
}

.footer-seo-text p {
    color: #666;
    font-size: 12px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Massive Brand Text */
.massive-brand-text {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 20px;
    overflow: hidden;
}

.massive-brand-text h2 {
    font-size: 18vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 2px;
    
    background: linear-gradient(
        90deg, 
        #bf953f, 
        #fcf6ba, 
        #b38728, 
        #fbf5b7, 
        #aa771c,
        #bf953f
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 10s ease infinite;
    
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .nav {
        display: none; /* Hidden by default on mobile, toggled via JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        padding: 20px 0;
        z-index: 99;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .header-container {
        position: relative; /* For the absolute nav */
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .video-wrapper {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .bento-tours-grid > .bento-main-card {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .bento-tours-grid > .bento-wide-card {
        grid-column: 1 / 3;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    
    .explore-section h2 {
        font-size: 42px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:nth-child(3n+2) {
        margin-top: 0;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .header-container { justify-content: space-between !important; align-items: center; }
    .services-grid {
        grid-template-columns: 1fr;
    }

    .bento-tours-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .bento-tours-grid > .bento-main-card {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-tours-grid > .bento-wide-card {
        grid-column: 1 / 2;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-box {
        padding: 30px 20px;
    }
    
    .explore-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .explore-actions a {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer .container {
        padding: 40px 25px;
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .hero-overlay-text p {
        font-size: 14px;
    }
    
    .btn-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .main-tour-card h3 {
        font-size: 32px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-section h2 {
        font-size: 36px;
    }
    
    .explore-description {
        font-size: 15px;
    }
    
    .explore-section {
        padding: 60px 0;
    }
    
    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =========================================
   Mobile Responsiveness Additions
   ========================================= */

@media (max-width: 1024px) {
    .bento-tours-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-main-card { grid-column: 1 / 3; }
    .bento-wide-card { grid-column: 1 / 3; }
    .bento-span-2 { grid-column: 1 / 3; }
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .header-container { justify-content: space-between !important; align-items: center; }
    .header-container { flex-direction: row; gap: 0; text-align: left; }
    
    .section-header h2 { font-size: 28px; }
    .explore-section h2 { font-size: 32px; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .bento-tours-grid { grid-template-columns: 1fr; }
    .bento-main-card { grid-column: 1 / -1; }
    .bento-wide-card { grid-column: 1 / -1; }
    .bento-span-2 { grid-column: 1 / -1; }
    
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-gallery { justify-content: center; }
    
    .hero-overlay-text p { font-size: 14px; }
    .massive-brand-text h2 { font-size: 15vw; }
    .video-wrapper { height: 350px; }
}

@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .nav a { font-size: 13px; padding: 5px 8px; }
    .btn-cta { font-size: 13px; padding: 8px 16px; }
}


/* =========================================
   PC Animations (Scroll Reveals)
   ========================================= */

@media (min-width: 769px) {
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1), opacity 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1), opacity 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1), opacity 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }
    
    .reveal-zoom {
        opacity: 0;
        transform: scale(0.9);
        transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1), opacity 0.8s cubic-bezier(0.5, 0, 0, 1);
    }
    
    .reveal-zoom.active {
        opacity: 1;
        transform: scale(1);
    }

    /* Stagger delays for children */
    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    .stagger-5 { transition-delay: 0.5s; }
    .stagger-6 { transition-delay: 0.6s; }
}


/* =========================================
   Enhanced Hover Animations
   ========================================= */

/* Navigation Links */
.nav a {
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav a:hover::after, .nav a.active::after {
    width: 100%;
}

/* Logo Hover */
.logo {
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.03);
}

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(230, 92, 0, 0.15); /* Orange tinted shadow */
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    transition: all 0.3s ease;
}

/* Destination Items */
.destination-item .dest-image-wrapper {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.destination-item:hover .dest-image-wrapper {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(230, 92, 0, 0.3);
}
.destination-item h4 {
    transition: color 0.3s ease;
}
.destination-item:hover h4 {
    color: var(--primary-color);
}

/* Bento Cards (Tours) */
.bento-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(230, 92, 0, 0.3);
}
.bento-card-overlay {
    transition: all 0.5s ease;
}

/* Buttons */
.btn-cta, .btn-primary-outline, .btn-white {
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.4);
    filter: brightness(1.1);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}
.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.3);
}

/* Footer Links */
.footer-col ul li a {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer-col ul li a:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Social Links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonial Cards */
.premium-testimonial-card, .review-card {
    transition: all 0.4s ease;
}
.premium-testimonial-card:hover, .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.premium-testimonial-card:hover .quote-mark {
    color: var(--primary-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Contact Panels */
.contact-info-panel, .contact-form-panel {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-info-panel:hover, .contact-form-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}




/* =========================================
   Write Reveal Animation
   ========================================= */

.write-reveal {
    -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(to right, black 100%, transparent 100%);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    transition: -webkit-mask-size 7s cubic-bezier(0.25, 1, 0.5, 1), mask-size 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.write-reveal.active {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}


 / *   D e s t i n a t i o n   P a g e s   S t y l e s   * / 
 . d e s t - h e r o   {   p o s i t i o n :   r e l a t i v e ;   p a d d i n g :   1 2 0 p x   0 ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   c o l o r :   w h i t e ;   m a r g i n - t o p :   8 0 p x ;   } 
 . d e s t - h e r o - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   } 
 . d e s t - h e r o - c o n t e n t   {   p o s i t i o n :   r e l a t i v e ;   z - i n d e x :   1 ;   t e x t - a l i g n :   c e n t e r ;   } 
 . d e s t - h e r o - c o n t e n t   h 1   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   4 r e m ;   m a r g i n :   1 0 p x   0 ;   } 
 . d e s t - a b o u t   {   p a d d i n g :   8 0 p x   0 ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . a b o u t - c a r d   {   b a c k g r o u n d :   w h i t e ;   p a d d i n g :   4 0 p x ;   b o r d e r - r a d i u s :   2 0 p x ;   b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   t e x t - a l i g n :   c e n t e r ;   m a x - w i d t h :   8 0 0 p x ;   m a r g i n :   0   a u t o ;   } 
 . a b o u t - c a r d   h 2   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a b o u t - c a r d   p   {   c o l o r :   # 5 5 5 ;   l i n e - h e i g h t :   1 . 8 ;   m a r g i n - b o t t o m :   3 0 p x ;   f o n t - s i z e :   1 . 1 r e m ;   } 
 . d e s t - s i t e s   {   p a d d i n g :   8 0 p x   0 ;   } 
 . s i t e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;   g a p :   3 0 p x ;   m a r g i n - t o p :   4 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 . s i t e - c a r d   {   b a c k g r o u n d :   w h i t e ;   b o r d e r - r a d i u s :   1 5 p x ;   o v e r f l o w :   h i d d e n ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 . s i t e - c a r d   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   2 5 0 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . s i t e - c a r d - c o n t e n t   {   p a d d i n g :   2 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   h 4   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   1 . 2 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   p   {   c o l o r :   # 7 7 7 ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . b o t t o m - a c t i o n   {   m a r g i n :   6 0 p x   0 ;   t e x t - a l i g n :   c e n t e r ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   2 0 p x ;   } 
 . c e n t e r - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   } 
 
 
 
 / *   E n h a n c e m e n t s   f o r   s m o o t h e r   U I   * / 
 h t m l   {   s c r o l l - b e h a v i o r :   s m o o t h ;   } 
 . s i t e - c a r d   {   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ,   b o x - s h a d o w   0 . 4 s   e a s e ;   } 
 / *   D e s t i n a t i o n   P a g e s   S t y l e s   * / 
 . d e s t - h e r o   {   p o s i t i o n :   r e l a t i v e ;   p a d d i n g :   1 2 0 p x   0 ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   c o l o r :   w h i t e ;   m a r g i n - t o p :   8 0 p x ;   } 
 . d e s t - h e r o - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   } 
 . d e s t - h e r o - c o n t e n t   {   p o s i t i o n :   r e l a t i v e ;   z - i n d e x :   1 ;   t e x t - a l i g n :   c e n t e r ;   } 
 . d e s t - h e r o - c o n t e n t   h 1   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   4 r e m ;   m a r g i n :   1 0 p x   0 ;   } 
 . d e s t - a b o u t   {   p a d d i n g :   8 0 p x   0 ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . a b o u t - c a r d   {   b a c k g r o u n d :   w h i t e ;   p a d d i n g :   4 0 p x ;   b o r d e r - r a d i u s :   2 0 p x ;   b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   t e x t - a l i g n :   c e n t e r ;   m a x - w i d t h :   8 0 0 p x ;   m a r g i n :   0   a u t o ;   } 
 . a b o u t - c a r d   h 2   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a b o u t - c a r d   p   {   c o l o r :   # 5 5 5 ;   l i n e - h e i g h t :   1 . 8 ;   m a r g i n - b o t t o m :   3 0 p x ;   f o n t - s i z e :   1 . 1 r e m ;   } 
 . d e s t - s i t e s   {   p a d d i n g :   8 0 p x   0 ;   } 
 . s i t e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;   g a p :   3 0 p x ;   m a r g i n - t o p :   4 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 . s i t e - c a r d   {   b a c k g r o u n d :   w h i t e ;   b o r d e r - r a d i u s :   1 5 p x ;   o v e r f l o w :   h i d d e n ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 . s i t e - c a r d   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   2 5 0 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . s i t e - c a r d - c o n t e n t   {   p a d d i n g :   2 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   h 4   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   1 . 2 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   p   {   c o l o r :   # 7 7 7 ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . b o t t o m - a c t i o n   {   m a r g i n :   6 0 p x   0 ;   t e x t - a l i g n :   c e n t e r ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   2 0 p x ;   } 
 . c e n t e r - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   } 
 
 
 
 / *   E n h a n c e m e n t s   f o r   s m o o t h e r   U I   * / 
 h t m l   {   s c r o l l - b e h a v i o r :   s m o o t h ;   } 
 . s i t e - c a r d   {   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ,   b o x - s h a d o w   0 . 4 s   e a s e ;   } 
 . s i t e - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 2 ) ;   } 
 . b t n - p r i m a r y ,   . b t n - s e c o n d a r y - o u t l i n e   {   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   d i s p l a y :   i n l i n e - b l o c k ;   } 
 . b t n - p r i m a r y : h o v e r   {   b a c k g r o u n d - c o l o r :   # e 6 5 c 0 0 ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 2 , 0 , 0 . 3 ) ;   } 
 . b t n - s e c o n d a r y - o u t l i n e : h o v e r   {   b a c k g r o u n d - c o l o r :   # F F 6 6 0 0 ;   c o l o r :   w h i t e ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 2 , 0 , 0 . 3 ) ;   } 
 . d e s t - h e r o   {   a n i m a t i o n :   f a d e I n   1 . 5 s   e a s e   f o r w a r d s ;   } 
 @ k e y f r a m e s   f a d e I n   {   f r o m   {   o p a c i t y :   0 ;   }   t o   {   o p a c t i y :   1 ;   }   } 

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transition: all 0.3s ease;
}

/* Destination Items */
.destination-item .dest-image-wrapper {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.destination-item:hover .dest-image-wrapper {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(230, 92, 0, 0.3);
}
.destination-item h4 {
    transition: color 0.3s ease;
}
.destination-item:hover h4 {
    color: var(--primary-color);
}

/* Bento Cards (Tours) */
.bento-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(230, 92, 0, 0.3);
}
.bento-card-overlay {
    transition: all 0.5s ease;
}

/* Buttons */
.btn-cta, .btn-primary-outline, .btn-white {
    transition: all 0.3s ease;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.4);
    filter: brightness(1.1);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}
.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 92, 0, 0.3);
}

/* Footer Links */
.footer-col ul li a {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer-col ul li a:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Social Links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonial Cards */
.premium-testimonial-card, .review-card {
    transition: all 0.4s ease;
}
.premium-testimonial-card:hover, .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.premium-testimonial-card:hover .quote-mark {
    color: var(--primary-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Contact Panels */
.contact-info-panel, .contact-form-panel {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-info-panel:hover, .contact-form-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}




/* =========================================
   Write Reveal Animation
   ========================================= */

.write-reveal {
    -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(to right, black 100%, transparent 100%);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    transition: -webkit-mask-size 7s cubic-bezier(0.25, 1, 0.5, 1), mask-size 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.write-reveal.active {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}


 / *   D e s t i n a t i o n   P a g e s   S t y l e s   * / 
 . d e s t - h e r o   {   p o s i t i o n :   r e l a t i v e ;   p a d d i n g :   1 2 0 p x   0 ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   c o l o r :   w h i t e ;   m a r g i n - t o p :   8 0 p x ;   } 
 . d e s t - h e r o - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   } 
 . d e s t - h e r o - c o n t e n t   {   p o s i t i o n :   r e l a t i v e ;   z - i n d e x :   1 ;   t e x t - a l i g n :   c e n t e r ;   } 
 . d e s t - h e r o - c o n t e n t   h 1   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   4 r e m ;   m a r g i n :   1 0 p x   0 ;   } 
 . d e s t - a b o u t   {   p a d d i n g :   8 0 p x   0 ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . a b o u t - c a r d   {   b a c k g r o u n d :   w h i t e ;   p a d d i n g :   4 0 p x ;   b o r d e r - r a d i u s :   2 0 p x ;   b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   t e x t - a l i g n :   c e n t e r ;   m a x - w i d t h :   8 0 0 p x ;   m a r g i n :   0   a u t o ;   } 
 . a b o u t - c a r d   h 2   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a b o u t - c a r d   p   {   c o l o r :   # 5 5 5 ;   l i n e - h e i g h t :   1 . 8 ;   m a r g i n - b o t t o m :   3 0 p x ;   f o n t - s i z e :   1 . 1 r e m ;   } 
 . d e s t - s i t e s   {   p a d d i n g :   8 0 p x   0 ;   } 
 . s i t e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;   g a p :   3 0 p x ;   m a r g i n - t o p :   4 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 . s i t e - c a r d   {   b a c k g r o u n d :   w h i t e ;   b o r d e r - r a d i u s :   1 5 p x ;   o v e r f l o w :   h i d d e n ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 . s i t e - c a r d   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   2 5 0 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . s i t e - c a r d - c o n t e n t   {   p a d d i n g :   2 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   h 4   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   1 . 2 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   p   {   c o l o r :   # 7 7 7 ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . b o t t o m - a c t i o n   {   m a r g i n :   6 0 p x   0 ;   t e x t - a l i g n :   c e n t e r ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   2 0 p x ;   } 
 . c e n t e r - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   } 
 
 
 
 / *   E n h a n c e m e n t s   f o r   s m o o t h e r   U I   * / 
 h t m l   {   s c r o l l - b e h a v i o r :   s m o o t h ;   } 
 . s i t e - c a r d   {   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ,   b o x - s h a d o w   0 . 4 s   e a s e ;   } 
 / *   D e s t i n a t i o n   P a g e s   S t y l e s   * / 
 . d e s t - h e r o   {   p o s i t i o n :   r e l a t i v e ;   p a d d i n g :   1 2 0 p x   0 ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   c o l o r :   w h i t e ;   m a r g i n - t o p :   8 0 p x ;   } 
 . d e s t - h e r o - o v e r l a y   {   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   } 
 . d e s t - h e r o - c o n t e n t   {   p o s i t i o n :   r e l a t i v e ;   z - i n d e x :   1 ;   t e x t - a l i g n :   c e n t e r ;   } 
 . d e s t - h e r o - c o n t e n t   h 1   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   4 r e m ;   m a r g i n :   1 0 p x   0 ;   } 
 . d e s t - a b o u t   {   p a d d i n g :   8 0 p x   0 ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . a b o u t - c a r d   {   b a c k g r o u n d :   w h i t e ;   p a d d i n g :   4 0 p x ;   b o r d e r - r a d i u s :   2 0 p x ;   b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   t e x t - a l i g n :   c e n t e r ;   m a x - w i d t h :   8 0 0 p x ;   m a r g i n :   0   a u t o ;   } 
 . a b o u t - c a r d   h 2   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a b o u t - c a r d   p   {   c o l o r :   # 5 5 5 ;   l i n e - h e i g h t :   1 . 8 ;   m a r g i n - b o t t o m :   3 0 p x ;   f o n t - s i z e :   1 . 1 r e m ;   } 
 . d e s t - s i t e s   {   p a d d i n g :   8 0 p x   0 ;   } 
 . s i t e s - g r i d   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;   g a p :   3 0 p x ;   m a r g i n - t o p :   4 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 . s i t e - c a r d   {   b a c k g r o u n d :   w h i t e ;   b o r d e r - r a d i u s :   1 5 p x ;   o v e r f l o w :   h i d d e n ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 . s i t e - c a r d   i m g   {   w i d t h :   1 0 0 % ;   h e i g h t :   2 5 0 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . s i t e - c a r d - c o n t e n t   {   p a d d i n g :   2 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   h 4   {   f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ;   f o n t - s i z e :   1 . 2 r e m ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . s i t e - c a r d - c o n t e n t   p   {   c o l o r :   # 7 7 7 ;   f o n t - s i z e :   0 . 9 r e m ;   } 
 . b o t t o m - a c t i o n   {   m a r g i n :   6 0 p x   0 ;   t e x t - a l i g n :   c e n t e r ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   2 0 p x ;   } 
 . c e n t e r - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   } 
 
 
 
 / *   E n h a n c e m e n t s   f o r   s m o o t h e r   U I   * / 
 h t m l   {   s c r o l l - b e h a v i o r :   s m o o t h ;   } 
 . s i t e - c a r d   {   t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ,   b o x - s h a d o w   0 . 4 s   e a s e ;   } 
 . s i t e - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   b o x - s h a d o w :   0   1 5 p x   4 0 p x   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 2 ) ;   } 
 . b t n - p r i m a r y ,   . b t n - s e c o n d a r y - o u t l i n e   {   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   d i s p l a y :   i n l i n e - b l o c k ;   } 
 . b t n - p r i m a r y : h o v e r   {   b a c k g r o u n d - c o l o r :   # e 6 5 c 0 0 ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 2 , 0 , 0 . 3 ) ;   } 
 . b t n - s e c o n d a r y - o u t l i n e : h o v e r   {   b a c k g r o u n d - c o l o r :   # F F 6 6 0 0 ;   c o l o r :   w h i t e ;   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 2 , 0 , 0 . 3 ) ;   } 
 . d e s t - h e r o   {   a n i m a t i o n :   f a d e I n   1 . 5 s   e a s e   f o r w a r d s ;   } 
 @ k e y f r a m e s   f a d e I n   {   f r o m   {   o p a c i t y :   0 ;   }   t o   {   o p a c t i y :   1 ;   }   } 

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  color: #FFF;
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Inquiry Popup Modal */
.popup-modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(5px);
}

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

.popup-content {
  background-color: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #FF6600;
}

.popup-image {
  width: 45%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.popup-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.popup-image-overlay h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  margin: 0;
}

.popup-form-container {
  width: 55%;
  padding: 40px;
  background: #fdfaf6;
}

.popup-form-container h2 {
  color: #333;
  margin-bottom: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
}

.popup-form-container p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

#popupWhatsappForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#popupWhatsappForm input,
#popupWhatsappForm select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
}

#popupWhatsappForm input:focus,
#popupWhatsappForm select:focus {
  outline: none;
  border-color: #FF6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.btn-whatsapp-submit {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-whatsapp-submit:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/* Responsive Popup */
@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .header-container { justify-content: space-between !important; align-items: center; }
  .popup-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup-image {
    width: 100%;
    height: 200px;
  }
  .popup-form-container {
    width: 100%;
    padding: 30px 20px;
  }
  .close-popup {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
}

/* Premium Gradient Hero for Destination Pages */
.dest-hero {
    position: relative !important;
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #111111 0%, #2b1104 100%) !important;
    color: white !important;
    margin-top: 80px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2) !important;
}

.dest-hero-overlay {
    display: none !important;
}

.dest-hero-content {
    max-width: 800px;
}

.dest-hero-content h1 {
    font-family: 'Inter', sans-serif !important;
    font-size: 4rem !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    text-shadow: none !important;
    color: #ffffff !important;
    letter-spacing: -1px !important;
}

.dest-hero-content p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.25rem !important;
    color: #cccccc !important;
    font-weight: 300 !important;
    margin: 0 !important;
}

.dest-hero-content .subtitle {
    color: #FF6600 !important;
    letter-spacing: 3px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
    background: rgba(255, 102, 0, 0.15) !important;
    padding: 6px 16px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

/* ==========================================================================
   Premium Destination Page Styling Overrides
   ========================================================================== */

/* Overlap the 'About' card slightly over the hero for a modern look */
.dest-hero {
    padding-bottom: 120px !important;
}

.dest-about-container {
    position: relative;
    z-index: 10;
}

.about-card {
    padding: 60px 50px !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transform: translateY(-60px);
    background: #ffffff !important;
}

.about-card h2 {
    font-family: 'DM Serif Display', serif !important;
    font-size: 3.2rem !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    letter-spacing: -0.5px !important;
}

.about-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem !important;
    color: #555555 !important;
    line-height: 1.9 !important;
    font-weight: 300 !important;
}

/* Premium Site Cards (Bento style grid) */
.dest-sites {
    padding-top: 0 !important; /* Adjusted because about-card overlaps */
}

.sites-grid {
    gap: 35px !important;
}

.site-card {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column;
}

.site-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 45px rgba(255, 102, 0, 0.15) !important;
}

.site-card img {
    height: 300px !important;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.site-card:hover img {
    transform: scale(1.08) !important;
}

.site-card-content {
    padding: 35px 30px !important;
    background: white;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-card-content h4 {
    font-family: 'DM Serif Display', serif !important;
    font-size: 1.7rem !important;
    color: #111111 !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

.site-card-content p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    color: #666666 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Section Headers */
.center-header h2 {
    font-family: 'DM Serif Display', serif !important;
    letter-spacing: -1px !important;
}
.center-header .subtitle {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 3px !important;
}

/* Premium Bottom Action Buttons */
.bottom-action .btn-primary, 
.bottom-action .btn-secondary-outline,
.about-card .btn-primary {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 16px 35px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.bottom-action .btn-secondary-outline:hover {
    background: #FF6600 !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.25) !important;
}

}

/* ==========================================================================
   Fix Bento Card (Packages) Hover Effect
   ========================================================================== */
.bento-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease !important;
}

.bento-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    z-index: 2;
}

/* Remove the aggressive orange overlay on hover, make it just a nice smooth darkening */
.bento-card:hover .bento-card-overlay {
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.7) 100%), linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.2) 100%) !important;
}

.bento-main-card:hover .bento-card-overlay {
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.8) 100%), linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%) !important;
}



@media (max-width: 768px) {
    .newsletter-minimal-section {
        padding: 60px 0;
    }
    .newsletter-minimal-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .newsletter-minimal-content h2 {
        font-size: 28px;
    }
    .newsletter-minimal-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .newsletter-minimal-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .newsletter-minimal-form input {
        width: 100%;
        box-sizing: border-box;
    }
    .btn-minimal-subscribe {
        width: 100%;
    }
}
