/* =========================================================
   GOMAN SECURITY
   SERVICES PAGE CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    background: #f5f6f7;
    color: #17202a;
    line-height: 1.7;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font-family: inherit;
}


button {
    cursor: pointer;
}


ul {
    list-style: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #071b2f;
    --navy-light: #0d2a46;

    --gold: #c9a227;
    --gold-light: #e0bd4c;

    --white: #ffffff;

    --light: #f5f6f7;
    --light-blue: #edf2f6;

    --text: #17202a;
    --muted: #65717d;

    --border: #dfe4e8;

    --success: #16834a;
    --error: #b42318;

    --shadow:
        0 15px 40px rgba(7, 27, 47, 0.10);

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1180px, 92%);

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    width: 100%;

    background: var(--navy);

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.15);

}


.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: 55px;

    height: 55px;

    object-fit: contain;

}


.logo-text h2 {

    color: var(--white);

    font-family: "Oswald", sans-serif;

    font-size: 20px;

    letter-spacing: 1px;

    line-height: 1.1;

}


.logo-text span {

    display: block;

    color: var(--gold-light);

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    margin-top: 5px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-menu ul {

    display: flex;

    align-items: center;

    gap: 4px;

}


.nav-menu a {

    display: block;

    color: #dce5ed;

    padding: 10px 13px;

    font-size: 14px;

    font-weight: 500;

    position: relative;

    transition: 0.3s ease;

}


.nav-menu a::after {

    content: "";

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 3px;

    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: center;

    transition: 0.3s ease;

}


.nav-menu a:hover,
.nav-menu a.active {

    color: var(--gold-light);

}


.nav-menu a:hover::after,
.nav-menu a.active::after {

    transform: scaleX(1);

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 12px 23px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

}


.btn-outline {

    border-color: var(--gold);

    color: var(--gold-light);

    background: transparent;

}


.btn-outline:hover {

    background: var(--gold);

    color: var(--navy);

}


.btn-gold {

    background: var(--gold);

    color: var(--navy);

}


.btn-gold:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    width: 44px;

    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: transparent;

    color: var(--white);

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {

    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            rgba(7, 24, 46, 0.97),
            rgba(13, 39, 71, 0.92)
       ),
        url("../assets/images/service-executive.jpg");

    background-size: cover;
    background-position: center;
}


.page-hero::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    top: -250px;

    right: -150px;

    border-radius: 50%;

    background:
        rgba(201, 162, 39, 0.10);

}


.page-hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    text-align: center;

    margin: 0 auto;

}


.page-hero .section-tag {

    margin-bottom: 15px;

}


.page-hero h1 {

    margin-bottom: 20px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: clamp(3rem, 7vw, 5rem);

    font-weight: 600;

    line-height: 1.05;

}


.page-hero p {

    max-width: 700px;

    margin: 0 auto 25px;

    color: #d6deea;

    font-size: 1.08rem;

}


.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    color: #aebccc;

    font-family: "IBM Plex Mono", monospace;

    font-size: 0.85rem;

}


.breadcrumb a {

    color: #ffffff;

    transition: 0.3s ease;

}


.breadcrumb a:hover {

    color: var(--gold);

}


.breadcrumb span:first-of-type {

    color: var(--gold);

}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {

    max-width: 780px;

    margin: 0 auto 50px;

}


.text-center {

    text-align: center;

}


.section-title h2 {

    color: var(--navy);

    font-family: "Oswald", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    text-transform: uppercase;

    margin-bottom: 16px;

}


.section-title p {

    color: var(--muted);

    font-size: 16px;

}


/* =========================================================
   SECTION TAG
========================================================= */

.section-tag {

    display: inline-block;

    color: var(--gold);

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

}


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {

    padding: 90px 0 45px;

    background: var(--white);

}


/* =========================================================
   SERVICES
========================================================= */

.service-list {

    padding: 45px 0 100px;

    background: var(--white);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;

}


.service-card {

    background: var(--white);

    border: 1px solid var(--border);

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(7, 27, 47, 0.06);

    transition: 0.35s ease;

}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color:
        rgba(201, 162, 39, 0.45);

}


.service-image {

    height: 230px;

    overflow: hidden;

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.service-card:hover
.service-image img {

    transform: scale(1.06);

}


.service-content {

    padding: 28px;

}


.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    font-size: 21px;

    margin-bottom: 20px;

}


.service-content h3 {

    color: var(--navy);

    font-family: "Oswald", sans-serif;

    font-size: 25px;

    margin-bottom: 12px;

}


.service-content p {

    color: var(--muted);

    font-size: 15px;

    margin-bottom: 20px;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-weight: 700;

    font-size: 14px;

    transition: 0.3s ease;

}


.service-link i {

    color: var(--gold);

    transition: 0.3s ease;

}


.service-link:hover {

    color: var(--gold);

}


.service-link:hover i {

    transform: translateX(5px);

}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries {

    padding: 100px 0;

    background: var(--light);

}


.industries-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.industry-card {

    min-height: 150px;

    padding: 28px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: 0.3s ease;

}


