/* Font Imports */
@font-face {
    font-family: 'UAF Sans';
    src: url('fonts/uaf/UAFSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'UAF Sans';
    src: url('fonts/uaf/UAFSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'UAF Sans';
    src: url('fonts/uaf/UAFSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'UAF Sans';
    src: url('fonts/uaf/UAFSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-light-gray: #b0b0b0;
    --color-white: #ffffff;
    --color-military-green: #2d4a2f;
    --color-accent-green: #3d5a3f;
    --color-yellow: #ffcc00;
    --color-yellow-dark: #e6b800;
    
    --font-primary: 'UAF Sans', 'Arial', sans-serif;
    
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-border: 1px solid var(--color-light-gray);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: var(--element-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    position: relative;
}

.logo-text {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

/* Logo animation - tactical scope effect */
.logo-img {
    position: relative;
}

.logo-img::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 215, 0, 0.3);
    z-index: 800;
}

/* Logo animation - tactical scope effect */
.logo-img::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: scope-scan 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #FFD700, 0 0 25px #FFD700, 0 0 35px rgba(255, 215, 0, 0.8);
    z-index: 1000;
    border: 1px solid #FFF;
}

@keyframes scope-scan {
    0% {
        left: -4px;
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px #FFD700, 0 0 25px #FFD700;
    }
    50% {
        left: calc(100% - 4px);
        opacity: 1;
        transform: scale(1.4);
        box-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px rgba(255, 215, 0, 0.9);
    }
    100% {
        left: -4px;
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px #FFD700, 0 0 25px #FFD700;
    }
}

/* Мобильные элементы управления */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition-fast);
    position: relative;
    background: transparent !important;
    background-color: transparent !important;
}

.nav-link:hover {
    color: var(--color-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-yellow);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

@media screen and (max-width: 920px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    
    .mobile-controls {
        display: flex;
        align-items: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark);
        border-top: var(--element-border);
        flex-direction: column;
        padding: 15px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        display: block;
        width: 100%;
    }
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Мобильное меню */

.nav-toggle {
    display: none;
}



/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: none !important;
    background-color: transparent !important;
    border: 1px solid var(--color-light-gray);
    color: var(--color-light-gray);
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
    font-family: var(--font-primary);
}

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

.lang-btn.active {
    background: var(--color-yellow) !important;
    background-color: var(--color-yellow) !important;
    border-color: var(--color-yellow);
    color: var(--color-black);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 74, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .accent {
    color: var(--color-yellow);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-light-gray);
    margin-bottom: 50px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tactical-display {
    position: relative;
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-military-green);
    background-color: rgba(10, 20, 10, 0.3);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tactical-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-military-accent);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}

.tactical-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.8), transparent);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    animation: scan-line 4s linear infinite;
    z-index: 1;
}

@keyframes scan-line {
    0% {
        top: 0;
        opacity: 0.7;
    }
    100% {
        top: 100%;
        opacity: 0.7;
    }
}

.tactical-data {
    font-family: 'Courier New', monospace;
    color: var(--color-military-accent);
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    z-index: 3;
}

.data-element {
    margin-bottom: 10px;
}

.data-element.blink {
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section:nth-child(even) {
    background: var(--color-dark-gray);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    padding: 8px 16px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-yellow);
}

.about-description {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-white);
}

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

.tactical-box {
    background: var(--color-gray);
    border: var(--element-border);
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.box-header {
    background: var(--color-military-green);
    color: var(--color-white);
    padding: 10px;
    text-align: center;
    font-weight: 700;
    margin: -20px -20px 20px -20px;
    letter-spacing: 2px;
}

.data-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.status {
    font-weight: 700;
}

.status.active {
    color: var(--color-yellow);
}

.status.ready {
    color: #00ff00;
}

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

.product-card {
    background: var(--color-gray);
    border: var(--element-border);
    padding: 30px;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-5px);
}

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

