/* ========================================
   Bluefin Tuna Documentary Sales Page
   Color Palette: Orange #FF8C42, Blue #0099CC
   ======================================== */

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

:root {
    --primary-orange: #FF8C42;
    --primary-blue: #0099CC;
    --dark-blue: #006699;
    --light-blue: #E6F7FF;
    --dark-gray: #2C3E50;
    --medium-gray: #7F8C8D;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
    --black: #1A1A1A;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Header Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-orange), #FF6F20);
    color: white;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, #FF6F20, var(--primary-orange));
}

.nav-link i {
    font-size: 16px;
}

.language-toggle {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.lang-btn {
    padding: 8px 12px;
    border: 2px solid var(--primary-blue);
    background-color: var(--white);
    color: var(--primary-blue);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 50px;
}

.lang-btn:hover {
    background-color: var(--light-blue);
    transform: scale(1.05);
}

.lang-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(0, 153, 204, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.hero-tagline {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Video Container */
.video-container {
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Key Stats */
.key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 140, 66, 0.2);
}

.stat-item i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ========================================
   SYNOPSIS SECTION
   ======================================== */

.synopsis {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
}

.synopsis-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.synopsis-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.synopsis-content p.highlight {
    background-color: var(--light-blue);
    padding: 25px;
    border-left: 5px solid var(--primary-orange);
    border-radius: 5px;
    font-weight: 600;
    margin: 30px 0;
}

/* ========================================
   WHY THIS DOCUMENTARY SECTION
   ======================================== */

.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 36px;
    color: var(--white);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* ========================================
   PHOTO GALLERY SECTION
   ======================================== */

.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: -30px auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 16/9;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-text {
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-text p {
    font-size: 15px;
    opacity: 0.9;
}

.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 140, 66, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-expand:hover {
    background-color: var(--primary-orange);
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: var(--primary-blue);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    font-size: 18px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 140, 66, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   DIRECTORS SECTION
   ======================================== */

.directors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.director-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.director-photo-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.director-photo-placeholder i {
    font-size: 120px;
    opacity: 0.5;
    margin-bottom: 15px;
}

.placeholder-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.director-photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.director-info {
    padding: 30px;
}

.director-info h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.director-title {
    font-size: 16px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.director-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ========================================
   TECHNICAL SPECIFICATIONS SECTION
   ======================================== */

.technical-specs {
    padding: 80px 0;
    background-color: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.spec-group {
    background-color: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-orange);
}

.spec-group h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.spec-group ul {
    list-style: none;
}

.spec-group li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-group li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-right: 8px;
}

.spec-group li.indent {
    padding-left: 20px;
    font-size: 15px;
    color: var(--medium-gray);
}

.spec-group strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* ========================================
   TARGET AUDIENCE SECTION
   ======================================== */

.target-audience {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.target-audience .section-title {
    color: var(--white);
}

.target-audience .section-title::after {
    background: var(--primary-orange);
}

.audience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.audience-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.audience-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.audience-item:hover {
    background-color: rgba(255, 140, 66, 0.2);
    transform: scale(1.05);
}

.audience-item i {
    font-size: 36px;
    color: var(--primary-orange);
}

.audience-item span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.5);
}

.cta-button i {
    font-size: 24px;
}

.contact-email {
    margin-top: 30px;
    font-size: 18px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-email i {
    color: var(--primary-orange);
    font-size: 20px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.footer-logo h3 {
    font-size: 28px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-links a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

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

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

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

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

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

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

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

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo {
        order: 1;
        flex-basis: 100%;
        text-align: center;
    }
    
    .logo-img {
        height: 35px;
        margin: 0 auto;
    }
    
    .header-nav {
        order: 2;
        flex-basis: 100%;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .language-toggle {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 16px;
        min-width: 45px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .key-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content > p {
        font-size: 16px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }

    .synopsis-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .why-card,
    .spec-group {
        padding: 25px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* ===== V11 GDPR + AI + site alignment overrides ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 0;
}
.header-topbar {
    background: #3d3c44;
    padding: 4px 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-main {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.15rem;
    flex: 1;
}
.main-nav a {
    background: transparent;
    color: #3d3c44;
    box-shadow: none;
    border-radius: 0;
    padding: 0.55rem 0.8rem;
    border-bottom: 3px solid transparent;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.main-nav a:hover,
.main-nav a:focus-visible {
    color: #FF8A24;
    background: transparent;
    border-bottom-color: #FF8A24;
    transform: none;
    box-shadow: none;
}
.shop-link {
    color: #FF8A24 !important;
}
.lang-btn {
    min-width: auto;
    font-size: 1rem;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    opacity: 0.76;
    background: transparent;
    color: #fff;
}
.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
    color: #fff;
    box-shadow: none;
    transform: none;
}
.iv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.stat-item .iv-icon {
    display: block;
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}
.why-icon .iv-icon {
    font-size: 34px;
    color: #fff;
}
.nav-link .iv-icon,
.cta-button .iv-icon,
.contact-email .iv-icon,
.gallery-expand .iv-icon,
.lightbox-close .iv-icon,
.lightbox-nav .iv-icon,
.audience-item .iv-icon {
    font-size: 1em;
}
.video-consent {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.28);
    background: #0a1628;
}
.video-consent-poster {
    position: relative;
    min-height: 506px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.video-consent-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.25), rgba(10,22,40,0.82));
}
.video-consent-poster > * {
    position: relative;
    z-index: 1;
}
.video-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #FF8A24, #d4641a);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.video-load-btn .iv-icon {
    font-size: 1.2rem;
}
.video-note {
    max-width: 760px;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
}
.site-footer {
    background: #FF8A24;
    color: #fff;
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.footer-brand,
.footer-nav-col,
.footer-contact-col {
    color: #fff;
}
.footer-nav-col h3,
.footer-contact-col h3 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    color: #fff;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.footer-links a,
.footer-legal-links a,
.footer-contact-col a,
.footer-bottom a {
    color: #fff;
}
.footer-legal-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}
.footer-social-icons {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.2rem;
}
.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.footer-address,
.footer-legal-note {
    color: rgba(255,255,255,0.94);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.24);
    margin-top: 1.5rem;
    padding-top: 1rem;
    text-align: center;
}
@media (max-width: 980px) {
    .header-main,
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .video-consent-poster {
        min-height: 360px;
    }
}
@media (max-width: 720px) {
    .hero {
        padding: 56px 0 48px;
    }
    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 28px;
    }
    .key-stats,
    .why-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 34px;
    }
    .video-consent-poster {
        min-height: 280px;
        padding: 1.4rem;
    }
}
