/* Root Colors & Variables */
:root {
    --primary-color: #0a2540; /* Deep Navy */
    --primary-light: #1a3a52;
    --secondary-color: #f5f5f5; /* Light Gray */
    --accent-color: #d4af37; /* Gold */
    --accent-dark: #b8930f;
    --text-color: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e8e8e8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    z-index: 999;
    transition: var(--transition);
    font-size: 1rem;
    white-space: nowrap;
    min-width: fit-content;
}

.floating-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.floating-call-btn:hover::after {
    content: '+213 556 49 30 76';
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    animation: slideUp 0.3s ease;
}

.floating-call-btn:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 0px);
    right: 20px;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(45deg);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-call-btn:active {
    transform: translateY(-2px);
}

.call-icon {
    font-size: 1.3rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(15deg); }
    30%, 50%, 70%, 90% { transform: rotate(-15deg); }
    40%, 60%, 80% { transform: rotate(15deg); }
}

.call-text {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: var(--white);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    height: 44px;
}

.logo-section:hover {
    opacity: 0.8;
}

.navbar-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 300px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 233px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.language-toggle {
    display: flex;
    gap: 0.3rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.lang-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

/* Desktop Navigation */
.hamburger {
    display: none !important;
}

.mobile-menu {
    display: none !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .language-toggle {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        margin-left: auto;
    }

    /* Mobile: ONLY IMAGE - hide text and stats completely */
    .hero {
        display: block;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        padding: 0;
        position: relative;
        background-repeat: no-repeat;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }

    .hero::before {
        display: none !important;
    }

    .hero::after {
        display: none !important;
    }

    /* HIDE on mobile - completely */
    .hero-content {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .hero-stats {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .hero-stat {
        display: none !important;
    }

    .stat-value {
        display: none !important;
    }

    .stat-label {
        display: none !important;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--white);
        min-width: 200px;
        box-shadow: var(--shadow-medium);
        z-index: 999;
        border-radius: 0 0 8px 8px;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        padding: 1rem 1.5rem;
        color: var(--text-color);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
    }

    .mobile-menu a:hover {
        background-color: var(--secondary-color);
        color: var(--accent-color);
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    position: relative;
    overflow: visible;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.5) 0%, rgba(26, 58, 82, 0.3) 100%);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

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

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    z-index: 2;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.5) 0%, rgba(26, 58, 82, 0.3) 100%);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Featured Section */
.featured {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.featured-list {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-weight: 500;
}

.featured-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    gap: 0.5rem;
}

.cta-link:hover {
    gap: 1rem;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.section-header.white-text h2,
.section-header.white-text p {
    color: var(--white);
}

/* Production Line Section */
.production-line-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(26, 58, 82, 0.05) 100%);
    border-radius: 12px;
}

.production-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.production-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.production-features {
    list-style: none;
    margin: 0;
}

.production-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-weight: 500;
}

.production-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.production-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    width: 100%;
    min-height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-video video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-image::after {
    opacity: 0.1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.service-link:hover {
    gap: 1rem;
}

/* Brands Showcase */
.brands-showcase {
    padding: 5rem 2rem;
    background-color: #fafafa;
    margin-top: 3rem;
}

.brands-showcase .section-header {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.brands-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brands-carousel {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .brand-item {
        flex: 0 0 calc(50% - 1rem);
        scroll-snap-align: start;
    }
}

.brand-item {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none;
    border-radius: 0;
}

.brand-item:hover .brand-image {
    box-shadow: none;
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.brand-name {
    display: none;
}

.brand-item h3 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.brand-item p {
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.4;
}

.brand-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-card:hover .stat-icon {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    max-width: 1400px;
    margin: 3rem auto;
    border-radius: 12px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-with-logo {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    flex-shrink: 0;
    max-width: 400px;
}

.footer-text-content {
    flex: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition);
    font-weight: 600;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Video Player - Full Screen */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: #000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-overlay {
    display: none;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    color: var(--white);
}

.video-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Video Player */
@media (max-width: 768px) {
    .video-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* About Page Specific */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.value-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.value-card {
    position: relative;
    padding-top: 3rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding: 2rem 0 2rem 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-dark) 100%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -67px;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-year {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 1.2rem 0;
    padding-left: 2.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-list li svg {
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.benefits-list li span {
    display: block;
}

/* Contact Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

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

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.info-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.map-container {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.map-container h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.map-container iframe {
    border-radius: 8px;
}

.cta-section-contact {
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 12px;
    margin-top: 2rem;
}

.cta-section-contact h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-contact p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Brands Page */
.brands-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.brands-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.brands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.brand-card {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.brand-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(10px);
}

.brand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
}

.brand-logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.brand-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.brand-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-features span {
    background-color: var(--secondary-color);
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.distribution {
    background-color: #fafafa;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.distribution .section-header {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.dist-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.dist-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.dist-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    transition: var(--transition);
}

.dist-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dist-item:hover .dist-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

.dist-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dist-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Premium Brands Gallery */
.premium-gallery {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.premium-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.premium-brand-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    group: hover;
}

.premium-brand-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-8px);
}

.premium-brand-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition);
}

.premium-brand-card:hover .premium-brand-bg {
    transform: scale(1.05);
}

.premium-brand-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 2rem;
    z-index: 2;
    color: var(--white);
    text-align: center;
    transition: var(--transition);
}

.premium-brand-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.premium-brand-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.view-gallery-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    position: relative;
    pointer-events: auto;
}