.product-type {
    background: var(--color-military-green);
    color: var(--color-white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-status {
    font-size: 0.8rem;
    color: var(--color-yellow);
    font-weight: 600;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.product-description {
    color: var(--color-light-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.spec-label {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--color-white);
    font-weight: 600;
}

/* Technologies Section */
.tech-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.tech-item {
    text-align: center;
    padding: 30px 20px;
    border: var(--element-border);
    background: var(--color-dark-gray);
    transition: var(--transition-smooth);
}

.tech-item:hover {
    border-color: var(--color-yellow);
    background: var(--color-gray);
}

.tech-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-radar, .icon-ai, .icon-stealth, .icon-battery {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-yellow);
    position: relative;
}

.icon-radar {
    border-radius: 50%;
}

.icon-radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-yellow);
    border-radius: 50%;
}

.icon-ai {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-stealth {
    transform: rotate(45deg);
}

.icon-battery {
    border-radius: 3px;
}

.icon-battery::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--color-yellow);
    border-radius: 1px;
}

.tech-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

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

.system-monitor {
    background: var(--color-gray);
    border: var(--element-border);
    font-family: 'Courier New', monospace;
}

.monitor-header {
    background: var(--color-military-green);
    color: var(--color-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.monitor-content {
    padding: 20px;
}

.data-stream {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stream-line {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    padding: 5px 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-yellow);
    text-align: left;
}

.contact-info p {
    color: var(--color-light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    margin-bottom: 2px;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact-visual {
    position: relative;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(35, 40, 35, 0.4);
    border: 1px solid var(--color-military-green);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-military-accent);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

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

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    background: var(--color-military-accent);
    color: var(--color-dark);
    border: none;
    padding: 12px 30px;
    font-family: 'UAF Sans', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background: var(--color-yellow-dark);
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.map-title {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-white);
}

.map-status {
    font-family: 'UAF Sans', sans-serif;
    color: var(--color-yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tactical-map-display {
    position: relative;
}

.tactical-map-image {
    display: block;
    width: 100%;
    height: auto;
}

.tactical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: map-scan 3s linear infinite;
    z-index: 6;
}

@keyframes map-scan {
    0% {
        top: 0;
        opacity: 0.7;
    }
    100% {
        top: 100%;
        opacity: 0.7;
    }
}

.targeting-reticle {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 7;
}

.reticle-h, .reticle-v {
    position: absolute;
    background: rgba(255, 215, 0, 0.5);
}

.reticle-h {
    height: 1px;
    width: 100%;
    top: 50%;
}

.reticle-v {
    width: 1px;
    height: 100%;
    left: 50%;
}

.map-data {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 20, 0, 0.7);
    padding: 8px;
    border: 1px solid var(--color-military-green);
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--color-light-gray);
    z-index: 8;
}

.data-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.data-label {
    margin-right: 10px;
    color: var(--color-yellow);
}

.data-value {
    font-weight: bold;
}

.data-value.active {
    color: #50FF50;
}

.data-value.secure {
    color: #FF9900;
}

.tactical-map-footer {
    background: rgba(30, 35, 30, 0.9);
    padding: 8px 12px;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.clearance-level {
    color: #FF5050;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.update-info {
    color: var(--color-light-gray);
    font-size: 0.7rem;
}

.drone-visual-container {
    background: rgba(30, 35, 30, 0.8);
    border: 2px solid var(--color-military-green);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.drone-header {
    background: var(--color-military-green);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drone-title {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-white);
}

.drone-status {
    font-family: 'UAF Sans', sans-serif;
    color: var(--color-yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    position: relative;
}

.drone-status::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-yellow);
    border-radius: 50%;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    50% {
        opacity: 0.7;
    }
    70% {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 0 0 6px rgba(255, 193, 7, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.drone-image-container {
    position: relative;
    overflow: hidden;
}

.drone-image {
    max-width: 100%;
    display: block;
    border-radius: 0;
    filter: contrast(1.2) brightness(0.85) saturate(0.9);
}

.drone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 30, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.target-reticle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    position: relative;
    animation: reticle-pulse 3s ease-in-out infinite;
}

.target-reticle::before, .target-reticle::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 215, 0, 0.8);
}

.target-reticle::before {
    top: 50%;
    left: -10px;
    right: -10px;
    height: 2px;
    transform: translateY(-50%);
}

.target-reticle::after {
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 2px;
    transform: translateX(-50%);
}

@keyframes reticle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.tactical-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.drone-specs {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(45, 74, 47, 0.3);
    margin-bottom: 10px;
    border-radius: 4px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: var(--color-light-gray);
    font-size: 0.85rem;
}

.spec-value {
    color: var(--color-white);
    font-weight: bold;
}

.spec-value.highlight {
    color: var(--color-yellow);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}
    color: var(--color-white);
}

/* Media Queries */
    background: rgba(45, 74, 47, 0.15);
}

.contact-map h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-yellow);
}

