/* VARIABLES & SETUP */
:root {
    --bg-main: #0a0a0a;
    --bg-surface: #141414;
    --bg-card: #1c1c1c;
    --accent: #d90429; /* Aggressive Sporty Red */
    --accent-hover: #ef233c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* scroll-behavior removed for Lenis */

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* LAYOUT & UTILITIES */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(239, 35, 60, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--accent);
    background-color: rgba(217, 4, 41, 0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

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

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* HERO SECTION */
.hero-wrapper {
    position: relative;
    height: 100vh; /* Gives room for scroll parallax */
    z-index: 1;
}

.hero-bg-fixed {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

.hero-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* matches wrapper height */
    z-index: 2;
    pointer-events: none; /* Let clicks pass through to sticky layer if needed, or disable if we have buttons */
}
.hero-content-container > * {
    pointer-events: auto; /* Re-enable clicks for content */
}

/* Ensure content stays within the first 100vh so it's centered initially */
.hero-content-asymmetric {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 150px;
}

.hero-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* STATS BAND (Below Hero) */
.stats-band {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.8);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-icon {
    display: flex;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* PARTNERS MARQUEE */
.partners-marquee {
    background-color: var(--bg-main); /* Ensure it covers the sticky hero */
    position: relative;
    z-index: 5;
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 6rem;
    padding: 0 3rem;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: default;
}

.marquee-content span:hover {
    color: rgba(255,255,255,0.6);
}

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

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* SERVICES SECTION */
.services {
    background-color: var(--bg-surface);
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-link {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: #fff;
}
.service-link i {
    transition: transform 0.3s ease;
}
.service-link:hover i {
    transform: translateX(4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(217, 4, 41, 0.3);
}

.service-card:hover::before {
    height: 100%;
}

.card-icon {
    margin-bottom: 1.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    transition: var(--transition);
    color: rgba(255,255,255,0.05);
}

.card-icon svg {
    width: 60px;
    height: 60px;
}

.service-card:hover .card-icon {
    color: rgba(217, 4, 41, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* GALLERY / PROJECTS SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none; /* Let slider interactions pass through */
}

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

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

.gallery-overlay h4 {
    font-size: 1.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-overlay p {
    color: var(--accent);
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* BEFORE/AFTER SLIDER */
.ba-slider-container {
    aspect-ratio: 21/9; /* Wider ratio for featured */
}
.ba-slider-container:hover img {
    transform: none; /* disable zoom on slider */
}
.ba-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: ew-resize;
    user-select: none;
}
.ba-slider img {
    pointer-events: none; /* prevent dragging image ghost */
}
.after-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-slider .resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--accent);
}
.before-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    max-width: none; /* Crucial for JS width setting */
}
.ba-slider .handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    pointer-events: none; /* Let drag pass to container */
}
.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 16px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.before-label { left: 20px; }
.after-label { right: 20px; }

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--bg-main);
}

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

.testimonial-card {
    background-color: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #fff;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--accent);
}

/* CONTACT SECTION */
.contact {
    background-color: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-item h4 svg {
    width: 20px;
    height: 20px;
}

.info-item p, .info-item address {
    color: var(--text-secondary);
    font-style: normal;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    border-radius: 2px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255,255,255,0.05);
}

/* =======================================
   PREMIUM SERVICES PAGE
   ======================================= */
.services-page-header {
    background: radial-gradient(circle at center top, rgba(217, 4, 41, 0.12) 0%, rgba(5, 5, 5, 0) 60%);
    position: relative;
    padding-bottom: 2rem;
}
.services-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    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.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.services-page-header > * {
    position: relative;
    z-index: 1;
}

/* SERVICES DETAILED PAGE CSS */
.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(217, 4, 41, 0.12);
    border-color: rgba(217, 4, 41, 0.25);
}

.service-img-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-img-wrapper img {
    border-radius: 16px;
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail:hover .service-img-wrapper img {
    transform: scale(1.06);
}

.service-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-left: -3rem; /* Pull back into padding */
}

.service-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail:nth-child(even) .service-img-wrapper {
    order: 2;
}
.service-detail:nth-child(even) .service-text {
    order: 1;
}
.service-detail:nth-child(even) .service-text h2 {
    /* For even items, we can keep the border left to stay consistent, but adjust margin */
    margin-left: -3rem;
}

