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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #d0d4db;
    background-color: #000000;
    background-image: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000 !important;
    background-color: #000000 !important;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid #1e2226;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

nav.navbar {
    background: #000000 !important;
    background-color: #000000 !important;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.logo-img {
    display: none; /* Hide placeholder image */
}

.logo-text {
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(13, 110, 253, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0a0c0e 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d0d4db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.05rem;
    color: #b0b4bb;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

.btn-secondary {
    background: rgba(13, 110, 253, 0.1);
    color: #ffffff;
    border: 2px solid rgba(13, 110, 253, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drone-animation {
    font-size: 8rem;
    color: #2563eb;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll reveal animation */
@keyframes fadeInUpSection {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Drones Section */
.drones-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0c0e 50%, #000000 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
    border-radius: 2px;
}

.drone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .drone-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.drone-card {
    background: linear-gradient(135deg, #1e2226 0%, #1a1e22 100%);
    border: 1px solid rgba(13, 110, 253, 0.1);
    padding: 0;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.drone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.drone-card:hover {
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-8px);
}

.drone-card:hover::before {
    opacity: 1;
}

.drone-icon {
    display: none; /* Remove colorful icons to match original */
}

.drone-image {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.drone-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.drone-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.drone-card:hover .drone-image img {
    transform: scale(1.05);
}

.drone-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    letter-spacing: -0.3px;
}

.drone-card p {
    color: #b0b4bb;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    padding: 0 1.5rem;
}

.drone-benefit {
    color: #d0d4db !important;
    font-weight: 400;
    padding: 0 1.5rem !important;
}

.drone-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.spec-tag {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(13, 110, 253, 0.1));
    color: #5ea3ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
}

.spec-tag:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(13, 110, 253, 0.2));
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

/* Experience Section */
.experience-section {
    padding: 2rem 0 2rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0c0e 100%);
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.experience-category {
    background: linear-gradient(135deg, #1e2226 0%, #1a1e22 100%);
    padding: 2rem;
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0d6efd, #0b5ed7);
    transition: height 0.4s ease;
}

.experience-category:hover {
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    transform: translateY(-4px);
}

.experience-category:hover::before {
    height: 100%;
}

.experience-category:last-child {
    border-bottom: none;
}

.experience-category h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-category h3 i {
    color: #0d6efd;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.experience-category p {
    color: #b0b4bb;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 6rem 0 2rem 0;
    background: linear-gradient(180deg, #0a0c0e 0%, #000000 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.about-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 110, 253, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-item:hover .about-image::after {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-item:hover .about-image img {
    transform: scale(1.05);
}

.about-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-item p {
    color: #b0b4bb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-card {
    background: linear-gradient(135deg, #1e2226 0%, #1a1e22 100%);
    border: 1px solid rgba(13, 110, 253, 0.1);
    padding: 3rem;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.uk-flag {
    text-align: center;
    margin-bottom: 1.5rem;
}

.uk-flag img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
}

.values-card p {
    font-size: 1rem;
    color: #d0d4db;
    line-height: 1.6;
}

/* Pilots Section */
.pilots-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.pilots-content {
    text-align: center;
}

.pilots-content p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pilots-content h3 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0c0e 100%);
}

.contact-content {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-form {
    background: #1e2226;
    padding: 2rem;
    border: 1px solid #2a2f33;
    margin-top: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.full-width {
    grid-template-columns: 1fr;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #999;
}

.contact-info h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
}

.contact-method i {
    color: #2563eb;
    width: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0c0e 0%, #000000 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.5), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #b0b4bb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
    background: rgba(13, 110, 253, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(42, 47, 51, 0.5);
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        padding: 2rem 0;
        border-top: 1px solid #1e2226;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .drone-animation {
        font-size: 6rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
        padding-top: 6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .drone-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .drone-card h3 {
        font-size: 1.2rem;
    }
    
    .experience-category h3 {
        font-size: 1.1rem;
    }
}