.industry-card:hover {

    background: var(--navy);

    color: var(--white);

    transform: translateY(-5px);

}


.industry-card i {

    color: var(--gold);

    font-size: 30px;

    margin-bottom: 13px;

}


.industry-card h3 {

    font-family: "Oswald", sans-serif;

    font-size: 18px;

    font-weight: 500;

}


/* =========================================================
   SERVICE PROCESS
========================================================= */

.service-process {

    padding: 100px 0;

    background: var(--white);

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.process-card {

    position: relative;

    padding: 35px 30px;

    background: var(--light);

    border: 1px solid var(--border);

    transition: 0.3s ease;

}


.process-card:hover {

    transform: translateY(-6px);

    border-color: var(--gold);

    box-shadow: var(--shadow);

}


.process-number {

    color:
        rgba(201, 162, 39, 0.25);

    font-family: "Oswald", sans-serif;

    font-size: 55px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 12px;

}


.process-icon {

    color: var(--gold);

    font-size: 23px;

    margin-bottom: 12px;

}


.process-card h3 {

    color: var(--navy);

    font-family: "Oswald", sans-serif;

    font-size: 23px;

    margin-bottom: 10px;

}


.process-card p {

    color: var(--muted);

    font-size: 15px;

}


/* =========================================================
   FAQ
========================================================= */

.faq {

    padding: 100px 0;

    background: var(--light);

}


.faq-container {

    max-width: 900px;

    margin: 0 auto;

}


.faq-item {

    background: var(--white);

    border: 1px solid var(--border);

    margin-bottom: 12px;

    overflow: hidden;

}


.faq-question {

    width: 100%;

    border: 0;

    background: var(--white);

    color: var(--navy);

    padding: 22px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

}


.faq-question:hover {

    color: var(--gold);

}


.faq-question i {

    color: var(--gold);

    flex-shrink: 0;

    transition:
        transform 0.3s ease;

}


.faq-item.active
.faq-question i {

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease;

}


.faq-answer p {

    color: var(--muted);

    padding: 0 25px 22px;

    font-size: 15px;

}


/* =========================================================
   CONSULTATION SECTION
========================================================= */

.consultation-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #071b2f 0%,
            #0d2a46 100%
        );

    position: relative;

    overflow: hidden;

}


.consultation-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -200px;

    top: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201, 162, 39, 0.18);

}


.consultation-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -180px;

    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(201, 162, 39, 0.06);

}


.consultation-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 70px;

    align-items: start;

}


/* =========================================================
   CONSULTATION INFO
========================================================= */

.consultation-info {

    padding-top: 20px;

}


.consultation-info
.section-tag {

    color: var(--gold-light);

    margin-bottom: 18px;

}


.consultation-info h2 {

    color: var(--white);

    font-family: "Oswald", sans-serif;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.12;

    text-transform: uppercase;

    margin-bottom: 22px;

}


.consultation-info > p {

    color: #d0d9e1;

    font-size: 16px;

    max-width: 560px;

    margin-bottom: 35px;

}


/* =========================================================
   CONSULTATION POINTS
========================================================= */

.consultation-points {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.consultation-point {

    display: flex;

    gap: 17px;

    align-items: flex-start;

}


.point-icon {

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(201, 162, 39, 0.12);

    border:
        1px solid
        rgba(201, 162, 39, 0.35);

    color: var(--gold);

    font-size: 18px;

}


.consultation-point h3 {

    color: var(--white);

    font-family: "Oswald", sans-serif;

    font-size: 20px;

    margin-bottom: 3px;

}


.consultation-point p {

    color: #aebbc6;

    font-size: 14px;

    line-height: 1.6;

}


/* =========================================================
   CONSULTATION FORM BOX
========================================================= */

.consultation-form-box {

    background: var(--white);

    padding: 40px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.25);

    border-top:
        4px solid var(--gold);

}


.form-heading {

    margin-bottom: 25px;

}


.form-heading h3 {

    color: var(--navy);

    font-family: "Oswald", sans-serif;

    font-size: 30px;

    text-transform: uppercase;

    margin-bottom: 5px;

}


.form-heading p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   FORM GRID
========================================================= */

#consultationForm {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}


.form-group {

    display: flex;

    flex-direction: column;

}


.form-group:nth-last-of-type(2),
.form-group:last-of-type {

    grid-column: 1 / -1;

}


.form-group label {

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;

}


