/* ==========================================================================
   Global CSS Variables and Resets
   ========================================================================== */
   
:root {
    /* Colors - Premium Light Theme */
    --color-bg: #f8fafc; 
    --color-surface: #ffffff;
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    
    /* Elegant Professional Blues */
    --color-primary: #2563eb; /* Royal Blue */
    --color-primary-light: #60a5fa;
    --color-primary-dark: #1e3a8a; /* Deep Navy */
    --color-accent: #f59e0b; /* Amber/Gold */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    --gradient-text: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    --gradient-neon: linear-gradient(45deg, var(--color-primary-light), var(--color-primary), var(--color-primary-dark));
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows and Borders */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(30, 58, 138, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 9999px;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: #f4f7fb;
    background-image: 
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.8), transparent 40%),
        radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.8), transparent 40%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default; /* Fixes text cursor everywhere */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

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

.btn-outline-elegant {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-outline-elegant:hover {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(30, 58, 138, 0.03), transparent 40%);
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary-dark);
    font-weight: 600;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px 0 rgba(30, 58, 138, 0.05);
    overflow: hidden;
    position: relative;
    padding: 1rem;
}

.glass-elegant {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.glass-elegant:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.2);
}

.glass-card img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary-dark);
    animation: float 3s ease-in-out infinite;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(17, 21, 32, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
        backdrop-filter: blur(10px);
        clip-path: circle(0% at top right);
        transition: clip-path 0.4s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.active {
        clip-path: circle(150% at top right);
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .badge {
        margin: 0 auto 1.5rem;
    }
}

/* ==========================================================================
   Section Globals
   ========================================================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

/* ==========================================================================
   Leadership / Team Section
   ========================================================================== */
.team-section {
    background: transparent;
    padding: 2rem 0 6rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}
.team-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.2);
}
.team-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    padding: 4px;
    border: 2px dashed var(--color-primary-light);
    overflow: hidden;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}
.team-card h3 {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}
.team-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */

.destinations-section {
    background-color: #ffffff;
}

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

.dest-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.dest-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.dest-info {
    padding: 1.5rem;
}

.dest-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dest-info p {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

.explore-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.explore-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    background-color: transparent;
}

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

.service-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: transparent;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    background: #ffffff;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay p {
    color: white;
    font-weight: 600;
    margin: 0;
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
    background-color: #f8fafc;
    padding-top: 6rem;
}

.video-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--color-primary);
}

.category-title.text-center {
    text-align: center;
    padding-left: 0;
    border-left: none;
}

.category-title.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.hostel-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

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

@media (max-width: 1024px) {
    .celebrity-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .celebrity-video-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.1);
}

.experience-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: block;
    object-fit: cover;
}

/* Standard landscape for media highlights */
.video-card.mini .experience-video {
    aspect-ratio: 16/9;
}

/* Portrait vertical videos */
.video-card.portrait .experience-video {
    aspect-ratio: 9/16 !important;
}

/* Video Play Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 5;
    pointer-events: none; /* Click goes through to video-card */
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.video-card:hover .play-btn-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Hide overlay when playing */
.video-card.playing .play-overlay {
    opacity: 0;
    visibility: hidden;
}

/* Video Mute Button Overlay */
.video-mute-btn {
    position: absolute;
    bottom: 80px; /* Above the info section */
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.2s, opacity 0.3s;
    z-index: 10;
}

.video-card:not(.playing) .video-mute-btn {
    opacity: 0.5;
    pointer-events: none;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-card.mini .video-mute-btn {
    bottom: 55px; /* Adjusted for smaller cards */
    width: 34px;
    height: 34px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.video-info p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-info span {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hostel-video-grid {
        grid-template-columns: 1fr;
    }
    
    .celebrity-video-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background-color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 4rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06);
    color: var(--color-text-primary);
}

.contact-info h2 {
    color: var(--color-primary-dark);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #f8fafc;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 3rem;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: transparent;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-features {
    list-style: none;
    margin-top: 2rem;
}
.about-features li {
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.about-features li:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #2b2b35; /* Dark premium blue/grey */
    color: #cbd5e1;
    font-size: 0.95rem;
}
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}
.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.85rem;
}
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-col a:hover {
    color: var(--color-primary-light);
}
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
}

/* Base social icon style */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: #ffffff;
}

/* Instagram — pink/purple gradient */
.social-icon--instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}

/* YouTube — red */
.social-icon--youtube:hover {
    background: #FF0000;
    border-color: transparent;
}

/* Facebook — blue */
.social-icon--facebook:hover {
    background: #1877F2;
    border-color: transparent;
}
.contact-details-footer p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-bottom {
    background: #ffffff;
    color: #475569;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal a {
    color: #475569;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   Workshop / Fest UI Section
   ========================================================================== */
.workshop-section {
    background-color: transparent;
    border-top: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.workshop-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
}
.workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.workshop-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    background: #ffffff;
}
@media (max-width: 768px) {
    .workshop-card {
        flex-direction: column;
        text-align: center;
    }
}
.workshop-date {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}
.workshop-date span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}
.workshop-details h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}
.workshop-meta {
    color: var(--color-text-secondary) !important;
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
}

.glitch-text {
    display: none;
}

