:root {
    --primary-color: #d4af37; /* Gold/Bronze */
    --primary-glow: rgba(212, 175, 55, 0.4);
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --font-header: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo img {
    height: 50px;
    transition: transform var(--transition-speed);
}

.logo img:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 20vh;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.shield-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1.2s ease-out;
}

.hero-shield {
    max-width: 650px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-header);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 2rem;
    font-size: 0.8rem;
}

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

/* Capabilities Section */
.capabilities {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.capability-item {
    transition: transform var(--transition-speed);
}

.capability-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.capability-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.capability-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Global Operations Section */
.global-ops {
    position: relative;
    padding: 10rem 0;
    min-height: 60vh;
    background: url('assets/tacticoweb.webp') no-repeat center center/cover fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.global-ops-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.global-ops .container {
    position: relative;
    z-index: 2;
}

.global-ops-content {
    max-width: 800px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.global-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-header);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Footer */
footer {
    padding: 4rem 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background-color: #050505;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

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

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

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

/* Responsive */
/* Contact Hero */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/tacticoweb.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    background-color: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.2rem;
    color: var(--text-white);
    font-family: var(--font-body);
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Contact Information */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.cta-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer Control on Mobile */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 4rem;
    }
    .hero-title {
        font-size: 4rem;
    }
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
        flex-direction: row; /* Match row for logo and burger */
        justify-content: space-between;
        align-items: center;
    }
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-shield {
        max-width: 85%;
        margin-bottom: 3rem;
    }
    .capability-grid {
        grid-template-columns: 1fr;
    }
    .global-ops {
        padding: 6rem 0;
        text-align: center;
        background-attachment: scroll; /* Better performance on mobile backgrounds */
    }
    .global-ops-content {
        margin: 0 auto;
    }
    .section-description {
        margin: 0 auto 3rem;
    }
    .global-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* Contact Mobile Fixes */
    .contact-hero {
        padding-top: 100px;
        height: 50vh;
    }
    .contact-section {
        padding: 4rem 0;
    }
}
