* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFC107;
    --primary-orange: #FF9800;
    --dark-yellow: #FFA000;
    --accent-yellow: #FFD54F;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-yellow: #FFC107;
    --border-yellow: #FFC107;
    --gradient-yellow: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    background-color: rgba(10, 10, 10, 0.95);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-yellow);
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    color: var(--text-white);
}

.logo-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.phone:hover {
    color: var(--primary-yellow);
}

.btn-primary {
    background: var(--gradient-yellow);
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
    padding-top: 10px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-yellow) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--primary-orange) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
}

.pattern-overlay::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-yellow);
    transform: rotate(45deg);
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: 120px;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 193, 7, 0.4), 0 0 80px rgba(255, 152, 0, 0.2);
    letter-spacing: 10px;
}

.hero-subtitle {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 20px;
    color: var(--primary-yellow);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.btn-hero {
    background: var(--gradient-yellow);
    color: #000000;
    border: none;
    padding: 20px 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 5px;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    box-shadow: 0 8px 35px rgba(255, 193, 7, 0.7);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.section-dark {
    background-color: var(--darker-bg);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-white);
    letter-spacing: 3px;
}

/* Production Grid */
.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.production-card {
    background-color: rgba(255, 193, 7, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s;
    border-radius: 8px;
}

.production-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
    transform: translateY(-5px);
    background-color: rgba(255, 193, 7, 0.08);
}

.production-card h3 {
    font-size: 28px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.production-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 193, 7, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .about-text {
        text-align: left;
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.4);
    background-color: rgba(255, 193, 7, 0.08);
}

.faq-item.active {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.3);
    background-color: rgba(255, 193, 7, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.faq-question h3 {
    font-size: 20px;
    color: var(--text-white);
    margin: 0;
    font-weight: bold;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 32px;
    color: var(--primary-yellow);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* Contacts Section */
.contacts-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-yellow);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.address-item {
    background-color: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    transform: translateY(-5px);
    background-color: rgba(255, 193, 7, 0.08);
}

.address-item strong {
    display: block;
    color: var(--primary-yellow);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.address-item p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .map-container {
        height: 400px;
    }

    .map-addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
}

.footer p {
    color: var(--text-light);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close:hover {
    color: var(--primary-yellow);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

/* Form */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--primary-yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-yellow);
    color: #000000;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
    display: block;
}

.form-message.error {
    background-color: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    display: block;
}

/* Section Description */
.section-description {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Card Styles */
.card {
    display: block !important;
    background-color: rgba(255, 193, 7, 0.05) !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    min-height: 400px !important;
}

.card:not(.video-card) .card-image-wrapper {
    height: 100% !important;
    min-height: 350px !important;
}

.card:not(.video-card):has(.card-content) {
    min-height: 400px !important;
}

.card:not(.video-card):not(:has(.card-content)) {
    min-height: 350px !important;
}

.card:not(.video-card):not(:has(.card-content)) .card-image-wrapper {
    min-height: 350px !important;
}

.card:hover {
    border-color: var(--primary-yellow) !important;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4) !important;
    transform: translateY(-10px) !important;
}

.card-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
    background: var(--darker-bg) !important;
    display: block !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
}

.card-image,
.card-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.card:hover .card-image,
.card:hover .card-video {
    transform: scale(1.1) !important;
}

.card-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 10 !important;
}

.card:hover .card-overlay {
    opacity: 1 !important;
}

.card-view-btn {
    background: var(--gradient-yellow) !important;
    color: #000000 !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 11 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4) !important;
}

.card-view-btn:hover {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6) !important;
}

.card-play-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: transform 0.3s ease !important;
    z-index: 11 !important;
}

.card-play-btn:hover {
    transform: scale(1.1) !important;
}

.card-play-btn svg {
    filter: drop-shadow(0 4px 15px rgba(255, 193, 7, 0.6)) !important;
}

.card-play-btn svg circle {
    fill: rgba(255, 193, 7, 0.95) !important;
}

.card-content {
    padding: 25px !important;
    display: block !important;
    background-color: rgba(255, 193, 7, 0.05) !important;
}

