﻿/* Color Palette & Variables */
:root {
    /* Colors */
    --clr-emerald-dark: #0B1C2D;
    --clr-emerald: #0F3057;
    --clr-emerald-light: #1A3F66;
    --clr-gold: #D4A73F;
    --clr-gold-light: #ebd091;
    --clr-white: #ffffff;
    --clr-off-white: #06121f;
    --clr-text-main: #F4EBD0;
    --clr-text-light: rgba(244, 235, 208, 0.7);
    --clr-coral: #E76F51;
    --clr-beige: #F4EBD0;
    --clr-text-dark: #0B1C2D;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(11, 28, 45, 0.3);
    --shadow-md: 0 10px 20px rgba(11, 28, 45, 0.5);
    --shadow-lg: 0 20px 40px rgba(11, 28, 45, 0.6);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.text-white {
    color: var(--clr-white) !important;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--clr-gold);
    margin: 1rem auto 1.5rem;
}

.divider.left {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--clr-coral);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
    background-color: #d85c3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(231, 111, 81, 0.3);
}


.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(11, 28, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(244, 235, 208, 0.1);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--clr-white);
}

.logo-typography {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--clr-gold);
}

.logo-subtext {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-top: 0.2rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--clr-gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--clr-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw + 1rem, 3.8rem);
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: var(--clr-emerald);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlighted-card {
    border: 2px solid var(--clr-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.highlighted-card:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.04) translateY(-5px);
}

.destination-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.destination-img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--clr-white);
    font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
    margin: 0;
    z-index: 1;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.3rem);
    margin-bottom: 0.5rem;
}

.destination-info p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.explore-link i {
    transition: transform 0.3s ease;
}

.explore-link:hover i {
    transform: translateX(5px);
}

/* Benefits Section */
.benefits {
    background-color: var(--clr-emerald);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-image-container {
    position: relative;
    height: 450px;
}

.primary-image {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    left: 0;
}

.secondary-image {
    width: 60%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 10px solid var(--clr-emerald);
}

.benefits-intro {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--clr-off-white);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--clr-gold);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-emerald-dark);
}

.benefit-text p {
    color: var(--clr-text-dark);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--clr-emerald-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--clr-off-white);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-gold);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author h4 {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.contact-box {
    position: relative;
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--clr-emerald);
    padding: 2.5rem 1.5rem;
    color: var(--clr-white);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--clr-gold);
}

.contact-form-wrapper {
    padding: 2.5rem 1.5rem;
    background: var(--clr-emerald-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--clr-off-white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    background-color: var(--clr-emerald-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--clr-white);
}

/* Footer */
.footer {
    background: #000000;
    color: #a0a0a0;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-brand .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--clr-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Modal Styles */
.destination-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.destination-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--clr-emerald);
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--clr-gold);
    color: var(--clr-emerald-dark);
}

.modal-header {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.modal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s alternate infinite linear;
}

.modal-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.modal-title-overlay h2 {
    color: var(--clr-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--clr-white);
    font-size: 1.1rem;
}

.modal-body {
    padding: 3rem 2rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    color: var(--clr-white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.modal-section h3 i {
    color: var(--clr-gold);
}

.modal-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.modal-list-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-top: 3px solid var(--clr-gold);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.modal-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.modal-item-img-container {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.modal-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-list-item:hover .modal-item-img {
    transform: scale(1.05);
}

.modal-item-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modal-item-content h4 {
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.modal-item-content p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.modal-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-cta p {
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {

    .destinations-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-image-container {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 3rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 45, 37, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.destinations-category-title {
    color: var(--clr-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--ff-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}



/* Additions for Premium Hospitality Theme */
.benefits .section-title,
.benefits .section-subtitle,
.benefits h2,
.benefits .benefits-intro {
    color: var(--clr-white) !important;
}

.benefits .benefit-icon {
    background: var(--clr-emerald);
    color: var(--clr-gold);
}

.benefits .benefit-item {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.hero {
    padding-top: 150px;
}

.hero-content {
    max-width: 800px;
}

/* Additions for Featured Kashmir Section */
.kashmir-feature-wrapper {
    margin: 0 auto 3rem auto;
    background: var(--clr-emerald-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.kashmir-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.kashmir-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    object-position: center;
}

.kashmir-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 45, 0.9) 0%, rgba(11, 28, 45, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 4rem;
    color: var(--clr-white);
}

.kashmir-hero-overlay h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--clr-gold);
    margin: 1rem 0;
    font-family: var(--ff-heading);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.kashmir-hero-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-kashmir {
    background-color: var(--clr-gold);
    color: var(--clr-emerald-dark) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-kashmir:hover {
    background-color: var(--clr-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: var(--clr-emerald-dark) !important;
}

.kashmir-highlights {
    width: 100%;
    background: var(--clr-emerald-dark);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kashmir-highlights h3 {
    color: var(--clr-gold);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-family: var(--ff-heading);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.8rem;
    display: inline-block;
}

.k-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.k-card {
    background: var(--clr-emerald);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.k-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--clr-gold);
}

.k-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.k-info {
    padding: 1.5rem;
    text-align: center;
}

.k-info h4 {
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.k-info p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .k-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .k-highlights-grid {
        grid-template-columns: 1fr;
    }

    .kashmir-hero-overlay {
        padding: 2rem 1rem;
    }

    .kashmir-highlights {
        padding: 3rem 1.5rem;
    }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.nav-dot:hover,
.nav-dot.active {
    background-color: var(--clr-gold);
    transform: scale(1.3);
}

.nav-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--clr-emerald-dark);
    color: var(--clr-white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-body);
}

.nav-dot:hover .nav-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--clr-white);
    text-decoration: none;
    z-index: 10;
    opacity: 0.7;
    transition: var(--transition-smooth);
    animation: bounce 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.scroll-indicator:hover {
    color: var(--clr-gold);
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1.8rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@media (max-width: 992px) {
    .floating-nav {
        display: none;
    }
}