/* =========================================================
   MAXX DEFENSE
   Main Website Stylesheet
   ========================================================= */


/* ---------------------------------------------------------
   1. GLOBAL RESET / BASE SETTINGS
   --------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0b0c0d;
    color: #f5f5f5;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ---------------------------------------------------------
   2. GLOBAL LAYOUT
   --------------------------------------------------------- */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: #111315;
}

.section-label {
    color: #a7aaad;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 50px;
}


/* ---------------------------------------------------------
   3. HEADER / NAVIGATION
   --------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 9, 10, 0.96);
    border-bottom: 1px solid #24272a;
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.15rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #d5d6d7;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;

    background: transparent;
    border: 1px solid #303336;

    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;

    background-color: #ffffff;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* ---------------------------------------------------------
   4. HERO SECTION
   --------------------------------------------------------- */
.hero-logo-wrap {
    margin-bottom: 32px;
}

.hero-logo {
    width: min(620px, 92%);
    height: auto;
    display: block;
    object-fit: contain;
}
.hero {
    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

   background:
    linear-gradient(
        90deg,
        rgba(5, 6, 7, 0.96) 0%,
        rgba(5, 6, 7, 0.82) 38%,
        rgba(5, 6, 7, 0.50) 70%,
        rgba(5, 6, 7, 0.30) 100%
    ),
    url("../images/hero-background.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.hero::after {
    content: "";

    position: absolute;
    right: -150px;
    top: -200px;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    padding-top: 80px;
    padding-bottom: 80px;
}

.eyebrow {
    margin-bottom: 22px;

    color: #adb0b3;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.2rem;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;

    max-width: 1000px;

    letter-spacing: -0.25rem;
    font-weight: 900;

    margin-bottom: 35px;
}

.hero-subtitle {
    max-width: 700px;

    font-size: 1.25rem;
    color: #c4c6c8;

    margin-bottom: 20px;
}

.hero-highlight {
    font-weight: 700;
    font-size: 1.05rem;

    margin-bottom: 36px;

    color: #ffffff;
}


/* ---------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------- */

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;

    padding: 15px 26px;

    border: 1px solid #ffffff;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08rem;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button-primary {
    background-color: #ffffff;
    color: #0a0b0c;
}

.button-primary:hover {
    background-color: #c7c9cb;
    border-color: #c7c9cb;
}

.button-secondary {
    background-color: transparent;
    color: #ffffff;
}

.button-secondary:hover {
    background-color: #ffffff;
    color: #0a0b0c;
}


/* ---------------------------------------------------------
   6. ABOUT SECTION
   --------------------------------------------------------- */

.split-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: start;
}

.split-section h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);

    line-height: 1.08;

    max-width: 520px;
}

.split-section p {
    color: #bfc1c3;

    margin-bottom: 22px;

    font-size: 1.05rem;
}


/* ---------------------------------------------------------
   7. CAPABILITIES
   --------------------------------------------------------- */

.capability-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background-color: #292c2f;
    border: 1px solid #292c2f;
}

