:root {
    --primary-gold: #C5A052;
    --primary-gold-dark: #A68A3A;
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-light: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

header {
    background: var(--primary-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-strong);
    overflow: visible;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1001;
}

/* McCain-style extended logo with angled background - extends below header */
.logo-image {
    max-height: 100px !important;
    width: auto;
    position: relative;
    top: 20px;
    z-index: 2;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.logo::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 4px;
    width: 230px;
    height: 120px;
    background: linear-gradient(145deg, var(--primary-gold) 0%, #d4b366 50%, #b8944a 100%);
    transform: skewX(-6deg) rotate(-3deg);
    border-radius: 18px;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(197, 160, 82, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover::before {
    transform: skewX(-6deg) rotate(-3deg) scale(1.02);
    box-shadow:
        0 20px 50px rgba(197, 160, 82, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.logo:hover .logo-image {
    transform: scale(1.03);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    font-style: italic;
}

.logo-text span {
    color: var(--primary-gold);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-gold);
}

.language-selector {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 15px;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.lang-current:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border-radius: 5px;
    box-shadow: 0 10px 30px var(--shadow-strong);
    display: none;
    min-width: 150px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown,
.language-selector.active .lang-dropdown {
    display: block;
}

/* Navigation Dropdown */
.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-strong);
    display: none;
    min-width: 200px;
    margin-top: 10px;
    overflow: hidden;
    z-index: 1000;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.dropdown-active .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.nav-dropdown a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding-left: 25px;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

.lang-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.lang-dropdown a:hover {
    background: var(--primary-gold);
    color: var(--text-light);
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Banner Style (index2.php) */
.hero-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.6) 100%);
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 700px;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.banner-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.banner-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 82, 0.15);
    border: 1px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
}

.banner-badges .badge svg {
    width: 18px;
    height: 18px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-black);
    border-color: var(--text-light);
}

/* Hero Banner - no default section padding */
.hero-banner {
    padding: 0 !important;
}

/* Visual-focused banner (index2) */
.hero-banner.hero-banner-visual {
    position: relative;
}

.hero-banner.hero-banner-visual .banner-container {
    position: relative;
}

.banner-overlay-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.3) 25%,
        rgba(26, 26, 26, 0.05) 50%,
        rgba(26, 26, 26, 0.2) 100%
    );
    pointer-events: none;
}

.banner-minimal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding-bottom: 50px;
}

.banner-text-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 25px;
}

.banner-text-bottom h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-light);
    max-width: 450px;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .banner-text-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .banner-text-bottom h1 {
        font-size: 22px;
    }

    .banner-minimal-content {
        padding-bottom: 30px;
    }

    .banner-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Features Strip */
.features-strip {
    background: var(--primary-gold);
    padding: 20px 0 !important;
}

/* Products section after features strip - reduced top padding */
.features-strip + .products-section {
    padding-top: 50px;
}

/* Quality section after products - reduced top padding */
.products-section + .quality-section {
    padding-top: 50px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 15px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-black);
}

@media (max-width: 768px) {
    .hero-banner {
        height: calc(100vh - 70px);
        min-height: 500px;
    }

    .banner-content h1 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .features-grid {
        flex-direction: column;
        gap: 15px;
    }

    .features-strip + .products-section {
        padding-top: 40px;
    }
}

/* Visual-focused hero (full-screen media) */
.hero.hero-visual-focus {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: block;
}

.hero-media-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container-full {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container-full iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 100/56.25 = 1.78 */
    transform: translate(-50%, -50%);
    border: none;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.4) 30%,
        rgba(26, 26, 26, 0.1) 60%,
        rgba(26, 26, 26, 0.3) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.hero-minimal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding-bottom: 60px;
}

