/* =========================================
   GOMAN SECURITY
   GLOBAL STYLES
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background: #ffffff;
    color: #17202a;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --navy: #07182e;
    --navy-light: #0d2747;
    --gold: #c9a227;
    --gold-light: #e0bd4f;
    --white: #ffffff;
    --light: #f5f7fa;
    --gray: #667085;
    --dark: #101828;
    --border: #e4e7ec;

    --container: 1200px;

    --shadow:
        0 15px 40px rgba(7, 24, 46, 0.10);

    --transition:
        all 0.3s ease;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 24px;

    border: 2px solid transparent;

    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    background: #eeeeee;
    transform: translateY(-2px);
}


/* =========================================
   SECTION TITLE
========================================= */

.section-title {
    max-width: 780px;
    margin: 0 auto 55px;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    margin-bottom: 18px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
}

.section-title p {
    color: var(--gray);
    font-size: 1.05rem;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7, 24, 46, 0.98);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text h2 {
    color: var(--white);

    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--gold);

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
}


/* =========================================
   NAVIGATION
========================================= */

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    position: relative;

    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 500;

    transition: var(--transition);
}

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--gold);

    background: transparent;
    color: var(--gold);

    align-items: center;
    justify-content: center;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #06162a 0%,
            #0b2747 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: -200px;
    right: -150px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(201, 162, 39, 0.08);
}

.hero-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    color: var(--white);
}

.hero-tag {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold);

    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 25px;

    font-family: "Oswald", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
}

.hero p {
    max-width: 650px;

    margin-bottom: 30px;

    color: #d6deea;

    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    min-height: 500px;

    object-fit: cover;

    border: 5px solid rgba(201, 162, 39, 0.4);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
}


/* =========================================
   ABOUT
========================================= */

.about-preview {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.about-image img {
    height: 520px;
    object-fit: cover;

    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--gray);
}

.about-list {
    margin: 25px 0 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;

    color: var(--dark);
    font-weight: 500;
}

.about-list i {
    color: var(--gold);
}


/* =========================================
   SERVICES
========================================= */

.home-services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    overflow: hidden;

    background: var(--white);

    box-shadow: 0 10px 30px rgba(7, 24, 46, 0.07);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card > img {
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-content > i {
    margin-bottom: 15px;

    color: var(--gold);
    font-size: 2rem;
}

.service-content h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--navy);

    font-weight: 600;
}

.service-content a:hover {
    color: var(--gold);
}


/* =========================================
   COMPANY STRENGTH
========================================= */

.company-strength {
    padding: 100px 0;

    background: var(--navy);
}

.company-strength .section-title h2 {
    color: var(--white);
}

.company-strength .section-title p {
    color: #b7c3d3;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.strength-card {
    padding: 35px 20px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background: rgba(255, 255, 255, 0.04);

    transition: var(--transition);
}

.strength-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.strength-card i {
    margin-bottom: 18px;

    color: var(--gold);
    font-size: 2rem;
}

.strength-card h3 {
    margin-bottom: 5px;

    color: var(--white);

    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
}

.strength-card p {
    color: #b7c3d3;
}


/* =========================================
   IDENTITY
========================================= */

.identity {
    padding: 100px 0;
    background: var(--white);
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-bottom: 25px;
}

.identity-card {
    padding: 40px;

    border: 1px solid var(--border);

    background: var(--light);

    text-align: center;
}

.identity-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--navy);
    color: var(--gold);

    font-size: 1.6rem;
}

.identity-card h3,
.value-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
}

.identity-card p,
.value-card p {
    color: var(--gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.value-card {
    padding: 30px;

    border: 1px solid var(--border);

    background: var(--white);

    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-card > i {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 1.8rem;
}


/* =========================================
   LEADERSHIP
========================================= */

.leadership-preview {
    padding: 100px 0;

    background: var(--light);
}

.leadership-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 70px;
}

.leadership-image img {
    height: 550px;

    object-fit: cover;

    box-shadow: var(--shadow);
}

.leadership-content h2 {
    margin-bottom: 8px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.leadership-content h3 {
    margin-bottom: 20px;

    color: var(--gold);

    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
}

.leadership-content p {
    margin-bottom: 18px;
    color: var(--gray);
}


/* =========================================
   TRAINING
========================================= */

.training-preview {
    padding: 100px 0;
    background: var(--white);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.training-card {
    padding: 35px 28px;

    border: 1px solid var(--border);

    text-align: center;

    transition: var(--transition);
}

.training-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);

    box-shadow: var(--shadow);
}

.training-card > i {
    margin-bottom: 18px;

    color: var(--gold);
    font-size: 2rem;
}

.training-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
}

.training-card p {
    color: var(--gray);
}

.training-button {
    margin-top: 40px;

    text-align: center;
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );
}

.cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    margin-bottom: 18px;

    color: var(--white);

    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.cta-content p {
    color: #c5d0df;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    flex-shrink: 0;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 75px 0 25px;

    background: #04111f;

    color: #c5d0df;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 1fr 1.1fr;

    gap: 45px;
}

.footer-logo {
    width: 60px;
    height: 60px;

    margin-bottom: 15px;

    object-fit: contain;
}

.footer h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
}

.footer-company > h3 {
    color: var(--gold);
}

.footer p {
    color: #aebccc;
}

.footer-company p {
    max-width: 400px;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aebccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-services li {
    color: #aebccc;
}


/* =========================================
   SOCIAL LINKS
========================================= */

.social-links {
    display: flex;
    gap: 10px;

    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: var(--gold);

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
}


/* =========================================
   CONTACT
========================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--gold);
}

.footer-contact span,
.footer-contact a {
    color: #aebccc;
}

.footer-contact a:hover {
    color: var(--gold);
}


/* =========================================
   COPYRIGHT
========================================= */

.footer hr {
    margin: 45px 0 25px;

    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.copyright {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.copyright p {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links a {
    color: #aebccc;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1000px) {

    .header-buttons {
        display: none;
    }

    .nav-menu ul {
        gap: 15px;
    }

    .hero-grid,
    .about-grid,
    .leadership-wrapper {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 768px) {

    .navbar {
        min-height: 72px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo-text h2 {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.55rem;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        padding: 20px;

        background: var(--navy);

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;

        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;

        padding: 13px 5px;
    }

    .nav-menu a::after {
        display: none;
    }


    .hero {
        padding: 65px 0;
    }

    .hero-grid,
    .about-grid,
    .leadership-wrapper,
    .identity-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-image img {
        min-height: 350px;
    }


    .about-preview,
    .home-services,
    .company-strength,
    .identity,
    .leadership-preview,
    .training-preview {
        padding: 70px 0;
    }

    .about-image img,
    .leadership-image img {
        height: 400px;
    }


    .services-grid,
    .training-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .cta {
        padding: 65px 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

    .copyright {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .logo-text span {
        display: none;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .about-image img,
    .leadership-image img {
        height: 330px;
    }

    .identity-card {
        padding: 30px 20px;
    }

    .copyright {
        text-align: center;
        align-items: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}
