/* public/css/style.css */

:root {
    --brand: #3b82f6;
    --dark: #0f172a;
    --gray: #94a3b8;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: var(--dark);
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
    direction: ltr; /* بۆ ئەوەی ئینگلیزییەکە تێک نەچێت */
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ==========================================================
   NAVBAR - RESPONSIVE OPTIMIZED
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-sizing: border-box;
    transition: 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span { color: var(--brand); }

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--brand); }

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    
    .nav-links {
        display: none; /* دەشاردرێتەوە تا دوگمەی مێنۆ دروست دەکەیت */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        gap: 0;
        text-align: center;
        border-bottom: 2px solid var(--brand);
    }

    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links a { padding: 20px; display: block; }
    
    /* کاتێک کلاسێکی active زیاد دەکەیت */
    .nav-links.active { display: flex; }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1589519562143-4122f461e389?q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.hero h1 span {
    color: var(--brand);
    display: block;
    font-size: 0.5em;
    letter-spacing: 12px;
    margin-top: 10px;
}

.hero p {
    color: var(--gray);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 500;
}

/* ==========================================================
   HERO SECTION - UPDATED & TACTICAL
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* ڕێگری لە دەرچوونی ڤیدیۆ دەکات */
    background: #0f172a; /* وەک باگراوەند ئەگەر ڤیدیۆکە بار نەبوو */
}

.hero-video {
    position: absolute;
    /* ئەم دوو دێڕە ڤیدیۆکە دەهێنێتە ناوەڕاستی ڕەقەمی شاشەکە */
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05); 
    
    /* دڵنیابە ئەم پێوانانە لای خۆت وایە */
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5) contrast(1.1);
}

/* ئیفێکتی جوڵەی هێواش کاتێک پەیجەکە دەکرێتەوە */
.hero:hover .hero-video {
    transform: translate(-50%, -50%) scale(1);
}
/* بۆ ئەوەی ڤیدیۆکە هەموو پانی شاشەکە بگرێتەوە و بەرزییەکەی ڕێکبمێنێت */
video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ئەگەر ڤیدیۆکە وەک باگراوەند بەکاردێنیت */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* ڕێژەی 16:9 */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ئیفێکتی سێبەری بازنەیی بۆ تەرکیز خستنە سەر ناوەڕاست */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero p {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 6px; /* کەمێک زیاتر بۆ شێوازی سەربازی */
    font-weight: 700;
    font-size: clamp(0.7rem, 2vw, 1rem);
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(3.5rem, 12vw, 6.5rem); /* قەبارەیەکی گەورە و کاریگەر */
    font-weight: 900;
    color: white;
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3); /* تیشکێکی شین لە پشت نوسینەکە */
}

.hero h1 span {
    color: var(--brand);
    display: block;
    font-size: 0.9em;
    letter-spacing: -2px; /* نوسینەکان لێک نزیک دەکاتەوە بۆ جوانی */
}

/* دوگمەی Get Started لە ناو هیرۆ */
.hero .btn-tactical {
    margin-top: 40px;
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--brand);
}

/* Tactical Button */
.btn-tactical {
    padding: 16px 45px;
    border: 2px solid var(--brand);
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}

.btn-tactical:hover {
    background: var(--brand);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 4px;
    outline: none;
    margin-bottom: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: var(--brand);
    background: rgba(59, 130, 246, 0.05);
}
#services .div:hover {
    transform: translateY(-10px);
    border-color: var(--brand);
    background: rgba(59, 130, 246, 0.05);
}
#about h2 span {
    color: var(--brand);
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    /* دڵنیابە ئەمەی خوارەوە لای خۆت هەبێت بۆ ئەوەی ناوەکە تێکەڵ نەبێت */
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo img {
    max-height: 50px; /* دەتوانیت لێرە قەبارەی لۆگۆکە گەورە و بچووک بکەیت */
    width: auto;
    object-fit: contain;
}

/* Services Section Styling */
.services-section {
    padding: 100px 0;
    background: #0f172a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--brand);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* قەبارەی کارتەکان ڕێک دەخات */
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: 0.6s ease;
}

.service-card:hover .service-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.icon-overlay {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.service-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-card:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}


/* Stats Section - Tactical Modern Design */
.stats-section {
    padding: 100px 0;
    background: #0b1120; /* ڕەنگی ڕەشی قووڵ */
    position: relative;
    overflow: hidden;
}

/* دروستکردنی ڕووناکییەکی شین لە باگراوەند بۆ جوانی */
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.05);
    filter: blur(100px);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    position: relative;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3b82f6;
    font-size: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif; /* ئەگەر ئەم فۆنتەت هەبێت زۆر جوانە */
}

.stat-number .plus {
    color: #3b82f6;
    margin-left: 5px;
}

.stat-label {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
}


.contact-section {
    padding: 100px 0;
    background: #0f172a;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    margin-bottom: 20px;
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.05);
}

.info-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}

.info-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 5px;
}

.info-text p {
    color: #fff;
    font-weight: 600;
}

.map-box {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.tactical-form {
    background: rgba(15, 23, 42, 0.5);
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-header h3 {
    color: #3b82f6;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.btn-tactical-full {
    width: 100%;
    padding: 15px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-tactical-full:hover {
    background: #2563eb;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

.about-section {
    padding: 120px 0;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
}

.main-image {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.tactical-img {
    width: 100%;
    display: block;
    filter: contrast(1.1) brightness(0.9);
    transition: 0.5s;
}

.main-image:hover .tactical-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -10px;
    background: #3b82f6;
    padding: 25px;
    border-radius: 4px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid #3b82f6;
    border-left: 4px solid #3b82f6;
    z-index: 1;
}

.subtitle {
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feat-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 5px;
}

.feat-text strong {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.feat-text span {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hidden-field {
    display: none !important;
    visibility: hidden;
}
/* Navbar Toggle Button */
.menu-toggle {
    display: none; /* لە شاشەی گەورەدا ون دەبێت */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* تەنها لە مۆبایلدا دەردەکەوێت */
    }
}