.form-group label span {

    color: var(--error);

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border:
        1px solid var(--border);

    background: #fafbfc;

    color: var(--text);

    padding: 13px 14px;

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.form-group input,
.form-group select {

    height: 48px;

}


.form-group textarea {

    min-height: 140px;

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    background: var(--white);

    box-shadow:
        0 0 0 3px
        rgba(201, 162, 39, 0.10);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #9aa5ae;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.consultation-submit {

    grid-column: 1 / -1;

    width: 100%;

    min-height: 54px;

    border: none;

    font-size: 15px;

    margin-top: 2px;

}


.consultation-submit:disabled {

    opacity: 0.7;

    cursor: not-allowed;

    transform: none;

}


.submit-loading {

    align-items: center;

    gap: 8px;

}


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {

    grid-column: 1 / -1;

    display: none;

    padding: 14px 16px;

    font-size: 14px;

    line-height: 1.5;

}


.form-message.success {

    display: block;

    background:
        rgba(22, 131, 74, 0.10);

    border:
        1px solid
        rgba(22, 131, 74, 0.25);

    color: var(--success);

}


.form-message.error {

    display: block;

    background:
        rgba(180, 35, 24, 0.08);

    border:
        1px solid
        rgba(180, 35, 24, 0.20);

    color: var(--error);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #041321;

    color: #d2dce5;

    padding: 75px 0 25px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 45px;

}


.footer-company {

    max-width: 370px;

}


.footer-logo {

    width: 60px;

    height: 60px;

    object-fit: contain;

    margin-bottom: 12px;

}


.footer h3 {

    color: var(--white);

    font-family: "Oswald", sans-serif;

    font-size: 20px;

    margin-bottom: 18px;

}


.footer-company h3 {

    color: var(--gold-light);

}


.footer p {

    color: #aebbc6;

    font-size: 14px;

}


.footer ul {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer li {

    font-size: 14px;

    color: #aebbc6;

}


.footer a {

    transition: 0.3s ease;

}


.footer-column a {

    color: #aebbc6;

}


.footer-column a:hover,
.footer-bottom-links a:hover {

    color: var(--gold);

}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 22px;

}


.social-links a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #344654;

    color: #dce5ed;

}


.social-links a:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

}


.footer-contact {

    gap: 18px !important;

}


.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}


.footer-contact i {

    color: var(--gold);

    width: 18px;

    margin-top: 5px;

}


.footer-contact a {

    color: #aebbc6;

}


.footer hr {

    border: 0;

    border-top:
        1px solid #243644;

    margin: 50px 0 25px;

}


.copyright {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.copyright p {

    font-size: 13px;

}


.footer-bottom-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}


.footer-bottom-links a {

    color: #aebbc6;

    font-size: 13px;

}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.service-card,
.industry-card,
.process-card,
.faq-item {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.3s ease;

}


.service-card.show,
.industry-card.show,
.process-card.show,
.faq-item.show {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-menu ul {

        gap: 0;

    }


    .nav-menu a {

        padding-left: 8px;

        padding-right: 8px;

        font-size: 13px;

    }


    .header-buttons {

        display: none;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .industries-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .consultation-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .consultation-info {

        padding-top: 0;

    }


    .consultation-form-box {

        max-width: 850px;

        width: 100%;

        margin: 0 auto;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {

        width: min(92%, 600px);

    }


    .navbar {

        min-height: 72px;

    }


    .logo img {

        width: 47px;

        height: 47px;

    }


    .logo-text h2 {

        font-size: 17px;

    }


    .logo-text span {

        font-size: 8px;

    }


    .mobile-menu {

        display: flex;

    }


    .nav-menu {

        position: absolute;

        top: 72px;

        left: 0;

        width: 100%;

        background: var(--navy);

        border-top:
            1px solid
            rgba(255,255,255,0.1);

        display: none;

    }


    .nav-menu.open {

        display: block;

    }


    .nav-menu ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 12px 20px 20px;

    }


    .nav-menu a {

        padding: 14px 10px;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);

    }


    .nav-menu a::after {

        display: none;

    }


    .page-hero,
    .services-hero {

        min-height: 390px;

    }


    .page-hero-content {

        padding: 65px 0;

    }


    .page-hero h1 {

        font-size: 43px;

    }


    .page-hero p {

        font-size: 16px;

    }


    .services-intro,
    .service-list,
    .industries,
    .service-process,
    .faq,
    .consultation-section {

        padding-top: 70px;

        padding-bottom: 70px;

    }


    .section-title {

        margin-bottom: 35px;

    }


    .section-title h2 {

        font-size: 32px;

    }


    .services-grid,
    .industries-grid,
    .process-grid {

        grid-template-columns: 1fr;

    }


    .service-image {

        height: 240px;

    }


    .process-card {

        padding: 28px;

    }


    .faq-question {

        padding: 19px;

        font-size: 15px;

    }


    .faq-answer p {

        padding-left: 19px;

        padding-right: 19px;

    }


    /* CONSULTATION */

    .consultation-info h2 {

        font-size: 36px;

    }


    .consultation-form-box {

        padding: 28px 22px;

    }


    #consultationForm {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .form-group:nth-last-of-type(2),
    .form-group:last-of-type {

        grid-column: auto;

    }


    .consultation-submit,
    .form-message {

        grid-column: auto;

    }


    .footer {

        padding-top: 60px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-company {

        max-width: none;

    }


    .copyright {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .logo-text h2 {

        font-size: 15px;

    }


    .logo-text span {

        display: none;

    }


    .page-hero h1 {

        font-size: 38px;

    }


    .service-content {

        padding: 23px;

    }


    .industry-card {

        min-height: 135px;

    }


    .consultation-info h2 {

        font-size: 32px;

    }


    .consultation-form-box {

        padding: 24px 18px;

    }

}