.card-title {
    font-size: 20px !important;
    color: var(--text-white) !important;
    margin-bottom: 10px !important;
    font-weight: bold !important;
    display: block !important;
}

.card-description {
    color: var(--text-light) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: block !important;
}

/* Video Card Specific */
.video-card .card-video {
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
}

.card-video::-webkit-media-controls {
    display: none !important;
}

.card-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-card.playing .card-video::-webkit-media-controls {
    display: flex !important;
}

.video-card.playing .card-overlay {
    display: none !important;
}

.video-card.playing .card-video {
    transform: scale(1) !important;
}

/* AOS Animation */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Image Modal */
#imageModal {
    display: none;
    z-index: 3000;
}

#imageModal.active {
    display: flex;
}

#imageModal .modal-image-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: auto;
    animation: modalImageZoom 0.3s ease-out;
}

@keyframes modalImageZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-image-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 48px;
    font-weight: bold;
    color: var(--text-white);
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.close-image-modal:hover {
    color: var(--primary-yellow);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.8);
}

.modal-image-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 18px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 5px;
}


/* Loading States */
.gallery-image,
.video-thumbnail {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-image.loaded,
.video-thumbnail.loaded {
    animation: none;
}

/* Responsive - Mobile First */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .header {
        padding: 15px 0;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .logo-icon {
        font-size: 36px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .header-contact {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: stretch;
    }

    .phone {
        font-size: 16px;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Navigation Mobile */
    .nav {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 5px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    /* Sections Mobile */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    /* Production Grid Mobile */
    .production-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .production-card {
        padding: 30px 20px;
    }

    .production-card h3 {
        font-size: 24px;
    }

    /* Cards Grid Mobile */
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .card {
        min-height: 380px !important;
    }

    .card-image-wrapper {
        height: 240px !important;
    }

    .card-content {
        padding: 20px !important;
    }

    .card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .card-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .card-view-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .card-play-btn svg {
        width: 60px;
        height: 60px;
    }

    /* Contacts Mobile */
    .contacts-content {
        flex-direction: column;
        gap: 25px;
    }

    .contact-item strong {
        font-size: 16px;
    }

    .contact-item a {
        font-size: 18px;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-width: 100%;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .close {
        right: 15px;
        top: 15px;
        font-size: 32px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-submit {
        padding: 16px;
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer {
        padding: 25px 0;
    }

    .footer p {
        font-size: 12px;
    }

    /* Image Modal Mobile */
    .close-image-modal {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }

    .modal-image-content {
        max-width: 95%;
        max-height: 85%;
    }

    .modal-image-caption {
        bottom: 15px;
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }

    .header-top {
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .hero-title {
        font-size: 80px;
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 40px;
    }

    /* Cards Grid Tablet */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .card {
        min-height: 420px !important;
    }

    .card-image-wrapper {
        height: 280px !important;
    }

    .production-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contacts-content {
        gap: 40px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    /* Cards Grid Desktop */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }

    .card {
        min-height: 450px !important;
    }

    .card-image-wrapper {
        height: 300px !important;
    }

    .card-title {
        font-size: 22px !important;
    }

    .card-description {
        font-size: 15px !important;
    }

    /* Hero Desktop Enhancements */
    .hero-title {
        font-size: 120px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-description {
        font-size: 20px;
    }

    /* Production Grid Desktop */
    .production-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Image Modal Desktop */
    .close-image-modal {
        top: 30px;
        right: 50px;
        font-size: 48px;
    }

    .section-description {
        font-size: 18px;
        margin-bottom: 60px;
    }

    /* Hover Effects for Desktop */
    .card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .production-card:hover {
        transform: translateY(-8px);
    }
}

/* Дополнительные улучшения для премиального вида */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-yellow);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.3) 50%, transparent 100%);
}

/* Улучшенные тени и эффекты */
.btn-primary,
.btn-hero,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-hero::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-hero:hover::before,
.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Улучшенная типографика */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
    font-weight: 700;
}

/* Премиальные эффекты для карточек */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

/* Анимация появления для секций */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .cards-grid {
        gap: 40px !important;
    }

    .card {
        min-height: 480px !important;
    }

    .card-image-wrapper {
        height: 320px !important;
    }
}

