/* Global Styles & Variables */
:root {
    --primary-color: #f97316; /* Vibrant Tactical Orange from Logo */
    --primary-hover: #ea580c;
    --dark-bg: #0b1329;      /* Deep Naval Dark Blue */
    --card-bg: #152238;      /* Slate Card Background */
    --light-bg: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #2a3b5c;
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight {
    color: var(--primary-color);
}

.highlight-scary {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Header & Nav */
.navbar {
    background-color: #070d1a;
    color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #1a2744;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo-svg {
    max-height: 72px; /* Increased from 55px to accommodate prominent logo & slogan */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--primary-hover);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(7, 13, 26, 0.88), rgba(7, 13, 26, 0.93)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 110px 0 85px;
}

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

.badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 750px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #475569;
}

.btn-secondary:hover {
    background-color: #1e293b;
    border-color: #94a3b8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #1a2744;
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Section Formatting */
.section {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.bg-dark .section-header p {
    color: #94a3b8;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* About Section */
.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-text p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--primary-color);
}

.about-image-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.img-responsive {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.card-caption {
    padding: 15px;
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Cards (Capabilities) */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(7, 13, 26, 0.88);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.process-step {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #f8fafc;
}

.process-step p {
    font-size: 0.88rem;
    color: #94a3b8;
}

/* Contact Section */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.info-box i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-box strong {
    display: block;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #0f172a;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-success-msg {
    margin-top: 15px;
    padding: 16px;
    background: #dcfce7;
    color: #14532d;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced Footer with Dual Office Locations */
.enhanced-footer {
    background-color: #050914;
    color: #94a3b8;
    padding: 60px 0 25px;
    border-top: 2px solid #1a2744;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.f-badge {
    background: #152238;
    color: var(--primary-color);
    border: 1px solid #2a3b5c;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.location-card {
    background: #0b1329;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid #1a2744;
}

.loc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.loc-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-card h4 {
    font-size: 1rem;
    color: #f8fafc;
    letter-spacing: 1px;
}

.location-card p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.location-card strong {
    color: #e2e8f0;
}

.loc-contact {
    margin-top: 8px;
    color: #38bdf8 !important;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive Mobile Navigation & Footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #070d1a;
        flex-direction: column;
        padding: 20px;
        display: none;
        border-bottom: 2px solid var(--primary-color);
    }
    .nav-links.active {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    .footer-locations {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.flag-icon {
    font-size: 1.4rem;
    margin-right: 6px;
}
.loc-title {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
}

.grid-4-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.flag-icon {
    font-size: 1.4rem;
    margin-right: 6px;
}
.loc-title {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
}
