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

:root {
    --bg: #000000;
    --card-bg: #121212;
    --text: #ffffff;
    --text-muted: #a1a1a1;
    --accent-orange: #ff5d22;
    --accent-lime: #c9e265;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --radius-lg: 32px;
    --radius-md: 16px;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --glow-cyan: rgba(0, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

/* Glassmorphism utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
}

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

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

/* Header Redesign */
header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, top 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    top: 0;
    padding: 4px 0;
}

.mobile-menu-btn, .mobile-menu-overlay {
    display: none;
}

.nav-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ticket-nav {
    background: var(--accent-lime);
    border: 1px solid var(--accent-lime);
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-ticket-nav:hover {
    background: #d4f06e;
    transform: scale(1.02);
}

.nav-circle-arrow--dark {
    background: #000 !important;
}

.btn-contact-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.nav-circle-arrow {
    background: var(--accent-lime);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg), transparent);
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 24px;
}

.cycling-text {
    display: block;
    color: var(--accent-lime);
}

/* Marquee */
.marquee-container {
    padding: 80px 0;
    overflow: hidden;
    background: #000;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-lime);
    margin-right: 40px;
    font-family: var(--font-heading);
    transition: 0.3s;
}

.marquee-item:hover {
    color: var(--accent-lime);
    -webkit-text-stroke: 1px transparent;
}

.marquee-item.highlight {
    color: var(--accent-lime);
    -webkit-text-stroke: 1px transparent;
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Grid */
.services {
    padding: 40px 0;
}

.section-label {
    color: var(--accent-lime);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.service-nav-item {
    opacity: 0.3;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.service-nav-item .item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.service-nav-item .num {
    color: var(--accent-lime);
    font-size: 1rem;
    opacity: 1;
}

.service-nav-item:hover,
.service-nav-item.active {
    opacity: 1;
    border-bottom-color: var(--accent-lime);
}

.service-nav-item:hover .item-content {
    transform: translateX(20px);
}

@media (max-width: 992px) {
    .services-interactive-grid {
        grid-template-columns: 1fr !important;
    }
    .service-display-side {
        position: relative !important;
        top: 0 !important;
    }
    .service-nav-item .item-content {
        font-size: 1.5rem;
    }
}

/* Swiper Customization */
.recentEventsSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.recentEventsSwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.recentEventsSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent-lime) !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: 800;
}

@media (max-width: 768px) {
    .recentEventsSwiper .swiper-slide {
        width: 280px;
        height: 350px;
    }
    .events-video-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- UI UPGRADE: Vision & Approach --- */
.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr; /* Weighted: Media is much larger */
    gap: 50px;
    align-items: center;
}

.approach-row.reverse {
    grid-template-columns: 1.8fr 1fr;
}

.approach-row.reverse .approach-card.text-card { order: 2; }
.approach-row.reverse .approach-card.media-card { order: 1; }

.approach-card {
    border-radius: 40px;
    overflow: hidden;
    height: 450px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-card.text-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 400px;
}

.approach-card.media-card img,
.approach-card.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- UI UPGRADE: Services --- */
.services-interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

.service-list-side {
    display: flex;
    flex-direction: column;
}

.service-nav-item {
    position: relative;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.service-nav-item span {
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0.4; /* Visible lightly as requested */
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: -0.01em;
}

.service-nav-item.active span {
    opacity: 1;
    color: var(--accent-lime);
    transform: translateX(12px);
}

.display-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1/1.2;
    background: #0a0a0a;
    box-shadow: 0 50px 120px rgba(0,0,0,0.9);
}

.display-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.display-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.display-slide img,
.display-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-nav-item.active .item-content span {
    opacity: 1;
    color: var(--accent-lime);
    transform: translateX(15px);
}

.display-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1/1.2; /* Cinematic portrait shape */
    background: #0a0a0a;
    box-shadow: 0 50px 120px rgba(0,0,0,0.9);
}

.display-overlay p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
}
/* Bento Grid Why Us */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bento-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
}