.capability-card {
    background-color: #111315;

    padding: 40px 30px;

    min-height: 330px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.capability-card:hover {
    background-color: #181a1c;
    transform: translateY(-4px);
}

.card-number {
    display: block;

    color: #777b7f;

    font-size: 0.8rem;

    margin-bottom: 55px;
}

.capability-card h3 {
    font-size: 1.4rem;

    margin-bottom: 18px;
}

.capability-card p {
    color: #aeb1b4;

    font-size: 0.96rem;
}


/* ---------------------------------------------------------
   8. SECOND 2 NONE STATEMENT
   --------------------------------------------------------- */

.statement-section {
    padding: 130px 0;

    text-align: center;

    background-color: #ececec;
    color: #0a0b0c;
}

.statement-section .section-label {
    color: #64676a;
}

.statement-section h2 {
    font-size: clamp(4rem, 10vw, 8rem);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -0.2rem;

    margin-bottom: 25px;
}

.statement-section p:last-child {
    color: #55585b;

    max-width: 700px;

    margin: 0 auto;

    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   9. WHO WE SERVE
   --------------------------------------------------------- */

.audience-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #303336;
    border-bottom: 1px solid #303336;
}

.audience-item {
    padding: 35px 25px;

    border-right: 1px solid #303336;
}

.audience-item:last-child {
    border-right: none;
}

.audience-item span {
    color: #74777a;

    display: block;

    font-size: 0.75rem;

    margin-bottom: 30px;
}

.audience-item h3 {
    font-size: 1.3rem;
}


/* ---------------------------------------------------------
   10. CONTACT / INQUIRY
   --------------------------------------------------------- */

.contact-section {
    background-color: #0d0f10;
    border-top: 1px solid #26292c;
    position: relative;
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.contact-heading h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.15rem;
    margin-bottom: 25px;
}

.contact-heading > p:last-child {
    max-width: 680px;
    color: #aeb1b4;
    font-size: 1.05rem;
}


/* MAIN CONTACT LAYOUT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}


/* LEFT SIDE */

.contact-info {
    padding-right: 20px;
}

.contact-info-block {
    padding: 0 0 38px;
    margin-bottom: 38px;
    border-bottom: 1px solid #292c2f;
}

.contact-number {
    display: block;
    margin-bottom: 18px;

    color: #d11b1b;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
}

.contact-info-block h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.contact-info-block p {
    color: #9da0a3;
    font-size: 0.96rem;
    line-height: 1.75;
}

.contact-tagline {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 45px;
}

.contact-tagline strong {
    font-size: 1.15rem;
    letter-spacing: 0.14rem;
}

.contact-tagline span {
    color: #d11b1b;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
}


/* FORM PANEL */

.inquiry-panel {
    padding: 50px;

    background-color: #131517;
    border: 1px solid #2c2f32;
}


/* FORM ROWS */

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

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

.form-group label {
    display: block;
    margin-bottom: 9px;

    color: #e5e5e5;

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #35383b;

    background-color: #090a0b;
    color: #ffffff;

    font-family: inherit;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666a6e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d11b1b;
    background-color: #0d0f10;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-group select {
    cursor: pointer;
}


/* SUBMIT AREA */

.form-footer {
    margin-top: 8px;
}

.inquiry-submit {
    cursor: pointer;
    min-width: 190px;
}

.form-note {
    margin-top: 16px;

    color: #777b7f;

    font-size: 0.78rem;
    line-height: 1.5;

    max-width: 500px;
}
/* ---------------------------------------------------------
   11. FOOTER
   --------------------------------------------------------- */

.site-footer {
    padding: 45px 0;

    border-top: 1px solid #292c2f;

    background-color: #08090a;
}

.footer-container {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;
}

.site-footer strong {
    letter-spacing: 0.12rem;
}

.site-footer p {
    color: #7f8285;

    font-size: 0.85rem;

    margin-top: 5px;
}
/* SOCIAL MEDIA */

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-label {
    color: #707478;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.14rem;
}

.social-links {
    display: flex;
    align-items: center;

    gap: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #b5b7b9;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.05rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.social-link:hover {
    color: #ffffff;

    transform: translateY(-2px);
}

.social-link svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link:hover svg {
    color: #d11b1b;
}

.social-dot {
    fill: currentColor;
    stroke: none;
}

.footer-legal {
    text-align: right;
}

/* ---------------------------------------------------------
   12. MOBILE / TABLET RESPONSIVE DESIGN
   --------------------------------------------------------- */

@media (max-width: 900px) {
.contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 0;
}
    .section {
        padding: 80px 0;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 0.75rem;
    }

    .split-section,
    .contact-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-item {
        border-bottom: 1px solid #303336;
    }

}


@media (max-width: 650px) {
.contact-heading {
    margin-bottom: 45px;
}
.footer-social {
    margin: 10px 0;
}

.social-links {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-legal {
    text-align: left;
}
.contact-heading h2 {
    letter-spacing: -0.08rem;
}

.inquiry-panel {
    padding: 32px 22px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 0;
}

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

.inquiry-submit {
    width: 100%;
}
    .nav-container {
        min-height: 70px;
    }

    .brand {
        font-size: 1rem;
    }

   .menu-toggle {
    display: block;
}

.main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;
    padding: 20px 5%;

    background-color: #08090a;
    border-bottom: 1px solid #292c2f;
}

.main-nav.nav-open {
    display: flex;
}

.main-nav a {
    width: 100%;
    padding: 14px 0;

    border-bottom: 1px solid #222528;

    font-size: 0.85rem;
}

.main-nav a:last-child {
    border-bottom: none;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        letter-spacing: -0.12rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 30px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-item {
        border-right: none;
    }

    .statement-section {
        padding: 90px 0;
    }

    .statement-section h2 {
        letter-spacing: -0.08rem;
    }

    .contact-box {
        padding: 35px 25px;
    }

   .footer-container {
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo {
    width: 100%;
    max-width: 440px;
}

}