.view-gallery-btn:hover {
    background-color: var(--accent-dark);
    transform: scale(1.05);
}

.premium-brand-card {
    cursor: pointer;
    pointer-events: auto;
}

/* Brands & Gallery Container - Two Column Layout */
.brands-gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    align-items: flex-start;
}

/* Left Side - Brands */
.brands-showcase-side {
    display: flex;
    flex-direction: column;
}

.brands-showcase-side .section-header {
    margin-bottom: 2rem;
}

.brands-showcase-side .section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.brands-showcase-side .section-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.brands-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brands-grid .brand-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: left;
    cursor: pointer;
}

.brands-grid .brand-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(8px);
}

.brands-grid .brand-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.brands-grid .brand-logo {
    height: 50px;
    width: auto;
}

.brands-grid .brand-name {
    display: none;
}

.brands-grid .brand-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.brands-grid .brand-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Right Side - Gallery */
.gallery-showcase-side {
    display: none;
    flex-direction: column;
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 100px;
}

.gallery-showcase-side.active {
    display: flex;
}

.gallery-header {
    margin-bottom: 1.5rem;
}

.gallery-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 350px;
    margin-bottom: 1.5rem;
}

.gallery-images {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-images img {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.gallery-images img.hidden {
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(10, 37, 64, 0.8);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.gallery-nav:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.gallery-prev {
    left: 0.5rem;
}

.gallery-next {
    right: 0.5rem;
}

.image-counter {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
}

.close-gallery-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-gallery-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .brands-gallery-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-showcase-side {
        position: relative;
        top: 0;
        width: 100%;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .brands-gallery-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 0;
    }

    .brands-showcase-side {
        display: contents;
    }

    .brands-showcase-side .section-header {
        grid-column: 1;
        margin-bottom: 2rem;
    }

    .brands-showcase-side .section-header h2 {
        font-size: 1.5rem;
    }

    .brands-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .brands-grid .brand-item {
        grid-column: auto;
        padding: 0.8rem;
        margin: 0;
    }

    .brands-grid .brand-image {
        height: 80px;
        margin-bottom: 0.5rem;
    }

    .brands-grid .brand-logo {
        height: 35px;
        max-width: 85%;
    }

    .brands-grid .brand-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .brands-grid .brand-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Gallery appears directly after the active brand */
    .gallery-showcase-side {
        display: none;
        grid-column: 1;
        width: 100%;
        margin-top: 1.5rem;
        position: relative;
        top: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .gallery-showcase-side.active {
        display: block;
    }

    .gallery-wrapper {
        min-height: 280px;
        padding: 1rem;
    }

    .gallery-images img {
        max-height: 280px;
    }

    .gallery-header h2 {
        font-size: 1.5rem;
    }

    .gallery-header p {
        font-size: 0.85rem;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-shadow: none;
        color: var(--primary-color);
    }

    .hero-content p {
        font-size: 1rem;
        text-shadow: none;
        color: var(--primary-color);
    }

    .hero-badge {
        text-shadow: none;
        color: var(--primary-color);
    }


    /* Remove bullets from featured list on mobile */
    .featured-list li::before {
        display: none;
    }

    .featured-list li {
        padding-left: 0 !important;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-text h2 {
        font-size: 2rem;
    }

    .production-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .production-text h2 {
        font-size: 2rem;
    }

    .production-line-section {
        padding: 3rem 2rem;
    }

    .services-grid,
    .stats-grid,
    .brands-carousel {
        grid-template-columns: 1fr;
    }

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

    .brand-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline {
        padding-left: 60px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item::before {
        left: -37px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .logo-main {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .featured-text h2,
    .about-section h2 {
        font-size: 1.5rem;
    }

    .featured-list li {
        padding-left: 1.5rem;
    }

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

    .cta-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }

    /* Floating call button mobile styles */
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .floating-call-btn:hover::after {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .call-icon {
        font-size: 1.1rem;
    }

    .call-text {
        font-size: 0.85rem;
        color: var(--white);
    }
}