@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-text h2 {
        font-size: 2rem;
        padding-left: 1rem;
        margin-left: -1.5rem;
    }

    .service-detail:nth-child(even) .service-img-wrapper,
    .service-detail:nth-child(even) .service-text {
        order: unset; /* reset for mobile */
    }
    
    /* force image on top for all items in mobile */
    .service-detail {
        display: flex;
        flex-direction: column;
    }
    .service-img-wrapper {
        order: -1 !important;
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* MODERN FOOTER */
.footer-modern {
    background-color: #050505;
    padding: 6rem 0 0 0;
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.footer-cta {
    text-align: center;
    margin-bottom: 5rem;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brand-desc {
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

.footer-nav h4, .footer-contact h4, .footer-social-modern h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-social-modern a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.8rem;
}

.footer-nav a:hover, .contact-link:hover, .footer-social-modern a:hover {
    color: var(--accent);
}

.footer-social-modern a i {
    transition: transform 0.3s ease;
}
.footer-social-modern a:hover i {
    transform: translate(3px, -3px);
}

/* MASSIVE WATERMARK */
.footer-watermark {
    text-align: center;
    font-size: 14vw;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    margin-top: -3vw;
}

.footer-bottom-modern {
    background-color: #000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.signature-link {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1px;
    transition: var(--transition);
    font-weight: 500;
}

.signature-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-trust-modern {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-trust-modern {
        justify-content: center;
    }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #1EBE5D;
}
.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* FLOATING PHONE */
.floating-phone {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}
.floating-phone:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--accent-hover);
}
.floating-phone svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ANIMATIONS */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}
.fade-up { transform: translateY(50px); }
.fade-right { transform: translateX(-50px); }
.fade-left { transform: translateX(50px); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .ba-slider-container { grid-column: span 1 !important; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    
    .about-container { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    
    .stats-container { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.5rem; }
    
    .marquee-content { gap: 3rem; }
    .marquee-content span { font-size: 1.5rem; }
    
    .floating-whatsapp { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .floating-whatsapp svg { width: 28px; height: 28px; }
    .floating-phone { width: 50px; height: 50px; bottom: 85px; right: 20px; }
    .floating-phone svg { width: 24px; height: 24px; }

}

/* LENIS SMOOTH SCROLL */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* NEW MODERN HERO ASYMMETRIC */
.hero-wrapper {
    position: relative;
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    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");
    opacity: 0.08;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

.hero-content-asymmetric {
    position: absolute;
    top: 50vh; /* Centered in the initial 100vh viewport, NOT the 150vh wrapper */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
}

.hero-text-col {
    flex: 1;
    max-width: 800px;
}

.hero-title-modern {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.text-outline {
    /* Removed -webkit-text-stroke due to font path overlapping bug. Using accent color for emphasis instead. */
    color: var(--accent);
    text-shadow: 0 4px 20px rgba(217, 4, 41, 0.4);
}

.hero-title-modern .stagger-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpStagger 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-modern .stagger-text:nth-child(1) { animation-delay: 0.2s; }
.hero-title-modern .stagger-text:nth-child(2) { animation-delay: 0.35s; }
.hero-title-modern .stagger-text:nth-child(3) { animation-delay: 0.5s; }

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

.hero-subtitle-modern {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUpStagger 0.8s forwards 0.65s;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUpStagger 0.8s forwards 0.8s;
}

.btn-pill {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(217, 4, 41, 0.6);
    transform: translateY(-2px);
}

.btn-icon-slide {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-icon-slide {
    transform: translateX(5px);
}

.hero-glass-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUpStagger 0.8s forwards 1s;
}

.hero-stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3.5rem;
    text-align: right;
}

.hero-stat-modern .stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-modern .stat-label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    height: 60px;
    display: flex;
    justify-content: center;
}

.pulse-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: pulseLine 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseLine {
    0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.3; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@media (max-width: 992px) {
    .hero-content-asymmetric {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }
    .hero-stats-col {
        text-align: left;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .hero-title-modern {
        font-size: 2.4rem;
    }
}
/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    z-index: 10000;
    padding: 1.5rem 0;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}

/* ==========================================
   IMAGE PROTECTION OVERLAYS
   ========================================== */
.gallery-item::after,
.service-single-hero::after,
.hero-wrapper::after,
.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
    pointer-events: auto; /* Catch right-clicks */
}

/* Let links and buttons inside these containers still be clickable */
.gallery-item a,
.gallery-item button,
.service-single-hero a,
.service-single-hero button,
.hero-wrapper a,
.hero-wrapper button {
    position: relative;
    z-index: 10;
}

/* ==========================================
   DEVTOOLS WARNING SCREEN
   ========================================== */
#devtools-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 999999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--accent);
    font-family: var(--font-heading);
}

#devtools-warning.active {
    display: flex;
}

#devtools-warning h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#devtools-warning p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    font-family: var(--font-body);
}

#devtools-warning svg {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    animation: pulseLine 2s infinite;
}

/* ========================
   LOGO IMAGE STYLES
   ======================== */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(1);
}

.logo-img:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

/* Footer logo — biraz daha büyük */
.logo-img--footer {
    height: 56px;
    filter: brightness(0.95);
}

/* ========================
   DÜZELTME 1: BA SLIDER - gallery-item::after tıklama engeli
   ======================== */
.ba-slider-container::after {
    display: none !important;
    pointer-events: none !important;
}

/* ========================
   DÜZELTME 2: service-img-wrapper::after buton engeli kaldır
   ======================== */
.service-img-wrapper::after {
    pointer-events: none !important;
}



/* ========================
   DÜZELTME 4: service-img-wrapper::after buton engeli
   position:relative ekleyerek ::after sadece resme sınırlı kalsın
   ======================== */
.service-img-wrapper {
    position: relative;
    overflow: hidden;
}