/* ==========================================================================
   Success Modal & Confetti Popup
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-xl);
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
    animation: popupIcon 0.5s ease 0.2s both;
}
@keyframes popupIcon {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}
.modal-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 28px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    cursor: pointer; /* Ensure pointer cursor */
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    background-color: #20b858;
    color: #FFF;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* ==========================================================================
   Stepworth AI Chatbot
   ========================================================================== */

/* ── Floating Trigger Button ── */
#sw-chatbot-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 10000;
    font-family: var(--font-body);
}

#sw-chat-trigger {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    cursor: pointer; /* Ensure pointer cursor */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

#sw-chat-trigger:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.55);
}

#sw-chat-trigger.sw-active {
    background: #1e3a8a;
}

.sw-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sw-trigger-icon svg {
    width: 26px;
    height: 26px;
}

/* Notification dot */
.sw-notification-dot {
    display: none;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: sw-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes sw-ping {
    0%   { transform: scale(1);   opacity: 1; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ── Chat Window ── */
#sw-chat-window {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 370px;
    max-height: 560px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18), 0 4px 16px rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

#sw-chat-window.sw-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── Header ── */
.sw-chat-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    background: var(--gradient-primary);
    color: #ffffff;
    flex-shrink: 0;
}

.sw-header-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.35);
}

.sw-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sw-header-name {
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.sw-header-status {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sw-status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: sw-status-pulse 2s ease-in-out infinite;
}

@keyframes sw-status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.sw-header-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.sw-header-close:hover {
    background: rgba(255,255,255,0.3);
}

/* ── Messages ── */
#sw-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    scroll-behavior: smooth;
    background: #f8fafc;
}

#sw-messages::-webkit-scrollbar { width: 4px; }
#sw-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
#sw-messages::-webkit-scrollbar-track { background: transparent; }

.sw-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 88%;
    animation: sw-msg-in 0.3s ease;
}

@keyframes sw-msg-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sw-msg-bot { align-self: flex-start; }
.sw-msg-user { align-self: flex-end; align-items: flex-end; }

.sw-bubble {
    padding: 0.65rem 0.95rem;
    border-radius: 18px;
    font-size: 0.875rem;
    line-height: 1.55;
    word-break: break-word;
}

.sw-msg-bot .sw-bubble {
    background: #ffffff;
    color: var(--color-text-primary);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.sw-msg-bot .sw-bubble a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.sw-msg-bot .sw-bubble a:hover {
    text-decoration: underline;
}

.sw-msg-user .sw-bubble {
    background: var(--gradient-primary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.sw-time {
    font-size: 0.7rem;
    color: #94a3b8;
    padding: 0 4px;
}

/* ── Typing Indicator ── */
.sw-typing-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.75rem 1rem;
    min-width: 56px;
}

.sw-typing-bubble span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    display: inline-block;
    animation: sw-bounce 1.3s ease-in-out infinite;
}

.sw-typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.sw-typing-bubble span:nth-child(3) { animation-delay: 0.3s; }

@keyframes sw-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* ── Quick Replies ── */
#sw-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: #f8fafc;
    border-top: 1px solid rgba(0,0,0,0.04);
    flex-shrink: 0;
}

.sw-qr-btn {
    background: #ffffff;
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    color: var(--color-primary-dark);
    border-radius: 50px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sw-qr-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ── Input Area ── */
.sw-input-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    flex-shrink: 0;
}

#sw-chat-input {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#sw-chat-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #ffffff;
}

#sw-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

#sw-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* ── Footer ── */
.sw-chat-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    padding: 0.4rem 1rem 0.6rem;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.04);
    flex-shrink: 0;
}

.sw-chat-footer a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.sw-chat-footer a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 60px; /* Reduced from 85px for better mobile fit */
    }

    #sw-chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    #sw-chat-trigger {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    #sw-chat-window {
        width: calc(100vw - 32px);
        max-height: 70vh;
        right: 0;
        bottom: 74px;
    }

    .contact-details-footer {
        overflow-wrap: break-word; /* Prevents long email overflow on tiny screens */
    }

    .contact-details-footer a {
        word-break: break-all;
    }

    .footer-col {
        margin-bottom: 2.5rem;
        padding-right: 1rem;
    }
}

/* Map Styling */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    height: 300px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
}


/* ==========================================================================
   Preloader & Spin Animation
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: initialSpin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes initialSpin {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: rotate(360deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(720deg) scale(1);
        opacity: 1;
    }
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}


/* ==========================================================================
   MOBILE RESPONSIVENESS - Full Site Fix
   ========================================================================== */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    * {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.02em;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 1.5rem;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 1rem;
    }

    /* Contact Section - Fix email overflow */
    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    .contact-info h2 {
        font-size: 1.6rem;
    }
    .contact-details p {
        align-items: flex-start !important;
    }
    .contact-details a,
    .contact-details span {
        word-break: break-all;
        overflow-wrap: anywhere;
        min-width: 0;
        flex: 1;
    }
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Videos */
    .hostel-video-grid {
        grid-template-columns: 1fr;
    }
    .celebrity-video-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .contact-details-footer a,
    .contact-details-footer p {
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Map */
    .map-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .contact-container {
        padding: 1.25rem 0.75rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .category-title {
        font-size: 1.35rem;
    }
    .contact-info h2 {
        font-size: 1.4rem;
    }
}