.map-description {
    color: var(--color-light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Form submit button styles removed as form is no longer used */

/* Footer */
.footer {
    background: var(--color-dark-gray);
    border-top: var(--element-border);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 15px;
    position: relative;
}

.footer-logo-text {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

/* Footer logo animation - tactical scope effect */
.footer-logo {
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 215, 0, 0.3);
    z-index: 800;
}

/* Footer logo animation - tactical scope effect */
.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: scope-scan 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px #FFD700, 0 0 25px #FFD700, 0 0 35px rgba(255, 215, 0, 0.8);
    z-index: 1000;
    border: 1px solid #FFF;
}

.footer-text {
    color: var(--color-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-classification {
    text-align: right;
    font-family: 'Courier New', monospace;
}

.classification-level {
    display: block;
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.classification-code {
    color: var(--color-light-gray);
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: var(--element-border);
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h3 {
    font-family: 'UAF Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    font-size: 1.8rem;
    color: var(--color-military-accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 74, 47, 0.3);
    border-radius: 50%;
    border: 1px solid var(--color-military-green);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.method-value {
    color: white;
    font-weight: 600;
}

.contact-form-container {
    background: rgba(30, 35, 30, 0.8);
    border: 2px solid var(--color-military-green);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
    max-width: 380px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(0deg) scale(0.9);
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    font-size: 0.85rem;
}

.contact-form-container:hover {
    transform: perspective(1000px) rotateY(3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-header {
    background: var(--color-military-green);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.form-title {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-white);
}

.form-status {
    font-family: 'UAF Sans', sans-serif;
    color: var(--color-yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    position: relative;
}

.form-status::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-yellow);
    border-radius: 50%;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s ease-in-out infinite;
}

.form-document {
    padding: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233a573c' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm20 0a7 7 0 1 0 0-14 7 7 0 0 0 0 14zM10 37a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm10-17h20v20H20V20zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.form-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.05), 
        transparent
    );
    animation: scan-line 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Удалено дублирующееся определение keyframes */
    }
}

.document-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.document-stamp {
    width: 35px;
    height: 35px;
    border: 2px solid var(--color-military-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px;
    transform: rotate(-15deg);
    font-size: 0.8rem;
}

.stamp-inner {
    color: var(--color-military-accent);
    font-weight: bold;
    font-size: 0.8rem;
    font-family: 'UAF Sans', sans-serif;
}

.document-title {
    font-family: 'UAF Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-grow: 1;
    text-align: center;
}

.document-code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--color-light-gray);
}

.document-content {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(45, 74, 47, 0.5);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 10px;
}

.document-row {
    display: flex;
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
}

.document-row:last-child {
    margin-bottom: 0;
}

.document-label {
    width: 90px;
    color: var(--color-light-gray);
    font-size: 0.75rem;
}

.document-value {
    flex-grow: 1;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.document-value.highlight {
    color: var(--color-military-accent);
}

.document-value.green {
    color: #4CAF50;
}

.document-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--color-light-gray);
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
    padding-top: 8px;
}

.signature-line {
    display: flex;
    gap: 15px;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #1a1a1a, #0f1f0f);
    position: relative;
}

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

.partners-text {
    padding-right: 40px;
}

.partners-subtitle {
    font-family: 'UAF Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.partners-description {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.partners-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-item .stat-number {
    font-family: 'UAF Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-military-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: var(--color-light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-visual {
    position: relative;
}

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

.partner-logo-item {
    background: rgba(45, 74, 47, 0.15);
    border: var(--element-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s;
}

.partner-logo-item:hover::before {
    left: 100%;
}

.partner-logo-item:hover {
    border-color: var(--color-military-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    border: 2px solid var(--color-military-green);
    transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
    border-color: var(--color-military-accent);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 80px 0 40px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .tech-content,
    .contact-content,
    .partners-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-content {  
        grid-template-columns: 1fr;  
        gap: 30px;  
    } 
    
    .tactical-display {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info {  
        text-align: center;  
    }  
    
    .contact-info h3,  
    .contact-info p,
    .contact-methods {  
        text-align: center;  
    }  
    
    .contact-method {  
        justify-content: center;  
    }
    
    /* Legacy styles */
    .map-container iframe {
        height: 300px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media screen and (max-width: 920px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-content {
        position: relative;
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
        border-top: var(--element-border);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        margin-left: 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
        margin-left: 15px;
        cursor: pointer;
    }
    
    .mobile-controls {
        display: flex;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(64, 64, 64, 0.3);
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Active mobile menu */
    .nav-links.active {
        display: flex;
    }
    
    .mobile-controls {
        display: flex;
        align-items: center;
    }
    
    .lang-switcher {
        margin-right: 15px;
        margin-top: 0;
        margin-right: 15px;
    }
    
    .nav-links .lang-switcher {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--color-light-gray);
        line-height: 1.6;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-card {
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .tactical-map-container {
        max-width: 100%;
        transform: none;
    }
    
    .tactical-map-container:hover {
        transform: none;
    }
    
    .map-title, .map-status {
        font-size: 0.8rem;
    }
    
    .targeting-reticle {
        width: 60px;
        height: 60px;
    }
    
    .map-data {
        font-size: 0.7rem;
        padding: 5px;
    }
    
    .tactical-map-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .nav {
        padding: 15px 0;
    }
    
    .nav-content {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .nav-toggle {
        order: 3;
        margin-left: 15px;
        margin-right: 0;
    }
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--color-light-gray);
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        padding: 15px;
        background: rgba(45, 74, 47, 0.2);
        border-radius: 8px;
        border: 1px solid var(--color-military-green);
    }
    
    .tactical-grid {
        width: 200px;
        height: 200px;
    }
    
    .target-reticle {
        width: 60px;
        height: 60px;
    }
    
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-text {
        padding-right: 0;
        text-align: center;
    }
    
    .partners-subtitle {
        font-size: 1.5rem;
    }
    
    .partners-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .contact-form-container {
        margin: 0 auto;
        max-width: 350px;
        font-size: 0.8rem;
        transform: scale(0.85);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo-item {
        padding: 15px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
}

/* Contact Additional Styles */
.contact-additional {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    max-width: 500px;
}

.contact-address, .contact-schedule {
    background: rgba(30, 35, 30, 0.8);
    border: 2px solid var(--color-military-green);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-address:hover, .contact-schedule:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.2);
    border-color: var(--color-military-accent);
}

.contact-subtitle {
    background: var(--color-military-green);
    padding: 12px 15px;
    font-family: 'UAF Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    color: white;
    margin: 0;
}

.contact-text {
    color: var(--color-light-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 15px;
    margin: 0;
}