.bento-card:hover {
    border-color: var(--accent-lime);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.bento-card.large {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 226, 101, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.bento-card h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bento-card.small h3 {
    font-size: 1.8rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
    }
    .bento-card {
        padding: 40px;
    }
    .bento-watermark {
        font-size: 8rem;
    }
}

/* Refactored Utility & Section Styles */
.section-padding {
    padding-top: 40px;
}
.section-header { margin-bottom: 60px; }
.section-header-large { margin-bottom: 80px; }
.section-title { font-size: 2.6rem; }
.section-title-alt { font-size: 2.6rem; line-height: 1.1; margin-bottom: 40px; }

.hero-logo-box img {
    width: 190px;
    /* margin-bottom: 30px; */
    filter: drop-shadow(0 0 20px var(--accent-orange));
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.about-visual img {
    width: 100%;
    max-width: 350px;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(255, 93, 34, 0.2));
}

.about-video {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(255, 93, 34, 0.2);
}

.events-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-card-inner {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.video-card-inner h3 {
    font-size: 1.5rem;
}

.video-card {
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 10/14;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.video-card .service-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-display-side {
    position: sticky;
    top: 120px;
}

.display-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/11;
    background: #111;
}

.display-container-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.display-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.display-overlay p {
    font-size: 1.2rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- What Sets Us Apart --- */
.section-label-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-dash {
    width: 30px;
    height: 1px;
    background: #fff;
    opacity: 0.6;
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
}

.apart-card {
    padding: 25px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: 0.4s var(--transition);
}

.apart-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(198, 255, 0, 0.3);
    transform: translateY(-10px);
}

.apart-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(201, 226, 101, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.apart-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.apart-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- Contact Form Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-subtext {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 16px 0 34px;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item .detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 1.4rem;
    font-weight: 500;
}

.contact-social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.social-icon-link:hover {
    color: var(--accent-lime);
    border-color: var(--accent-lime);
    background: rgba(198, 255, 0, 0.08);
}

.triangle-form {
    padding: 60px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.input-group {
    position: relative;
    margin-bottom: 45px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #fff;
    outline: none;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.4s;
}

.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line {
    background: var(--accent-lime);
    box-shadow: 0 0 15px rgba(201, 226, 101, 0.4);
}

.submit-btn {
    width: 100%;
    background: var(--accent-lime);
    color: #000;
    border: none;
    padding: 22px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* --- Mobile Responsiveness Pass --- */

@media (max-width: 992px) {
    /* Global Adjustments */
    .container, .nav-container {
        padding: 0 24px !important;
    }
    .section-padding { padding: 80px 0 40px; }
    .section-title, .section-title-alt { font-size: 2rem; letter-spacing: -0.01em; }
    
    /* Hero Title Clamp Refinement */
    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    /* Navigation: Simplified for Mobile */
    .nav-links, .desktop-only { display: none !important; }
    .nav-container { padding: 0 24px !important; }
    .logo img { height: 60px; width: auto; }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        align-items: center;
        z-index: 1001;
        transition: 0.3s;
    }

    .mobile-menu-btn .line {
        width: 20px;
        height: 2px;
        background: #fff;
        transition: 0.4s var(--transition);
        transform-origin: center;
    }

    .mobile-menu-btn.active .line:nth-child(1) { transform: translateY(4px) rotate(45deg); }
    .mobile-menu-btn.active .line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

    /* Overlay Menu (Standard Slide-Down) */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .mobile-menu-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        padding: 100px 30px 40px;
        transform: translateY(-100%);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 2px solid var(--accent-lime);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateY(0);
    }

    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mobile-nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        transition: 0.3s;
    }

    .mobile-nav-links a:hover {
        color: var(--accent-lime);
    }

    .mobile-ticket-btn {
        background: var(--accent-lime);
        color: #000 !important;
        display: block;
        text-align: center;
        padding: 14px;
        border-radius: 50px;
        margin-top: 15px;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }

    .mobile-contact-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff !important;
        display: block;
        text-align: center;
        padding: 14px;
        border-radius: 50px;
        margin-top: 10px;
        font-size: 1rem !important;
    }

    .mobile-menu-footer {
        margin-top: 30px;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .about-visual img, .about-video { max-width: 200px; margin: 0 auto; }

    /* Marquee */
    .marquee-item { font-size: 4rem; }

    /* Services Section */
    .services-interactive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-display-side {
        position: relative !important;
        top: 0 !important;
        order: -1; /* Image first on mobile */
    }
    .display-container { aspect-ratio: 16/10; }
    .service-nav-item span { font-size: 1.4rem; }
    .service-nav-item { padding: 20px 0; }
    
    /* Approach Section */
    .approach-row, .approach-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .approach-row.reverse .approach-card.text-card { order: 1; }
    .approach-row.reverse .approach-card.media-card { order: 2; }
    .approach-card { height: 350px; }
    .approach-card.text-card { padding: 40px; min-height: fit-content; }

    /* Why Us / Apart Section */
    .apart-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .apart-card { padding: 40px 30px; }

    /* Contact Form Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info-side { text-align: center; }
    .contact-details-list { align-items: center; }
    .triangle-form { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Footer */
    .footer-top-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-contact-info { text-align: center; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .marquee-item { font-size: 3rem; }
    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }
    .footer-bottom-links { justify-content: center; }
}

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

.discount-card {
    padding: 25px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: 0.5s var(--transition);
}

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

.discount-image {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.discount-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: 0.5s ease;
}

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

.discount-content {
    padding: 0 10px;
}

.discount-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--accent-lime);
}

.discount-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coupon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 28px;
    border-radius: 100px;
    width: fit-content;
    border: 1px dashed rgba(201, 226, 101, 0.4);
}

.coupon-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-code {
    font-weight: 800;
    color: var(--accent-lime);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

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

/* Footer Section Refactor */
footer {
    padding: 100px 0 30px;
    background: #000;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-contact-info {
    text-align: right;
    color: #fff;
}

.footer-contact-info .contact-primary {
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-contact-info .contact-secondary {
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-banner-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 600px;
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 60px;
}

.footer-banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .footer-banner-container {
        height: 350px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: inherit;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-lime);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--transition);
}

[data-aos].active {
    opacity: 1;
    transform: translateY(0);
}
