html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

:root {
    /* Color Palette */
    --bg-dark: #050505;
    --bg-card: #0c0c0d;
    --text-white: #ffffff;
    --text-gray: #a1a1a6;
    --accent-blue: #1e3a8a;
    --accent-red: #991b1b;
    --accent-gold: #d4af37;
    --accent-silver: #e5e5e5;

    /* Gradients */
    --lager-gradient: linear-gradient(135deg, #1e3a8a 0%, #0c1a40 100%);
    --strong-gradient: linear-gradient(135deg, #991b1b 0%, #450a0a 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Layout */
    --nav-height: 80px;
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
.heading-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    display: block;
}

.highlight {
    color: var(--accent-gold);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-premium {
    color: white;
}

.btn-lager {
    background: var(--accent-blue);
    box-shadow: 0 0 0px var(--accent-blue);
}

.btn-lager:hover {
    box-shadow: 0 0 20px var(--accent-blue);
    transform: translateY(-2px);
}

.btn-strong {
    background: var(--accent-red);
    box-shadow: 0 0 0px var(--accent-red);
}

.btn-strong:hover {
    box-shadow: 0 0 20px var(--accent-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* --- Age Gate --- */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.age-gate-modal {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 60px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.age-gate-modal h2 {
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.age-gate-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.age-gate-modal p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.age-gate-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.age-gate-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
}

.age-denied-msg {
    text-align: center;
    padding: 40px;
}

.age-denied-msg h2 {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo a {
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.nav-links a {
    margin-left: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.nav-links a:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(1.1);
    transform: scale(1.1);
    transition: transform 10s linear;
    z-index: -1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide.active .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(5, 5, 5, 0.4) 100%);
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    z-index: 10;
}

.slide-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.slide-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.slide.active .slide-text h1,
.slide.active .slide-text p,
.slide.active .slide-actions {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-img {
    height: 70vh;
    width: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 100;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: white;
}

/* --- Sections --- */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-image {
    width: 40%;
    background: #111;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.card-image img {
    height: 300px;
    width: auto;
    transition: var(--transition);
}

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

.card-info {
    width: 60%;
    padding: 40px;
}

.card-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-info p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.features {
    margin-bottom: 30px;
}

.features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    margin-right: 10px;
    color: var(--accent-gold);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.team-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #111;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-card h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: white;
}

.team-card p {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Events --- */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.event-item .date {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    min-width: 100px;
}

/* --- Brand Story --- */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.accent-text {
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.story-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.stat .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.story-img-container {
    padding: 20px;
    border: 1px solid var(--accent-gold);
    display: flex;
    justify-content: center;
}

.story-img {
    filter: grayscale(1);
    transition: var(--transition);
}

.story-img:hover {
    filter: grayscale(0);
}

/* --- Forms & QR --- */
.contest-box {
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 30px auto 0;
}

.premium-form input,
.premium-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    color: white;
    border-radius: 4px;
    font-family: inherit;
}

.premium-form input:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Date Picker Fixes */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 10;
}

input[type="date"]::after {
    content: '📅';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.6;
}


/* --- Merchandise --- */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.merch-grid.single-merch {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.merch-card {
    background: var(--bg-card);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    border-radius: 8px;
}

.merch-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.merch-image-container {
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 4px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.merch-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.merch-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    display: block;
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

/* --- Experience --- */
.experience-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

.experience-content h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-gold);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* --- CTA --- */
.cta-container {
    padding: 80px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.8) 100%);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- Glassmorphism --- */
.glass {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 100px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.footer-nav {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-text h1 {
        font-size: 2.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .brand-story {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
        background: #000 !important;
        position: relative !important;
    }

    .nav-links {
        display: none !important;
        /* Default hidden */
    }

    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 70px !important;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px) !important;
        background: #000;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        z-index: 10000;
        overflow-y: auto;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: flex !important;
        right: 15px !important;
    }

    .logo a {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        overflow: hidden;
    }

    .slide {
        position: relative;
        height: auto;
        min-height: 100vh;
        display: none;
    }

    .slide.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .slide-content {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
        display: block !important;
    }

    .slide-text h1 {
        font-size: 1.8rem;
        margin-top: 10px !important;
        word-wrap: break-word;
    }

    .slide-text p {
        font-size: 1rem;
    }

    /* Aggressive Stacking */
    .slide-actions,
    .cta-btns,
    .age-gate-btns,
    .footer-nav {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .btn {
        display: block !important;
        width: 100% !important;
        margin: 10px auto !important;
        max-width: 280px;
        padding: 14px 20px !important;
        font-size: 0.85rem !important;
    }

    .floating-img {
        height: 35vh;
        width: auto;
        margin: 20px auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    .footer-top {
        display: block !important;
        text-align: center !important;
        padding: 0 20px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        margin: 0 auto 20px !important;
    }

    .footer-links {
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    /* Fix potential Age Gate issues */
    .age-gate-modal {
        padding: 30px 20px;
        width: 95%;
    }

    /* Brand Story Mobile Fixes */
    .brand-story {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-content h2 {
        font-size: 2.2rem;
    }

    .story-stats {
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }

    .stat .number {
        font-size: 1.8rem;
    }

    .story-visual {
        order: -1;
        /* Move image to top on mobile */
    }

    .story-img {
        max-width: 200px;
        height: auto;
    }

    /* Experience Section Mobile Fixes */
    .experience-section {
        height: auto;
        padding: 80px 20px;
    }

    .experience-content h2 {
        font-size: 2.5rem !important;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .experience-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* --- CTA Banner --- */
.cta-banner-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-movement {
    background: #1e3a8a !important;
    /* Royal Blue from user image */
    color: white !important;
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    border: none !important;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-movement:hover {
    background: #1d4ed8 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- Redesigned Contact Section --- */
.contact-section {
    padding: 100px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px;
    border-radius: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: flex-start;
}

.info-item {
    margin-bottom: 35px;
}

.info-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item span {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: 'Outfit', sans-serif;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 18px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-card {
        padding: 40px;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

/* Logo Enhancements */
.logo img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.footer-logo {
    transition: transform 0.5s ease;
}

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

/* --- Product Detail Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

.modal-container {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    border-radius: 30px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
}

.modal-visual {
    position: sticky;
    top: 0;
}

.modal-visual img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.advantage-list h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantage-list ul {
    list-style: none;
}

.advantage-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.advantage-list i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 25px;
}

.description p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.feat {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feat span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.feat strong {
    display: block;
    color: white;
    margin-bottom: 5px;
}

.feat p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-sections h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.profile-table td:first-child {
    font-weight: 600;
    opacity: 0.6;
}

.modal-footer {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.modal-footer .highlight {
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-visual {
        position: relative;
        text-align: center;
    }

    .modal-body {
        padding: 40px 30px;
    }

    .feature-grid,
    .info-sections {
        grid-template-columns: 1fr;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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