/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


/* ================= BUTTONS ================= */
.btn-primary {
    background: linear-gradient(135deg, #c1121f, #780000);
    padding: 10px 22px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

/* subtle hover */
.btn-primary:hover {
    background: linear-gradient(135deg, #e63a47, #9a0e0e);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.6);
    padding: 10px 22px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
}
/* ================= HERO SECTION - SIMPLE WIDE U SHAPE AT BOTTOM ================= */
.hero {
    padding-top: 140px;
    position: relative;
    height: 60vh;
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: visible;
}

/* DARK GRADIENT ONLY ON TOP */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3),
        transparent
    );

    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/taj.jpg') center/cover no-repeat;
    z-index: 1;
    filter: brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Colored outline strip - slightly bigger U shape */
.hero-colored-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero-colored-curve svg {
    display: block;
    width: 100%;
    height: 260px;
}

/* Main clipping curve - Simple Wide U Shape (concave facing down) */
.hero-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 230px;
}

/* ================= HERO FEATURES (NO OUTER BOX) ================= */
.hero-features {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 1100px;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Each item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

/* Circle ONLY */
.icon-circle {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

/* Icon */
.icon-circle i {
    font-size: 24px;
    color: #780000;
    transition: all 0.3s ease;
}

/* Text BELOW circle */
.feature-item p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

/* 🔥 HOVER EFFECT (WHY-CHOOSE-US STYLE) */
.feature-item:hover .icon-circle {
    background: #780000;
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(120,0,0,0.2);
}

.feature-item:hover .icon-circle i {
    color: #ffffff;
}




/* ================= INTRO SECTION ================= */
.intro {
    padding: 120px 20px;
    background: #fdf0d5;
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: auto;
}

/* Small tag */
.intro-tag {
    font-size: 16px;
    letter-spacing: 3px;
    color: #780000;
    margin-bottom: 15px;
}

/* Heading */
.intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: #003049;
}

/* Paragraph */
.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* ================= JOURNEY SECTION ================= */
.journey-section {
    padding: 80px 20px;
    /* background: #fdf0d5; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-outer {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* Title outside - centered */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #003049;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #c1121f, #780000);
    border-radius: 4px;
    margin: 15px auto 0;
}

/* Inner glass card - perfectly centered */
.journey-glass-card {
    width: 100%;
    background: linear-gradient(145deg, #c1121f, #780000);
    border-radius: 50px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.4);
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glass overlay */
.journey-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* Map container - centered */
.journey-map {
    position: relative;
    width: 100%;
    height: 330px;
    margin: 0 auto;
}

/* SVG route - centered */
.route {
    width: 100%;
    height: 100%;
    display: block;
}

/* City container - all positioning relative to journey-map */
.city {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

/* City images - smaller and consistent */
.city img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 3px solid white;
}

/* Main cities - slightly larger than sub */
.city.main img {
    width: 75px;
    height: 75px;
}

/* Sub cities - smaller */
.city.sub img {
    width: 60px;
    height: 60px;
}

/* City name - exactly below image, white text */
.city span {
    display: block;
    margin-top: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

/* PERFECT POSITIONING ALONG THE CURVE - CENTERED */
.delhi {
    top: 75%;
    left: 10%;
}

.mathura {
    top: 55%;
    left: 25%;
}

.agra-main {
    bottom: -5%;
    left: 40%;
}

.fatehpur-sikri {
    bottom: 10%;
    right: 32%;
}

.amber-fort {
    top: 60%;
    right: 18%;
}

.jaipur {
    top: 70%;
    right: 0%;
}

/* Bottom text - centered, white */
.journote {
    margin-top: 30px;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Bus animation */
.route image {
    width: 50px;
    height: 50px;
}

/* RESPONSIVE DESIGN - maintaining center alignment */
@media (max-width: 1200px) {
    .journey-map {
        height: 350px;
    }
    
    .delhi { left: 8%; }
    .mathura { left: 23%; }
    .agra-main { left: 38%; }
    .fatehpur-sikri { left: 53%; }
    .amber-fort { left: 68%; }
    .jaipur { left: 83%; }
}

@media (max-width: 992px) {
    .journey-map {
        height: 320px;
    }
    
    .city.main img {
        width: 70px;
        height: 70px;
    }
    
    .city.sub img {
        width: 55px;
        height: 55px;
    }
    
    .city span {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    .delhi { left: 7%; }
    .mathura { left: 22%; }
    .agra-main { left: 40%; }
    .fatehpur-sikri { left: 58%; }
    .amber-fort { left: 77%; top: 65%; }
    .jaipur { left: 95%; }
}

@media (max-width: 768px) {
    .journey-glass-card {
        padding: 0px 20px 25px;
    }
    
    .journey-map {
        height: 280px;
    }
    
    .city.main img {
        width: 60px;
        height: 60px;
    }
    
    .city.sub img {
        width: 50px;
        height: 50px;
    }
    
    .city span {
        font-size: 0.8rem;
        padding: 2px 8px;
        margin-top: 5px;
    }
    
    .delhi { top: 76%; left: 6%; }
    .mathura { top: 56%; left: 20%; }
    .agra-main { top: 68%; left: 38%; }
    .fatehpur-sikri { top: 70%; left: 55%; }
    .amber-fort { top: 66%; left: 75%; }
    .jaipur { top: 71%; left: 95%; }
    
    .journote {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .route image {
    width: 80px;
    height: 80px;
}
}

@media (max-width: 576px) {
    .journey-map {
        height: 240px;
    }
    
    .city.main img {
        width: 40px;
        height: 40px;
    }
    
    .city.sub img {
        width: 32px;
        height: 32px;
    }
    
    .city span {
        font-size: 0.5rem;
        padding: 2px 6px;
    }
    
    .delhi { top: 67%; left: 2%; }
    .mathura { top: 57%; left: 18%; }
    .agra-main { top: 67%; left: 38%; }
    .fatehpur-sikri { top: 66%; left: 55%; }
    .amber-fort { top: 60%; left: 75%; }
    .jaipur { top: 67%; left: 95%; }
    
    .journote {
        font-size: 0.7rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
}


/* ================= WHY CHOOSE US - LIGHT THEME ================= */
.why-choose-section {
    padding: 100px 20px;
    background: #fdf0d5;
    position: relative;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header - matching your existing style */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #780000;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #003049;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #780000;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(193, 18, 31, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #c1121f;
    box-shadow: 0 15px 30px rgba(120, 0, 0, 0.08);
}

/* Featured Card */
.feature-card.featured {
    border: 1px solid #c1121f;
    background: linear-gradient(to bottom, #fff, #fffaf0);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #780000;
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 18, 31, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #780000;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(23%) sepia(94%) saturate(2606%) hue-rotate(348deg) brightness(90%) contrast(94%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

/* Content */
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #003049;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Feature Points */
.feature-points {
    list-style: none;
}

.feature-points li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-points li::before {
    content: "✦";
    color: #c1121f;
    margin-right: 8px;
    font-size: 12px;
}

/* ================= TRUST STRIP (PREMIUM REFINED) ================= */
.trust-strip {
    margin-top: 70px;
    padding: 35px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;

    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ================= TEXT STATS ================= */
.trust-stat {
    text-align: center;
    min-width: 120px;
}

.trust-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #780000;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.trust-stat p {
    font-size: 12px;
    color: #777;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ================= DIVIDER ================= */
.trust-divider {
    width: 1px;
    height: 45px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0,0,0,0.15),
        transparent
    );
}

/* ================= BRAND BLOCK ================= */
.trust-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

/* LOGOS (BIGGER + CLEAN) */
.trust-brand img {
    width: 90px;   /* increased */
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-brand:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* ================= STARS ================= */
.trust-stars {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.trust-stars img {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 2px 4px rgba(193, 18, 31, 0.25));
}

/* ================= TEXT ================= */
.trust-brand span {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .trust-strip {
        gap: 25px;
    }

    .trust-divider {
        display: none;
    }

    .trust-brand img {
        height: 28px;
    }
}

/* ================= RESPONSIVE ================= */

/* Desktop */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-row {
        gap: 40px;
        /* flex-wrap: wrap; */
    }
}

/* Tablet */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .stats-row {
        gap: 30px;
        padding: 30px 0;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .stats-row {
        /* flex-direction: column; */
        gap: 20px;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 400px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon img {
        width: 25px;
        height: 25px;
    }
    
    .feature-card h3 {
        font-size: 17px;
    }
    
    .feature-points li {
        font-size: 13px;
    }
}


/* Hero Features - One Row on All Screens (with smaller size on mobile) */
@media (max-width: 992px) {
    .hero-features {
        gap: 40px;
        bottom: 25px;
    }
    
    .icon-circle {
        width: 65px;
        height: 65px;
    }
    
    .icon-circle i {
        font-size: 23px;
    }
    
    .feature-item p {
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        gap: 28px;
        bottom: 20px;
        padding: 0 15px;
    }
    
    .icon-circle {
        width: 58px;
        height: 58px;
    }
    
    .icon-circle i {
        font-size: 21px;
    }
    
    .feature-item p {
        font-size: 12px;
    }
    
    .feature-item {
        min-width: 75px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        gap: 10px;
        bottom: 28px;
        flex-wrap: nowrap;
    }

    
    .icon-circle {
        width: 42px;
        height: 42px;
    }
    
    .icon-circle i {
        font-size: 19px;
    }
    
    .feature-item p {
        font-size: 10.5px;
    }
}

/* ================= GALLERY SLIDER (replace your old .gallery-grid + .gallery-item styles) ================= */
.gallery-section {
    padding: 80px 20px 150px;
    background: #ffffff;
}

.gallery-container {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

/* SLIDER CONTAINER */
.gallery-slider {
    margin-top: 50px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* TRACK - auto-scrolling */
.slider-track {
    display: flex;
    gap: 24px;
    animation: marquee 10s linear infinite;
    will-change: transform; /* high performance */
    transition: animation-play-state 0.4s ease;
}

/* INFINITE LOOP ANIMATION - slow & elegant */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* INDIVIDUAL SLIDE - landscape ratio */
.gallery-slide {
    flex: 0 0 320px;           /* width > height */
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-section h2{
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 12px;
    color: #003049;
}

/* Subtle zoom on hover (only works when paused) */
.gallery-slide:hover img {
    transform: scale(1.08);
}

/* PAUSE ON HOVER (any image or slider area) */
.gallery-slider:hover .slider-track {
    animation-play-state: paused;
}

/* RESPONSIVE - keeps landscape feel */
@media (max-width: 992px) {
    .gallery-slide {
        flex: 0 0 280px;
        height: 190px;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        flex: 0 0 240px;
        height: 170px;
    }
    .slider-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        flex: 0 0 260px;   /* still shows 1–2 images beautifully */
        height: 165px;
    }
}


        
        /* ================= PREMIUM TESTIMONIAL CAROUSEL SECTION ================= */
        .testimonials-section {
            padding: 100px 20px;
            background: #fdf0d5;
            position: relative;
            overflow: hidden;
        }

        /* subtle background pattern */
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(193,18,31,0.02) 0%, rgba(253,240,213,0) 70%);
            pointer-events: none;
        }

        .testimonials-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* header styling - FIXED: centered and stacked properly */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            font-size: 13px;
            letter-spacing: 3px;
            color: #780000;
            margin-bottom: 16px;
            display: inline-block;
            background: rgba(120, 0, 0, 0.08);
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 600;
        }

        .testimonials-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 20px;
            color: #003049;
            position: relative;
        }

        .testimonials-section h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #c1121f, #780000);
            border-radius: 4px;
        }

        .testimonial-sub {
            max-width: 680px;
            margin: 30px auto 0;
            color: #5a5a5a;
            font-size: 17px;
            line-height: 1.5;
        }

        /* ========= CAROUSEL STRUCTURE ========= */
        .carousel-wrapper {
            position: relative;
            margin-top: 40px;
            padding: 10px 0;
        }

        .testimonials-carousel {
            overflow: hidden;
            border-radius: 20px;
        }

        .carousel-track-container {
            overflow: hidden;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
        }

        /* testimonial card - clean, no images */
        .testimonial-card {
            flex: 0 0 calc(33.333% - 20px);
            background: rgba(255, 255, 255, 0.96);
            border-radius: 28px;
            padding: 36px 28px;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(193, 18, 31, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: auto;
            min-height: 320px;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 45px rgba(120, 0, 0, 0.12);
            border-color: rgba(193, 18, 31, 0.3);
            background: #ffffff;
        }

        /* quote icon */
        .quote-icon {
            font-size: 36px;
            color: #c1121f;
            opacity: 0.4;
            margin-bottom: 20px;
            line-height: 1;
        }

        .testimonial-card:hover .quote-icon {
            opacity: 0.7;
        }

        .quote-text {
            font-size: 16.5px;
            line-height: 1.65;
            color: #2c2c2c;
            font-weight: 450;
            margin-bottom: 28px;
            flex: 1;
            font-style: normal;
            letter-spacing: -0.2px;
        }

        /* star rating */
        .rating {
            margin-bottom: 22px;
            display: flex;
            gap: 4px;
            color: #f5b042;
            font-size: 14px;
        }

        .rating i {
            margin-right: 2px;
        }

        /* author block - name and place only (no image) */
        .author-block {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 18px;
            margin-top: 6px;
        }

        .author-name {
            font-weight: 700;
            font-size: 1rem;
            color: #003049;
            letter-spacing: -0.2px;
            display: block;
            margin-bottom: 4px;
        }

        .author-location {
            font-size: 12px;
            color: #780000;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .author-location i {
            font-size: 10px;
        }

        /* ========= NAVIGATION BUTTONS (round boxes) ========= */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .nav-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: white;
            border: 1px solid rgba(120, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-size: 20px;
            color: #780000;
        }

        .nav-btn:hover {
            background: #780000;
            color: white;
            border-color: #780000;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(120, 0, 0, 0.2);
        }

        .nav-btn:active {
            transform: scale(0.98);
        }

        /* autoplay indicator / pause button (optional small extra) */
        .autoplay-control {
            display: flex;
            justify-content: center;
            margin-top: 25px;
        }

        .autoplay-toggle {
            background: transparent;
            border: none;
            color: #780000;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(120, 0, 0, 0.08);
            transition: all 0.2s;
        }

        .autoplay-toggle:hover {
            background: rgba(120, 0, 0, 0.15);
        }

        /* dots indicator */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d4a373;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            width: 28px;
            border-radius: 20px;
            background: #780000;
        }

        /* ========= RESPONSIVE DESIGN ========= */
        @media (max-width: 1100px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 20px);
                padding: 30px 24px;
            }
            .quote-text {
                font-size: 15px;
            }
        }

        @media (max-width: 900px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
            }
            .testimonials-track {
                gap: 20px;
            }
            .testimonial-card {
                min-height: 300px;
            }
        }

        @media (max-width: 640px) {
            .testimonial-card {
                flex: 0 0 100%;
            }
            .testimonials-track {
                gap: 20px;
            }
            .testimonials-section {
                padding: 80px 16px;
            }
            .nav-btn {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }
            .section-tag {
                font-size: 11px;
            }
            .quote-text {
                font-size: 15px;
            }
        }

        /* animation for cards on load */
        .testimonial-card {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeSlideUp 0.5s ease forwards;
        }

        @keyframes fadeSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* stagger animation delay */
        .testimonial-card:nth-child(1) { animation-delay: 0.05s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.15s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(5) { animation-delay: 0.25s; }
        .testimonial-card:nth-child(6) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(7) { animation-delay: 0.35s; }
        .testimonial-card:nth-child(8) { animation-delay: 0.4s; }

        
/* ================= FINAL CTA ================= */
.final-cta {
    padding: 140px 20px;
    background: linear-gradient(135deg, #780000, #4a0000);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 54px);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-outline.large {
    padding: 14px 32px;
    font-size: 16px;
    border-color: rgba(255,255,255,0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .packages-grid,
    .why-grid,
    .gallery-grid,
    .testimonials-grid {
        gap: 25px;
    }

}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .journey-info {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .journey-map {
        height: 250px;
    }

    .point span {
        font-size: 12px;
    }

    .journey-info {
        gap: 20px;
    }

    .info-box {
        text-align: center;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .nav-container {
        padding: 20px 40px;
    }
}

@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .timeline {
        padding-left: 50px;
    }

    .year {
        left: -50px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 25px;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none; /* you can add mobile menu later */
    }

    .about-hero-content h1 {
        font-size: 48px;
    }

    section {
        padding: 100px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ================= IMPROVED PACKAGES SECTION ================= */

.packages-section {
    padding: 120px 20px;
    background: #ffffff;
    text-align: center;
}

.packages-container {
    max-width: 1300px;
    margin: auto;
}

.packages-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: #003049;
}

.section-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.09);
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(120, 0, 0, 0.15);
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}


.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #780000;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}


.package-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.package-content {
    padding: 30px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #003049;
    margin-bottom: 6px;
}

.duration {
    font-size: 15px;
    color: #780000;
    font-weight: 600;
    margin-bottom: 18px;
}

.package-features {
    list-style: none;
    margin-bottom: 15px;
    flex: 1;
}

.package-features li {
    font-size: 15.2px;
    color: #444;
    margin-bottom: 11px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    line-height: 1.4;
}

.package-features li i {
    color: #c1121f;
    font-size: 17px;
    margin-top: 3px;
}

.package-price {
    font-size: 18px;
    color: #333;
    margin: 12px 0 22px;
}

.package-price span {
    font-size: 28px;
    font-weight: 700;
    color: #780000;
}

.package-actions {
    display: flex;
    gap: 14px;
    margin-top: auto;
}

.package-card .btn-primary {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20ba5c;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .package-content {
        padding: 28px 24px 24px;
    }
}