:root {
    --color-primary: #4A5D23;
    --color-primary-dark: #3D4D1C;
    --color-secondary: #5C4033;
    --color-accent: #8B7355;
    --color-dark: #2D2D2D;
    --color-darker: #242424;
    --color-light: #F5F5DC;
    --color-khaki: #78866B;
    --color-sand: #C2B280;
    --color-olive: #556B2F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--color-dark);
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn-military {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.btn-military:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 93, 35, 0.4);
}

.btn-military-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--color-primary);
    padding: 10px 28px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.btn-military-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Header */
.main-header {
    background: var(--color-darker);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 93, 35, 0.3);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(36, 36, 36, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 10px;
}

.logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary) !important;
}

.dropdown-menu {
    background: var(--color-darker);
    border: 1px solid var(--color-primary);
    border-radius: 0;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-menu .dropdown-item {
    color: #fff !important;
    font-family: 'Source Sans 3', sans-serif;
    padding: 10px 20px;
    transition: all 0.3s ease;
    background: transparent !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.header-phone {
    color: var(--color-sand);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    margin-left: 20px;
}

.header-phone:hover {
    color: var(--color-primary);
}

.lang-switch a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--color-primary);
}

.navbar-toggler {
    border-color: var(--color-primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234A5D23' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.85) 0%, rgba(74, 93, 35, 0.6) 100%),
                url('/theme/sky/img/hero-img.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-section.hero-small {
    min-height: 50vh;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-left: 4px solid var(--color-primary);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.about-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 4px solid var(--color-primary);
    border-top: 4px solid var(--color-primary);
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--color-darker);
}

.service-card {
    background: var(--color-dark);
    border: 1px solid rgba(74, 93, 35, 0.3);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .btn-link {
    color: var(--color-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .btn-link i {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.service-card .btn-link:hover {
    color: var(--color-sand);
}

.service-card .btn-link:hover i {
    color: var(--color-sand);
    transform: translateX(5px);
}

/* Works Section */
.works-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.swiper {
    padding-bottom: 50px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 379 / 274;
    object-fit: contain;
    background: var(--color-darker);
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
}

/* Gallery */
.gallery-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.gallery-item {
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-olive) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section .btn-military {
    background: #fff;
    color: var(--color-primary-dark);
}

.cta-section .btn-military:hover {
    background: var(--color-sand);
}

/* Certificates Section */
.certificates-section {
    padding: 100px 0;
    background: var(--color-darker);
}

.cert-item {
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cert-item:hover {
    border-color: var(--color-primary);
}

.cert-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.41;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cert-item:hover img {
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(74, 93, 35, 0.3);
}

/* Contacts Section */
.contacts-section {
    padding: 100px 0;
    background: var(--color-darker);
}

.contact-info h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 25px;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-primary);
}

.contact-form .form-control {
    background: var(--color-dark);
    border: 1px solid rgba(74, 93, 35, 0.3);
    color: #fff;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    background: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: none;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: #888;
}

/* Footer */
.main-footer {
    background: var(--color-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(74, 93, 35, 0.3);
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #777;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-primary-dark);
}

/* Modal */
.modal-content {
    background: var(--color-darker);
    border: 1px solid var(--color-primary);
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid rgba(74, 93, 35, 0.3);
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body .form-control {
    background: var(--color-dark);
    border: 1px solid rgba(74, 93, 35, 0.3);
    color: #fff;
    padding: 15px;
    border-radius: 0;
    margin-bottom: 20px;
}

.modal-body .form-control::placeholder {
    color: #999;
}

.modal-body .form-control:focus {
    background: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: none;
    color: #fff;
}

.cert-modal .modal-dialog {
    max-width: 800px;
}

.cert-modal .modal-body {
    padding: 0;
}

.cert-modal .modal-body img {
    width: 100%;
    height: auto;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.success-message h4 {
    color: #fff;
    margin-bottom: 10px;
}

.success-message p {
    color: #aaa;
}

/* Service Detail Page */
.service-detail {
    padding: 100px 0;
    background: var(--color-dark);
}

.service-detail h2 {
    margin-bottom: 30px;
}

.service-detail p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 93, 35, 0.2);
    color: #ccc;
}

.service-detail ul li i {
    color: var(--color-primary);
    margin-right: 10px;
}

.service-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.service-gallery img:hover {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--color-darker);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid var(--color-primary);
    }
    
    .header-phone {
        margin: 15px 0;
        display: block;
    }
    
    .lang-switch {
        margin-top: 15px;
    }
    
    .hero-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .hero-content .btn-military,
    .hero-content .btn-military-outline {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-content .btn-military {
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-img img {
        height: 300px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-menu a {
        display: block;
        margin: 10px 0;
    }
}


/* SEO Section */
.seo-section {
    padding: 80px 0 120px;
    background: var(--color-dark);
    border-top: 1px solid rgba(74, 93, 35, 0.2);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--color-primary);
    text-transform: none;
    letter-spacing: 0;
}

.seo-content p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.seo-intro {
    font-size: 1.1rem !important;
    color: #ccc !important;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(74, 93, 35, 0.15);
}

.seo-list li:last-child {
    border-bottom: none;
}

.seo-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--color-primary);
    font-size: 0.85rem;
}

.seo-list li strong {
    color: #fff;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0 80px;
    }
    
    .seo-title {
        font-size: 1.5rem;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
    }
    
    .seo-content p {
        text-align: left;
    }
}

/* Custom Video Player */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background: #000;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.video-preview:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}

.video-preview:hover .play-btn {
    background: var(--color-primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn i {
        font-size: 22px;
    }
}

/* Hide YouTube channel info (top overlay) */
.video-wrapper {
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
    pointer-events: auto;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.playing::after {
    opacity: 1;
}

/* Service Gallery */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 260;
    object-fit: cover;
    margin-bottom: 0;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

@media (max-width: 576px) {
    .service-gallery {
        grid-template-columns: 1fr;
    }
}

/* Works Gallery Section */
.works-gallery-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.section-subtitle {
    color: #aaa;
    font-size: 18px;
    margin-top: 10px;
}

/* Filter Buttons */
.works-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: #fff;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 260;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.gallery-overlay span {
    color: var(--color-primary);
    font-size: 14px;
}

/* Work Item Animation */
.work-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

@media (max-width: 768px) {
    .works-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .works-gallery-section {
        padding: 60px 0;
    }
}

/* Simple Gallery Item */
.gallery-item-simple {
    overflow: hidden;
}

.gallery-item-simple img {
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 260;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.gallery-item-simple:hover img {
    filter: grayscale(0%);
}

/* About Intro Section */
.about-intro-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.about-intro-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.lead-text {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--color-primary);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--color-darker);
}

.mission-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.value-card {
    background: var(--color-darker);
    padding: 40px 30px;
    height: 100%;
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 24px;
    color: #fff;
}

.value-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-card p {
    color: #aaa;
    margin-bottom: 0;
}

/* Production Section */
.production-section {
    padding: 80px 0;
    background: var(--color-darker);
}

.production-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    padding: 10px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li i {
    color: var(--color-primary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 42px;
    }
    
    .about-intro-section,
    .mission-section,
    .values-section,
    .production-section {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 30px 20px;
    }
}

/* Contacts Info Section */
.contacts-info-section {
    padding: 80px 0;
    background: var(--color-darker);
}

.contact-card {
    background: var(--color-dark);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-card p {
    color: #aaa;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--color-primary);
}

/* Contacts Main Section */
.contacts-main-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--color-darker);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(80%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(20%);
}

/* Social Section */
.social-section {
    padding: 60px 0;
    background: var(--color-darker);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--color-dark);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.social-link:hover i {
    color: #fff;
}

@media (max-width: 768px) {
    .contacts-info-section,
    .contacts-main-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-icon i {
        font-size: 24px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link i {
        font-size: 20px;
    }
    
    .map-container {
        height: 300px;
    }
}