.hero-text-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-text-bottom h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-mini-badges {
    display: flex;
    gap: 15px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(197, 160, 82, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .hero-text-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-text-bottom h1 {
        font-size: 24px;
    }

    .hero-mini-badges {
        flex-wrap: wrap;
    }

    .mini-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-minimal-content {
        padding-bottom: 40px;
    }
}

/* Original hero layout (fallback) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23C5A052" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-gold);
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 82, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
}

.badge svg {
    width: 20px;
    height: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 82, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 15px 30px rgba(197, 160, 82, 0.4);
}

section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-gold);
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gold);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.product-content .slogan {
    font-size: 14px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-style: italic;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(197, 160, 82, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

.feature-tag svg {
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
}

.product-nutrition {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.nutrition-item {
    font-size: 12px;
    color: #666;
}

.nutrition-item strong {
    display: block;
    font-size: 16px;
    color: var(--primary-black);
    margin-bottom: 3px;
}

.about-section {
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px var(--shadow);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(197, 160, 82, 0.4);
}

.about-image-badge h4 {
    font-size: 36px;
    font-weight: 800;
}

.about-image-badge p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--primary-gold);
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 82, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.quality-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-light);
}

.quality-section .section-header h2 {
    color: var(--text-light);
}

.quality-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.quality-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 82, 0.2);
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: rgba(197, 160, 82, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-black);
}

.quality-icon svg {
    width: 36px;
    height: 36px;
}

.quality-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.quality-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: var(--primary-black);
    padding: 50px;
    border-radius: 20px;
    color: var(--text-light);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-gold);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--primary-black);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

footer {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about .logo-text {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.footer-column h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-flags {
    display: flex;
    gap: 10px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--primary-gold);
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.page-content {
    padding: 80px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.product-detail:last-child {
    border-bottom: none;
}

.product-detail-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.product-detail-image img {
    max-height: 400px;
    object-fit: contain;
}

.product-detail-content h2 {
    font-size: 32px;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.product-detail-content .slogan {
    color: var(--primary-gold);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.info-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
}

.info-box h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p,
.info-box ul {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li span:last-child {
    font-weight: 600;
    color: var(--primary-black);
}

.mobile-nav {
    display: none;
    background: var(--primary-black);
    padding: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}

.mobile-nav ul li a:hover {
    color: var(--primary-gold);
}

.mobile-nav .mobile-submenu a {
    padding-left: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-nav .mobile-submenu a:hover {
    color: var(--primary-gold);
}

.mobile-lang {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-lang a {
    padding: 8px 15px;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 12px;
}

.mobile-lang a.active,
.mobile-lang a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-strong);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.blog-content h2 {
    font-size: 20px;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.blog-article .blog-hero {
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    position: relative;
}

.blog-article .blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    padding-top: 100px;
}

.blog-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.blog-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.blog-share {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.blog-share a {
    color: var(--primary-gold);
    font-weight: 500;
}

.blog-share a:hover {
    text-decoration: underline;
}

.product-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #999;
    padding: 40px;
}

.captcha-wrapper {
    margin: 20px 0;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.theme-light header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px var(--shadow);
}

.theme-light .logo-text {
    color: var(--primary-black);
}

.theme-light nav ul li a {
    color: var(--text-dark);
}

.theme-light nav ul li a:hover,
.theme-light nav ul li a.active {
    color: var(--primary-gold);
}

.theme-light .lang-current {
    color: var(--text-dark);
}

.theme-light .mobile-menu-toggle span {
    background: var(--primary-black);
}

@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .contact-grid,
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .features-strip {
        display: none !important;
    }

    header nav {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        max-height: 65px !important;
        top: 15px;
    }

        .logo::before {
        width: 130px;
        height: 85px;
        top: -3px;
        left: 0px;
        transform: skewX(-4deg) rotate(-2deg);
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: center;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-about .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .product-info-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-grid {
        gap: 30px;
    }
}

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

    .logo-image {
        max-height: 55px !important;
        top: 12px;
    }

       .logo::before {
        width: 130px;
        height: 85px;
        top: -3px;
        left: 0px;
        transform: skewX(-4deg) rotate(-2deg);
        border-radius: 12px;
    }


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

    .footer-about {
        grid-column: 1 / -1;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    section {
        padding: 60px 0;
    }
}

/* Corporate Pages */
.corporate-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.corporate-body {
    max-width: 860px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

.corporate-body p {
    margin-bottom: 20px;
}

.corporate-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 35px 0 15px;
}

.corporate-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 30px 0 12px;
}

.corporate-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 25px 0 10px;
}

.corporate-body ul,
.corporate-body ol {
    margin: 15px 0;
    padding-left: 30px;
}

.corporate-body li {
    margin-bottom: 8px;
}

.corporate-body img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
}

.corporate-body blockquote {
    border-left: 4px solid var(--primary-gold);
    padding: 15px 25px;
    margin: 25px 0;
    background: rgba(197, 160, 82, 0.05);
    font-style: italic;
    color: #666;
    border-radius: 0 10px 10px 0;
}

.corporate-body a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.corporate-body a:hover {
    color: var(--primary-gold-dark);
}

.corporate-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.corporate-body table th,
.corporate-body table td {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    text-align: left;
}

.corporate-body table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-black);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-gold);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-gold);
}

.feature-card h4 {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-light);
}

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

.stat-item {
    text-align: center;
    padding: 30px 15px;
    border: 1px solid rgba(197, 160, 82, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(197, 160, 82, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    line-height: 1.3;
}

.stat-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-black);
}

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

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }

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

    .stat-item h3 {
        font-size: 18px;
    }

    .corporate-body {
        font-size: 16px;
    }
}

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

/* Video Section */
.video-section {
    background: var(--bg-light);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: #000;
}

/* Footer Email */
.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(197, 160, 82, 0.12);
    border: 1px solid rgba(197, 160, 82, 0.3);
    border-radius: 8px;
    color: var(--primary-gold) !important;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    word-break: break-all;
}

.footer-email:hover {
    background: var(--primary-gold);
    color: var(--primary-black) !important;
    border-color: var(--primary-gold);
}

.footer-email svg {
    flex-shrink: 0;
}