/* ===== PREMIUM DESIGN SYSTEM (₹2 Lakh Standard) ===== */
:root {
    /* Brand Colors */
    --brand-orange: #e17819;
    --brand-blue: #0f73be;
    --brand-dark: #0a4d80;
    --brand-light-blue: #e6f3ff;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-dark) 100%);
    --accent-gradient: linear-gradient(135deg, var(--brand-orange) 0%, #ff9f43 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Colors */
    --text-dark: #1a202c;
    --text-light: #ffffff;
    --text-gray: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;

    /* Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 10px 30px rgba(15, 115, 190, 0.2);
    --shadow-orange: 0 10px 30px rgba(225, 120, 25, 0.3);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-blue);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

.text-orange {
    color: var(--brand-orange);
}

.text-blue {
    color: var(--brand-blue);
}

.text-gray {
    color: var(--text-gray);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--accent-gradient);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9f43 0%, var(--brand-orange) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 120, 25, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--brand-blue);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--brand-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 400;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 90vh;
    background: url('hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 115, 190, 0.6), rgba(10, 77, 128, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--brand-orange);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-widget {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 100px;
    display: flex;
    gap: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.search-item:last-child {
    border-right: none;
    padding-right: 0;
    flex: 0 0 auto;
}

.search-item i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--brand-blue);
    color: var(--text-light);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== SERVICES ENHANCED ===== */
.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--brand-blue);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--brand-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--brand-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ===== DESTINATIONS ===== */
.destination-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 400px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-light);
    transform: translateY(20px);
    transition: var(--transition);
}

.destination-card:hover .dest-overlay {
    transform: translateY(0);
}

.dest-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-orange);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.dest-info h4 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.dest-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .dest-meta {
    opacity: 1;
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--brand-light-blue);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    scroll-snap-align: center;
}

.stars {
    color: #f1c40f;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.user-details span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== OFFERS ===== */
.offer-card {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    border-radius: 20px;
    padding: 40px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('offer-bg.png') no-repeat center right/contain;
    opacity: 0.2;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.offer-tag {
    background: var(--brand-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.offer-content h2 {
    color: var(--text-light);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--bg-white);
    border-top: 5px solid var(--brand-orange);
}

.newsletter-box {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1a2a;
    color: #a0aec0;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--brand-orange);
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

    .offer-content {
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}


/* ===== SIMPLE DESTINATION CARDS (NO HOVER, NO PRICING) ===== */
.destination-card-simple {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 400px;
}

.destination-card-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-info-simple {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
}

.dest-info-simple h4 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.dest-info-simple p {
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}


/* ===== MISSION & VISION (NEW DESIGN) ===== */
.mv-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mv-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--brand-blue);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--brand-blue);
    color: var(--text-light);
    transform: rotateY(180deg);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== OUR VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: var(--transition);
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--brand-blue);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.value-card p {
    color: var(--text-gray);
    margin: 0;
}