/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ec7063;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #e74c3c, #ec7063);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.15), rgba(236, 112, 99, 0.08));
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
}

.title-aerius {
    color:rgb(0, 0, 0);
    
}

.title-pro {
    
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.2em;
}

.title-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #ff6b6b;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, #ff0040, #ff6b6b);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e74c3c;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.25);
}

.hero-drone {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.floating-drone {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(231, 76, 60, 0.2));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #e74c3c);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #e74c3c;
    border-bottom: 2px solid #e74c3c;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(231, 76, 60, 0.08);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.2);
}

.about-text {
    padding-left: 2rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 64, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(255, 0, 64, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4d6d;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Section Animations - Fixed */
.about-text {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.about-image {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

/* Only apply fade-in effects when specifically needed and ensure text is always visible */
.about-text.fade-in-right:not(.visible) {
    opacity: 1 !important; /* Force text to be visible */
    transform: translateX(0) !important; /* Remove transform that could hide text */
}

.about-image.fade-in-left:not(.visible) {
    opacity: 0;
    transform: translateX(-50px);
}

.about-text.visible,
.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Ensure about description text is always visible */
.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Ensure section title is always visible */
.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Enhanced About Section Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-text .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: left;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff0040, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Payload Sections */
.payload-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.payload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.payload-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Payload Tabs Styling */
.payload-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.tab-button {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: #cccccc;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    min-width: 200px;
    justify-content: center;
}

.tab-button:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-color: #ff0040;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.tab-button i {
    font-size: 1.1rem;
}

/* Tab Content Styling - Fixed */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.5s ease forwards;
}

/* Ensure mapping payload content is visible when active */
#mapping-tab.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure mapping payload content structure is properly displayed */
.mapping-payload {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
}

.mapping-payload .payload-details {
    flex: 1;
    order: 1;
}

.mapping-payload .payload-images {
    flex: 1;
    order: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payload-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.payload-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.payload-image-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.payload-image-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.payload-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.payload-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 212, 255, 0.5));
}

.payload-details {
    padding: 2rem 0;
}

.payload-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payload-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payload-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #e74c3c;
    transition: all 0.3s ease;
}

