/* CSS Design System for Future Bridge Student Consultancy Coming Soon Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg-dark: #070B19;
    --color-bg-deep: #0B132B;
    --color-bg-card: rgba(15, 23, 42, 0.45);
    --color-primary: #1C2541;
    --color-cyan: #48CAE4;
    --color-blue-glow: #0077b6;
    --color-gold: #E0A96D;
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --glass-background: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Custom Cursor Glow */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--color-cyan);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    mix-blend-mode: screen;
    opacity: 0;
}

.custom-cursor-glow {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.12) 0%, rgba(28, 37, 65, 0) 70%);
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
    opacity: 0;
}

/* Background Ambient Lighting */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    mix-blend-mode: screen;
    animation: float-ambient 25s infinite alternate ease-in-out;
    will-change: transform;
}

.aurora-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1e3c72 0%, rgba(30, 60, 114, 0) 70%);
    top: -10%;
    left: -10%;
    animation-duration: 20s;
}

.aurora-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #48cae4 0%, rgba(72, 202, 228, 0) 70%);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.aurora-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e0a96d 0%, rgba(224, 169, 109, 0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes float-ambient {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(100px) scale(1.15) rotate(360deg); }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Glassmorphism Common Class */
.glass-panel {
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--glass-highlight);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 3rem;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 1rem 3rem;
    background: rgba(7, 11, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo-badge {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.35rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.nav-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFF 60%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-gold));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text-main);
}

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

.nav-cta {
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.15) 0%, rgba(224, 169, 109, 0.15) 100%);
    border: 1px solid rgba(72, 202, 228, 0.3);
    color: var(--color-cyan);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-glow) 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(72, 202, 228, 0.4);
    transform: translateY(-2px);
    border-color: transparent;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-fast);
}

/* Page Layout Wrapper */
main {
    position: relative;
    z-index: 10;
}

/* Fullscreen Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    animation: zoomOutSlow 10s forwards linear;
}

@keyframes zoomOutSlow {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 11, 25, 0.3) 0%, rgba(7, 11, 25, 0.8) 100%),
                linear-gradient(to bottom, rgba(7, 11, 25, 0.4) 0%, var(--color-bg-dark) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Hero Brand Logo Badge */
.hero-logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 2.5rem auto;
    border-radius: 32px;
    background: #ffffff;
    padding: 1.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(72, 202, 228, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    animation: floatLogo 6s ease-in-out infinite, revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
    cursor: pointer;
}

.hero-logo-container:hover {
    transform: translateY(-8px) scale(1.05) rotate(1deg) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(224, 169, 109, 0.45);
    border-color: var(--color-gold);
}

.hero-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.badge-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF 30%, #E0A96D 70%, #48CAE4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 6s linear infinite, revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3.5rem;
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    opacity: 0;
}

.btn {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-glow) 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 8px 30px rgba(72, 202, 228, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(72, 202, 228, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-main);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--color-cyan);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* Animations Trigger classes */
@keyframes revealUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Section Common Styling */
section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 5rem;
    max-width: 700px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Grid & Cards system */
.grid-container {
    display: grid;
    gap: 2.5rem;
}

.card-item {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-inner:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 11, 25, 0.1) 40%, rgba(7, 11, 25, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.card-inner:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(7, 11, 25, 0) 20%, rgba(7, 11, 25, 0.95) 100%);
}

.card-meta {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.75rem;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s, height 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    transform: translateY(15px);
}

.card-inner:hover .card-meta,
.card-inner:hover .card-title {
    transform: translateY(0);
    opacity: 1;
}

.card-inner:hover .card-desc {
    opacity: 1;
    height: auto;
    transform: translateY(0);
    margin-top: 0.25rem;
}

/* Feature Destinations Grid - 3 Columns */
.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.destinations-grid .card-inner {
    height: 480px;
}

/* Discover Culture Grid */
.culture-grid {
    grid-template-columns: repeat(2, 1fr);
}

.culture-grid .card-inner {
    height: 450px;
}

/* World Cuisine Grid */
.cuisine-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cuisine-grid .card-inner {
    height: 380px;
}

/* Campus Student Experience Grid - Alternating Layout */
.experience-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.experience-features {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.experience-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(72, 202, 228, 0.15);
    border: 1px solid rgba(72, 202, 228, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.experience-images {
    position: relative;
    height: 520px;
}

.exp-img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.exp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-1 {
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.exp-img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.experience-images:hover .exp-img-1 {
    transform: translate(-10px, -10px) scale(0.98);
    z-index: 1;
}

.experience-images:hover .exp-img-2 {
    transform: translate(15px, 15px) scale(1.03);
    border-color: rgba(224, 169, 109, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(224, 169, 109, 0.2);
}

/* Pinterest Masonry Gallery */
.gallery-container {
    columns: 4 300px;
    column-gap: 2rem;
}

.gallery-card {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 11, 25, 0) 50%, rgba(7, 11, 25, 0.85) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.25rem;
}

.gallery-card-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.25rem;
}

.lightbox-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-cyan);
}

.lightbox-prev {
    left: 3rem;
}

.lightbox-next {
    right: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 2rem;
}

.newsletter-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(72, 202, 228, 0.05) 0%, rgba(28, 37, 65, 0) 60%);
    pointer-events: none;
}

.newsletter-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.4rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
    border-color: rgba(72, 202, 228, 0.5);
    box-shadow: 0 0 25px rgba(72, 202, 228, 0.15);
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    padding: 0 1.75rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue-glow) 100%);
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
    outline: none;
    padding: 0 2rem;
    height: 52px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(72, 202, 228, 0.4);
}

/* Notification Toast */
.toast-container {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: rgba(11, 19, 43, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--color-cyan);
    color: #FFF;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(72, 202, 228, 0.2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(50px);
    opacity: 0;
    animation: toastIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: var(--transition-smooth);
}

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

.toast.toast-success {
    border-color: #00b894;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 184, 148, 0.2);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(7, 11, 25, 0.5);
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

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

.footer-logo-badge {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 8px;
    padding: 0.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

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

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-cyan);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background: rgba(72, 202, 228, 0.15);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    section {
        padding: 6rem 2rem;
    }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .experience-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .culture-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    .gallery-container {
        columns: 3 250px;
    }
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }
}

@media (max-width: 768px) {
    header {
        padding: 1.25rem 2rem;
    }
    header.scrolled {
        padding: 0.85rem 2rem;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(7, 11, 25, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 99;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-menu.active {
        right: 0;
    }
    .menu-toggle {
        display: flex;
        z-index: 100;
    }
    
    /* Hamburger animation states */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5deg, -5px) translateY(-8px) translateX(6px);
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        margin-top: 2rem;
    }
    .hero-logo-container {
        width: 150px;
        height: 150px;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
    }
    
    .destinations-grid .card-inner {
        height: 400px;
    }
    .gallery-container {
        columns: 2 180px;
    }
    .newsletter-panel {
        padding: 3rem 2rem;
    }
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 1rem;
        padding: 0;
    }
    .newsletter-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        height: 52px;
        width: 100%;
        text-align: center;
    }
    .newsletter-btn {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        columns: 1;
    }
    .toast {
        right: 1.5rem;
        left: 1.5rem;
        bottom: 1.5rem;
        padding: 1rem 1.5rem;
    }
}
