:root {
    --primary: #faa916;
    --secondary: #afabb0;
    --accent: #faa916;
    /* Reusing Gold as accent */
    --dark: #1b1b1e;
    --light-bg: #f4f4f4;
    /* A bit darker than white to contrast with white cards */
    --white: #fbfffe;
    --black: #000000;
    --gradient-1: #faa916;
    --gradient-2: #faa916;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

body {
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styles */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

header.scrolled {
    background-color: rgba(27, 27, 30, 0.9);
    /* Carbon Black with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap */
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.9;
    display: inline-block;
    /* Ensure proper box sizing */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    /* Hide initially */
    transform-origin: center;
    /* Expand from center */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    /* Show full width */
}

/* Nav Button Style Override */
.nav-links .nav-btn {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 1;
    margin-left: 1rem;
}

.nav-links .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 169, 22, 0.4);
    color: var(--dark) !important;
}

.nav-links .nav-btn::after {
    display: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    outline: none;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Single Hero Section - Enhanced */
.hero-single {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-single:hover .hero-background {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-single .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1100px;
    padding: 3rem 2rem;
    animation: heroContentFadeIn 1.5s ease-out;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(250, 169, 22, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-single .hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow:
        0 3px 6px rgba(0, 0, 0, 0.9),
        0 6px 12px rgba(0, 0, 0, 0.7),
        0 10px 25px rgba(250, 169, 22, 0.4);
    letter-spacing: -1px;
    animation: titleSlideIn 1s ease-out 0.3s backwards;
    animation-fill-mode: forwards;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-single .hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 1);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: descSlideIn 1s ease-out 0.6s backwards;
    animation-fill-mode: forwards;
}

@keyframes descSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #ff9800 100%);
    color: var(--dark);
    border-radius: 50px;
    box-shadow:
        0 10px 30px rgba(250, 169, 22, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: btnFadeIn 1s ease-out 0.9s backwards;
    animation-fill-mode: forwards;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes btnFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-hero:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow:
        0 15px 45px rgba(250, 169, 22, 0.7),
        0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ff9800 0%, var(--primary) 100%);
}

/* Slick Dots Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--gradient-1);
    color: var(--dark);
    /* Gradient 1 has black at start so white text is OK, or maybe Gold? 
                            Wait, Gradient 1 is Black -> Gold. White text is fine on Black, maybe hard on Gold.
                            Let's keep it white for the Gradient button, but check hover. */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

/* Packages Section */
.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--dark);
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.package-card {
    background-size: cover;
    background-position: center;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

#packages .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 122, 255, 0.3), rgba(78, 205, 196, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

#packages .package-card:hover::before {
    opacity: 1;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-overlay {
    padding: 2.5rem 1.5rem;
}

.package-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.package-overlay p {
    margin-bottom: 1rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 122, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stars {
    color: #FFB800;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col:nth-child(2) {
    width: max-content;
    margin: 0 auto;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    margin-bottom: 0.8rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(10, 122, 255, 0.05);
    margin-top: 2rem;
    border-radius: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Additional Styles from other pages */

/* Tour Overview */
.tour-overview {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.tour-highlights {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.highlight-item {
    display: flex;
    margin-bottom: 1rem;
}

.highlight-icon {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 3px;
}

.price-box {
    background-color: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.price-box .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

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

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

/* Itinerary Section */
.itinerary-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.day-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.day-header {
    background-color: var(--dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-content {
    padding: 1.5rem;
}

.activity-section {
    margin-bottom: 1rem;
}

.activity-section h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.day-content ul {
    list-style-position: inside;
}

.day-content li {
    margin-bottom: 0.5rem;
}

.meal-plan {
    font-style: italic;
    color: var(--primary);
    margin-top: 1rem;
    font-weight: 500;
}

/* Inclusions & Exclusions */
.inclusion-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclusion-card,
.exclusion-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.inclusion-card h3,
.exclusion-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.inclusion-item,
.exclusion-item {
    display: flex;
    margin-bottom: 1rem;
}

.inclusion-icon {
    color: green;
    margin-right: 1rem;
}

.exclusion-icon {
    color: red;
    margin-right: 1rem;
}

/* Gallery Section */
.gallery-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Hotels Section */
.hotels-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hotel-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    /* Redefine grid for hotel details */
    height: auto;
    /* Override package card fixed height */
}

.hotel-image {
    height: 250px;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hotel-rating {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Page Banner (for Listing Pages) */
.page-banner {
    height: 40vh;
    padding-top: 100px;
    /* Account for fixed header */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 3.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Indian Tours Packages Grid Specifics */
.packages-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.package-info {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.package-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* Tour Page Specific Styles */
.tour-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slider-slide {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18, 38, 32, 0.9));
    padding: 2rem;
    color: var(--white);
}

.slider-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slider-overlay p {
    max-width: 600px;
}


/* Listing Page Package Cards (Indian Tours, etc.) */
.packages-section .package-card {
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    /* Override index styles if necessary */
    background-image: none !important;
}

.package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    /* Alignment Fixes */
    min-height: 3.5rem;
    /* Ensure 2 lines space reserved */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-info {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    /* Alignment Fixes */
    min-height: 4.5rem;
    /* Ensure 3 lines space reserved */
}

.package-info p {
    margin-bottom: 0.3rem;
}

.package-info i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* Ensure price and button are aligned at bottom */
.package-price {
    margin-top: auto;
    /* Inherit base styles */
}

@media (max-width: 992px) {

    .packages-container,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .tour-overview {
        grid-template-columns: 1fr;
    }

    .tour-highlights {
        position: static;
        margin-top: 2rem;
    }

    .inclusion-section {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hotel-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.2rem;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--white);
        z-index: 1001;
        background: rgba(0, 0, 0, 0.2);
        padding: 0.5rem;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:active {
        background: rgba(250, 169, 22, 0.3);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Single Hero Responsive */
    .hero-single .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-single .hero-content p {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {

    .hero,
    .hero-slider,
    .hero-slide,
    .hero-single {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    /* Single Hero Small Screen */
    .hero-single .hero-content h1 {
        font-size: 2rem;
    }

    .hero-single .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .packages-container,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Tour Package Page Redesign
   ========================================= */

/* Package Quick Info Bar */
.package-quick-info {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

.quick-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.info-price .info-value {
    font-size: 1.3rem;
}

.price-highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Package Overview Section */
.package-overview-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.overview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 122, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlights-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 122, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(10, 122, 255, 0.08);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Itinerary Section - Accordion Style */
.itinerary-section-new {
    padding: 4rem 0;
    background: var(--white);
}

.day-card-accordion {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day-card-accordion:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.day-header {
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.day-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
}

.day-header:hover {
    background: #252540;
}

.day-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.day-number {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.day-title {
    font-size: 1.3rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.day-card-accordion.active .toggle-icon {
    transform: rotate(180deg);
}

.day-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.day-card-accordion.active .day-content {
    max-height: 1000px;
    padding: 2rem;
}

.activity-block {
    margin-bottom: 1.5rem;
}

.activity-block h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-block h4 i {
    font-size: 1.1rem;
}

.activity-block p,
.activity-block ul {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.activity-block ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.activity-block li {
    margin-bottom: 0.5rem;
}

.meal-info {
    font-style: italic;
    color: var(--primary);
    margin-top: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meal-info i {
    font-size: 1rem;
}

/* Inclusions & Exclusions */
.inclusions-exclusions-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.inclusion-card-new,
.exclusion-card-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.inclusion-card-new:hover,
.exclusion-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.inclusion-card-new h3,
.exclusion-card-new h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inclusion-card-new h3 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.exclusion-card-new h3 i {
    color: #dc3545;
    font-size: 1.5rem;
}

.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li,
.exclusion-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

.inclusion-list li:last-child,
.exclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.exclusion-list li i {
    color: #dc3545;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Hotels Section */
.hotels-section-new {
    padding: 4rem 0;
    background: var(--white);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card-new {
    background-size: cover;
    background-position: center;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hotel-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 122, 255, 0.3), rgba(78, 205, 196, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
}

.hotel-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.hotel-card-new:hover::before {
    opacity: 1;
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card-new:hover .hotel-overlay {
    padding: 2.5rem 1.5rem;
}

.hotel-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hotel-rating {
    margin-bottom: 1rem;
}

.hotel-rating i {
    color: #FFB800;
    font-size: 0.9rem;
}

.hotel-overlay p {
    margin-bottom: 0.75rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.hotel-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0 !important;
}

/* Gallery Section */
.gallery-section-new {
    padding: 4rem 0;
    background: var(--light-bg);
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item-new {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-new:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-new:hover img {
    transform: scale(1.1);
}

/* Sticky Booking Bar */
.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-booking-bar.visible {
    transform: translateY(0);
}

.booking-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.booking-bar-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-bar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.booking-bar-price {
    font-size: 0.95rem;
    color: #666;
}

.booking-bar-price strong {
    font-size: 1.3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.booking-bar-actions {
    display: flex;
    gap: 1rem;
}

/* Responsive Styles for Tour Page */
@media (max-width: 992px) {
    .quick-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .quick-info-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
        background: rgba(10, 122, 255, 0.03);
        border-radius: 8px;
    }

    .overview-card {
        padding: 1.5rem;
    }

    .day-header {
        padding: 1rem 1.5rem;
    }

    .day-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .day-title {
        font-size: 1.1rem;
    }

    .day-card-accordion.active .day-content {
        padding: 1.5rem;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .booking-bar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-bar-actions {
        width: 100%;
        flex-direction: column;
    }

    .booking-bar-actions .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .package-overview-section,
    .itinerary-section-new,
    .inclusions-exclusions-section,
    .hotels-section-new,
    .gallery-section-new {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Timeline Itinerary Styles */
.timeline-section {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Vertical Center Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Left and Right containers */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* The circle markers */
.timeline-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    top: 20px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(10, 122, 255, 0.2);
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.timeline-item.right .timeline-marker {
    left: -20px;
}

.timeline-item:hover .timeline-marker {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Content Box */
.timeline-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 122, 255, 0.3);
}

/* Day Header in Content */
.timeline-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.timeline-day-title {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.timeline-day-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Content Details */
.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.timeline-detail-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 122, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-weight: 600;
}

.timeline-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-text ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.timeline-text ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 0.95rem;
}

.timeline-text ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Arrows */
.timeline-item.left .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: -10px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
    filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.05));
}

.timeline-item.right .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: -10px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {

    /* Place the timelime to the left */
    .timeline-container::after {
        left: 31px;
    }

    /* Full width containers */
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure all containers are right aligned relative to the line */
    .timeline-item.left,
    .timeline-item.right {
        left: 0%;
    }

    /* Fix markers */
    .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 11px;
        right: auto;
    }

    /* Fix arrows - all pointing left */
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--white) transparent transparent;
        filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
    }
}

/* Timeline Itinerary Styles - Redesigned with Images */
.timeline-section {
    padding: 4rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Vertical Center Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

/* Timeline Row - Flex container for Item + Image */
.timeline-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

/* Item Wrapper (Content side) */
.timeline-item {
    width: 45%;
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 2;
}

/* Image Wrapper (Image side) */
.timeline-image {
    width: 45%;
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.timeline-row:hover .timeline-image img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* The circle markers - Centered absolutely relative to the row */
.timeline-marker {
    position: absolute;
    width: 44px;
    height: 44px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 1);
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.timeline-row:hover .timeline-marker {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 8px rgba(10, 122, 255, 0.2);
}

/* Content Box */
.timeline-content {
    padding: 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-row:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 122, 255, 0.3);
}

/* Day Header */
.timeline-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.timeline-day-title {
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.timeline-day-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Details */
.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.timeline-detail-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 122, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--dark);
    font-weight: 600;
}

.timeline-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-text ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.timeline-text ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.4rem;
    color: #555;
    font-size: 0.95rem;
}

.timeline-text ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Arrows */
.timeline-row .timeline-item .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 30px;
    width: 0;
    z-index: 1;
    border: medium solid white;
}

/* Left Content Arrows */
/* Determine arrow direction based on if it is the first or second child? 
   No, we should use classes or structural assumptions. 
   Assumption: 
   Row 1: [Content] [Image] -> Content is first-child or class 'left'
   Row 2: [Image] [Content] -> Content is second-child or class 'right' 
   Let's stick to adding classes 'left-content' and 'right-content' in HTML for clarity.
*/

.timeline-item.left-content {
    text-align: left;
}

.timeline-item.left-content .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
    filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.05));
}

.timeline-item.right-content {
    text-align: left;
}

.timeline-item.right-content .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
}

/* Responsive */
@media screen and (max-width: 992px) {
    .timeline-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .timeline-item,
    .timeline-image {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }

    .timeline-row {
        flex-direction: column !important;
        /* Stack them */
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-top: 20px;
        /* Space for marker */
    }

    .timeline-image {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-top: 20px;
        order: -1;
        /* Image on top? Or bottom? Let's put image BELOW content for better info flow, OR ABOVE. 
                      Let's put Image ABOVE content. */
    }

    .timeline-item.left-content .timeline-content::before,
    .timeline-item.right-content .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--white) transparent transparent;
        filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
    }

    .timeline-image img {
        height: 200px;
    }

    /* Hero Section Responsive */
    .hero-single .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-single .hero-content h1 {
        font-size: 3rem;
    }

    .hero-single .hero-content p {
        font-size: 1.2rem;
    }

    .btn-hero {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Additional responsive styles for smaller screens */
@media screen and (max-width: 480px) {
    .hero-single {
        height: 70vh;
    }

    .hero-single .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .hero-single .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-single .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    outline: none;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slick Dots Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--gradient-1);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

/* Packages Section */
.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--dark);
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .packages-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.package-card {
    background-size: cover;
    background-position: center;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 169, 22, 0.3), rgba(27, 27, 30, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.package-card:hover::before {
    opacity: 1;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 70%, transparent 100%);
    padding: 2rem 1.5rem;
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-overlay {
    padding: 2.5rem 1.5rem;
}

.package-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.package-overlay p {
    margin-bottom: 1rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 122, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stars {
    color: #FFB800;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Footer & WhatsApp */
footer {
    background-color: #000000;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(250, 169, 22, 0.05);
    margin-top: 2rem;
    border-radius: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.3rem;
}



/* --- Premium About Page Design --- */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Animations */
.animate-on-scroll {
    /* opacity: 0; removed to ensure visibility */
    /* transform: translateY(30px); removed */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Section */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: center;
}

/* About Text */
.about-text .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

.about-text .section-title h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text .section-title h2::after {
    left: 0;
    transform: none;
    width: 60px;
}

.about-text-content {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
    font-weight: 300;
}

.about-text-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Why Choose Us - Premium Cards */
.why-choose-us-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.05);
    /* Soft double shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.why-choose-us-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #ffc107);
}

.why-choose-us-heading {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: var(--dark);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-feature-item:hover {
    background-color: #fcfcfc;
    transform: translateY(-5px);
}

.why-feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-feature-item:hover .why-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-feature-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.why-feature-desc {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

/* Policies Section */
.policies-section-wrapper {
    margin-bottom: 5rem;
}

.policies-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Policy Card Premium */
.policy-card-base {
    padding: 3rem 2.5rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s ease;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.policy-card-base:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Policy Card Variants with Gradient Borders */
.policy-card--booking {
    border-top: 5px solid var(--primary);
}

.policy-card--cancellation {
    border-top: 5px solid #e74c3c;
}

.policy-card--refund {
    border-top: 5px solid #27ae60;
}

/* Policy Headings */
.policy-heading {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.policy-heading i {
    margin-right: 12px;
    font-size: 1.6rem;
}

.policy-heading--booking {
    color: var(--primary);
}

.policy-heading--cancellation {
    color: #e74c3c;
}

.policy-heading--refund {
    color: #27ae60;
}

/* Policy Lists */
.policy-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list-item {
    margin-bottom: 1.2rem;
    padding-left: 0;
    text-align: left;
    line-height: 1.7;
    display: flex;
    align-items: start;
    font-size: 1rem;
    color: #666;
}

.policy-list-icon {
    margin-right: 15px;
    margin-top: 6px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.policy-icon--primary {
    color: var(--primary);
}

.policy-icon--danger {
    color: #e74c3c;
}

.policy-text-center {
    text-align: center;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

@media (max-width: 576px) {
    .about-container {
        padding: 0 1.5rem;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us-wrapper {
        padding: 2rem;
    }

    .policy-card-base {
        padding: 2rem;
    }

    .about-text .section-title h2 {
        font-size: 2.2rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES - REDESIGNED
   ============================================ */

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text-block {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(250, 169, 22, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-paragraph strong {
    color: var(--primary);
    font-weight: 600;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff9800 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotateY(360deg);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1rem;
}

/* Policies Section */
.policies-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.policy-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.policy-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 169, 22, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.policy-card:hover::after {
    opacity: 1;
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(250, 169, 22, 0.2);
}

.policy-header i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.policy-card:hover .policy-header i {
    transform: scale(1.15) rotate(5deg);
}

.policy-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-list i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.policy-list span {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.85;
}

.policy-text {
    position: relative;
    z-index: 1;
}

.policy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.85;
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2e 100%);
    margin: 0 0 3rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(250, 169, 22, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.4rem;
    color: var(--primary);
}

.trust-badge:hover {
    background: rgba(250, 169, 22, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-content-grid {
        gap: 3rem;
    }

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

    .policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .about-section,
    .policies-section {
        padding: 3rem 1.5rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .about-text-block {
        padding: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-header h3 {
        font-size: 1.3rem;
    }

    .trust-badges {
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .trust-badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .about-text-block {
        padding: 1.5rem;
    }

    .why-icon {
        font-size: 2.8rem;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .policy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .policy-header i {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}