.payload-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.payload-feature i {
    color: #ff4d6d;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.payload-feature span {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Payload Section Responsive */
@media (max-width: 768px) {
    .payload-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .payload-section {
        padding: 6rem 0;
    }
    
    .payload-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .payload-images {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payload-image-item {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
    
    .payload-img {
        max-height: 150px;
    }
    
    .payload-feature {
        text-align: left;
    }
    
    .payload-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .payload-section {
        padding: 4rem 0;
    }
    
    .payload-images {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payload-image-item {
        max-width: 100%;
    }
    
    .payload-img {
        max-height: 120px;
    }
    
    .payload-feature {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .payload-feature i {
        align-self: center;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Technical Specifications Section */
.specifications {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.specifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 0, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.specs-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 4rem;
    font-style: italic;
}

.specs-content {
    display: grid;
    gap: 4rem;
}

/* Drone Showcase */
.specs-drone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.specs-drone-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.specs-drone-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 80px rgba(0, 212, 255, 0.5));
}

.specs-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.highlight-point {
    position: absolute;
    pointer-events: all;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.point-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
}

.point-info {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    min-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.highlight-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.point-info h4 {
    color:rgb(255, 0, 0);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.point-info p {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
}

/* Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.spec-category {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.spec-category:hover::before {
    left: 100%;
}

.spec-category:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.category-header i {
    font-size: 1.5rem;
    color:rgb(255, 0, 0);
}

.category-header h3 {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
}

.spec-label {
    color: #cccccc;
    font-size: 0.9rem;
    flex: 1;
}

.spec-value {
    color: #00ff88;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

/* Performance Highlights Section */
.performance-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.05), rgba(236, 112, 99, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.highlight-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.highlight-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.highlight-content p {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive Design for Performance Highlights */
@media (max-width: 768px) {
    .performance-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 3rem 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .highlight-icon i {
        font-size: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.5rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .performance-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .highlight-card {
        padding: 1.2rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .highlight-content h4 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Specifications Responsive */
@media (max-width: 768px) {
    .specifications {
        padding: 6rem 0;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .specs-drone-img {
        max-width: 400px;
    }
    
    .point-info {
        min-width: 150px;
        padding: 0.8rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .specifications {
        padding: 4rem 0;
    }
    
    .performance-highlights {
        grid-template-columns: 1fr;
    }
    
    .spec-category {
        padding: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .spec-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .specs-drone-img {
        max-width: 300px;
    }
    
    .highlight-point {
        display: none; /* Hide interactive points on mobile for better UX */
    }
}

/* Gallery Section */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

/* Demo Video Section */
.demo-video {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.demo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    border: 2px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.4);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    background: #000000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 46, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 18px;
}

.video-overlay:hover {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 46, 0.6));
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff0040, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.4);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
}

.video-title {
    text-align: center;
    color: #ffffff;
}

.video-title h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-title p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
}

.video-features {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 600;
}

.video-feature i {
    color:rgb(255, 0, 0);
    font-size: 1.2rem;
}

/* Video Controls Styling */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.video-wrapper video::-webkit-media-controls-play-button {
    background-color:rgb(255, 0, 0);
    border-radius: 50%;
}

/* Pulse Animation for Play Button */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6), 0 0 0 10px rgba(0, 212, 255, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    }
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-features {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .video-title h3 {
        font-size: 1.5rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .demo-video {
        padding: 4rem 0;
    }
    
    .video-wrapper {
        margin: 0 1rem;
    }
    
    .video-features {
        margin: 1rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color:rgb(255, 0, 0);
}

.video-modal video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color:rgb(255, 0, 0);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color:rgb(255, 0, 0);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: rgba(26, 26, 46, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.order-section {
    margin-top: 2rem;
    text-align: center;
}

.order-button {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(231, 76, 60, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff0040, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #00d4ff;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Scroll Animations */
.fade-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-controls {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .cta-button,
    .order-button,
    .video-play-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ENHANCED MOBILE RESPONSIVENESS */

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(231, 76, 60, 0.2);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        border-radius: 10px;
        margin: 0 2rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(231, 76, 60, 0.1);
        transform: translateX(10px);
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Hero Section */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-drone {
        order: 2;
    }

    .title-main {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .title-subtitle {
        font-size: 1.4rem;
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button,
    .video-play-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .floating-drone {
        max-width: 90%;
    }

    /* Mobile Performance Highlights */
    .performance-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 3rem 1rem;
    }

    .highlight-card {
        padding: 1.5rem 1rem;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    .highlight-content h4 {
        font-size: 1.4rem;
    }

    .highlight-content p {
        font-size: 0.85rem;
    }

    /* Mobile About Section */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .about-text .section-title {
        text-align: center;
        font-size: 2.2rem;
    }

    .about-description {
        text-align: left;
        font-size: 1rem;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat {
        min-width: 120px;
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Mobile Features Section */
    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* Mobile Gallery Section */
    .gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    /* Mobile Specifications */
    .specifications {
        padding: 4rem 0;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .specs-drone-showcase {
        order: 1;
    }

    .specs-grid {
        order: 2;
        gap: 1.5rem;
    }

    .specs-drone-img {
        max-width: 350px;
    }

    .spec-category {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 0;
    }

    .highlight-point {
        display: none;
    }

    /* Mobile Contact Section */
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
        padding: 0 1rem;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }

    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Mobile Typography */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Extra Small Hero */
    .title-main {
        font-size: 2.2rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button,
    .order-button,
    .video-play-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
    }

    /* Extra Small Performance Highlights */
    .performance-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .highlight-card {
        padding: 1.2rem;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
    }

    .highlight-icon i {
        font-size: 1.2rem;
    }

    .highlight-content h4 {
        font-size: 1.2rem;
    }

    .highlight-content p {
        font-size: 0.8rem;
    }

    /* Extra Small About */
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat {
        width: 100%;
        max-width: 200px;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Extra Small Features */
    .feature-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Extra Small Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-item img {
        height: 180px;
    }

    /* Extra Small Specifications */
    .specs-drone-img {
        max-width: 280px;
    }

    .spec-category {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }

    .category-title {
        font-size: 1rem;
    }

    /* Extra Small Contact */
    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    /* Extra Small Typography */
    .section-title {
        font-size: 1.8rem;
    }

    /* Lightbox Mobile */
    .lightbox-content {
        width: 95%;
        max-height: 70%;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    /* Mobile Navigation Improvements */
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-drone {
        order: 2;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .cta-button,
    .video-play-btn {
        width: auto;
        max-width: none;
        padding: 0.8rem 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .highlight-card:hover,
    .gallery-item:hover {
        transform: none;
    }

    .cta-button:hover,
    .video-play-btn:hover,
    .order-button:hover {
        transform: none;
    }

    .nav-link:hover {
        transform: none;
    }

    /* Increase touch targets */
    .nav-link {
        padding: 1.2rem;
        min-height: 44px;
    }

    .cta-button,
    .video-play-btn,
    .order-button {
        min-height: 48px;
        padding: 1.2rem 2rem;
    }

    .social-link {
        min-width: 48px;
        min-height: 48px;
    }

    .hamburger {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-drone,
    .specs-drone-img,
    .about-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-drone {
        animation: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .point-marker {
        animation: none;
    }
}