:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --brand-red: #dc2626;
    --brand-red-hover: #b91c1c;
    --brand-blue: #0f172a;
    
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
}

body {
    background-color: #fff;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: hidden;
    width: 100%;
}

/* Typography & Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.highlight-red {
    color: var(--brand-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-logo {
    height: 100px;
    width: auto; /* Ensure aspect ratio is maintained */
    max-width: 100%; /* Prevent overflow */
    margin-right: 4rem; /* Added space between logo and menu in desktop mode */
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar {
        height: 140px;
    }
    .nav-logo {
        height: 110px;
        margin-top: 0;
        margin-left: 0; /* Centered instead of shifted */
        max-width: 80vw;
        object-fit: contain;
    }
    .nav-content {
        justify-content: center; /* Center logo on mobile */
    }
    #mobile-menu-btn {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
    }
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--brand-red);
    color: white;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Premium Effects */
.logo-glow {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: glow-pulse-white 3s infinite alternate;
}

@keyframes glow-pulse-white {
    from { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4)); }
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 280px;
    }
}

.footer-logo {
    height: 160px;
    width: auto; /* Ensure aspect ratio is maintained */
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .footer-logo {
        height: 100px;
    }
}

.footer-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

/* Gallery Card (The Frame) */
.gallery-card {
    background: white;
    padding: 12px;
    border: 1px solid var(--brand-red);
    border-radius: 24px;
    transition: var(--transition);
    overflow: hidden;
    /* Removed height: 100% to prevent collapse in some grid layouts */
    /* Subtle Red Glow */
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.08);
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    /* Enhanced Red Glow on Hover */
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.gallery-card .img-container {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

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

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

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

/* Hero Section Specifics */

/* Hero Section Specifics */
.hero {
    height: 100vh;
    min-height: 700px;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 140px; /* Offset for larger navbar header */
}

    }
}
/* Premium Contact Section Styles */
.premium-glass-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4.5rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

}

.premium-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
}

.premium-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.4rem 1.4rem 1.4rem 3.5rem; /* Space for icon */
    border-radius: 16px;
    color: white;
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.15);
}

.premium-input::placeholder {
    color: #4b5563;
    font-weight: 400;
}

.premium-icon {
    position: absolute;
    left: 1.25rem;
    bottom: 1.4rem; /* Aligned with input text */
    color: #64748b;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.premium-input:focus + .premium-icon {
    color: var(--brand-red);
}

.premium-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 0.5rem;
}

select.premium-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

textarea.premium-input {
    resize: none;
    padding-top: 1.4rem;
}

.btn-premium-red {
    width: 100%;
    background: var(--brand-red);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 100px; /* Iconic Pill Shape */
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.btn-premium-red:hover {
    background: var(--brand-red-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

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

.hover-color-white:hover {
    color: white !important;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