.service-detail .service-text {
    position: relative;
    z-index: 10;
}

.service-detail .btn {
    position: relative;
    z-index: 10;
}

/* ========================
   DÜZELTME 5: BA SLIDER - gallery-item::after z-index:5 handle'ı engelliyordu
   Handle z-index:3 < ::after z-index:5 → slider çalışmıyordu
   ======================== */
.ba-slider-container {
    position: relative !important;
}

.ba-slider {
    z-index: 10 !important;
    cursor: ew-resize !important;
}

.ba-slider .resize {
    z-index: 11 !important;
}

.ba-slider .handle {
    z-index: 15 !important;
    pointer-events: auto !important;
}

/* gallery-item.ba-slider-container için ::after tamamen kaldır */
.gallery-item.ba-slider-container::after {
    display: none !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* ============================================
   NAV DROPDOWN MENU — Premium Hover Dropdown
   ============================================ */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.nav-dropdown-trigger .dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Dropdown panel */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(217, 4, 41, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
}

/* Üçgen ok */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(14, 14, 14, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    rotate: 45deg;
}

/* Bridge to prevent hover loss when moving mouse down */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown linkleri */
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-dropdown-menu a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(217, 4, 41, 0.08);
    border-left-color: var(--accent);
    padding-left: 22px;
}

.nav-dropdown-menu a:hover svg {
    opacity: 1;
}

/* Ayırıcı çizgi + "Tüm Hizmetleri Gör" butonu */
.nav-dropdown-menu .dropdown-all-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 10px 4px;
    padding: 9px 12px;
    background: rgba(217, 4, 41, 0.12);
    border: 1px solid rgba(217, 4, 41, 0.25);
    border-radius: 8px;
    color: var(--accent) !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu .dropdown-all-link:hover {
    background: rgba(217, 4, 41, 0.25);
    border-color: var(--accent);
    color: #fff !important;
    padding-left: 12px;
}

.nav-dropdown-menu .dropdown-all-link svg {
    color: currentColor;
    opacity: 1;
}

/* Dropdown'dan önce ayırıcı */
.nav-dropdown-menu a:last-child {
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 14px;
}
/* Mobil: dropdown gizle, normal link gibi davransın */
@media (max-width: 768px) {
    /* Mobilde açılır menüyü tamamen iptal et, Hizmetler normal bir link olsun */
    .nav-dropdown {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        flex-direction: row !important;
    }
    
    .nav-dropdown-menu {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
}

/* ==========================================
   MOBILE OPTIMIZATIONS (KUTUCUKLAR)
   ========================================== */
@media (max-width: 768px) {
    /* Hero Stats Card (Kutucuk) */
    .hero-glass-card {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .hero-stat-modern .stat-number {
        font-size: 2.2rem !important;
    }
    
    .hero-stat-modern .stat-label {
        font-size: 0.8rem !important;
    }
    
    .hero-stats-col {
        gap: 1rem !important;
    }
    
    /* Service Detail Cards (Hizmetlerimiz Sayfası Kutucukları) */
    .service-detail {
        padding: 1.2rem !important;
        border-radius: 16px !important;
        gap: 1.2rem !important;
    }
    
    .service-text h2 {
        font-size: 1.6rem !important;
    }
    
    .service-text p {
        font-size: 0.95rem !important;
    }
    
    /* Projeler Gallery Items (Kutucuklar) */
    .gallery-item {
        border-radius: 12px !important;
    }
    
    .gallery-overlay {
        padding: 1rem !important;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem !important;
    }
    
    /* İletişim / Contact Box */
    .contact-info-box {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
}

/* ==========================================
   GLOBAL MOBILE OVERFLOW FIX & HERO TWEAKS
   ========================================== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    /* Disable Parallax/Sticky System on Mobile */
    .hero-wrapper {
        height: auto !important;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    .hero-bg-fixed {
        position: absolute !important;
        height: 100% !important;
    }
    .hero-content-container {
        position: relative !important;
        height: auto !important;
    }
    .hero-content-asymmetric {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        height: auto !important;
        min-height: unset !important;
        padding-top: 150px !important;
        padding-bottom: 40px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .scroll-indicator-modern {
        display: none !important; /* Hide scroll indicator on mobile for cleaner look */
    }

    /* Font Fixes */
    .hero-title-modern {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Testimonial Size Fixes */
    .testimonial-card {
        padding: 1.5rem !important;
    }
    .testimonial-card::before {
        font-size: 4rem !important;
        top: 0.5rem !important;
        left: 1rem !important;
    }
    .testimonial-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.2rem !important;
    }
    .testimonial-author {
        padding-top: 1rem !important;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-consent-banner.show {
    bottom: 0;
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}
.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}
.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.btn-cookie {
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-cookie-accept {
    background: var(--primary);
    color: #fff;
}
.btn-cookie-accept:hover {
    background: #d61a1a;
}
.btn-cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-cookie-decline:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Fix for iOS Safari video play button overlay */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
.hero-video {
    pointer-events: none !important;
}

.gallery-item img { aspect-ratio: 4/3; object-fit: cover; }

