/* =========================================================
   GOMAN SECURITY
   CONSULTATION PAGE
========================================================= */


/* =========================================================
   CONSULTATION HERO
========================================================= */

.consultation-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.96),
            rgba(35, 28, 12, 0.92)
        ),
        url("../assets/images/service-consultancy.jpg");

    background-size: cover;
    background-position: center;
}

.consultation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(193, 145, 0, 0.18),
            transparent 40%
        );
    pointer-events: none;
}

.consultation-hero .container {
    position: relative;
    z-index: 2;
}

.consultation-hero .page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;

    text-align: center;

    margin: 0 auto;
}


.consultation-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;
}

.consultation-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: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #c9a227;
}

.breadcrumb span:first-of-type {
    color: #c9a227;
}



/* =========================================================
   CONSULTATION FORM SECTION
========================================================= */

.consultation-form-section {
    padding: 90px 0;
    background: #ffffff;
}

.consultation-form-section .section-title {
    max-width: 800px;
    margin: 0 auto 55px;
}


/* =========================================================
   CONSULTATION WRAPPER
========================================================= */

.consultation-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 45px;
    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.consultation-contact {
    padding: 45px;
    background: #111111;
    color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.consultation-contact h3 {
    margin: 0 0 35px;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item > i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(193, 145, 0, 0.15);
    color: #c19100;
    font-size: 17px;
}

.contact-item strong {
    display: block;
    margin-bottom: 7px;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #c19100;
}


/* =========================================================
   CONFIDENTIALITY NOTE
========================================================= */

.consultation-note {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid #c19100;
    background: rgba(255, 255, 255, 0.05);
}

.consultation-note > i {
    color: #c19100;
    font-size: 22px;
    padding-top: 3px;
}

.consultation-note strong {
    display: block;
    margin-bottom: 7px;
}

.consultation-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   FORM CONTAINER
========================================================= */

.consultation-form {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
}

.consultation-form form {
    width: 100%;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 22px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}


/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #222222;
    border-radius: 3px;
    padding: 14px 15px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input,
.form-group select {
    min-height: 50px;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c19100;
    box-shadow: 0 0 0 3px rgba(193, 145, 0, 0.10);
}


/* =========================================================
   SELECT
========================================================= */

.form-group select {
    cursor: pointer;
    appearance: auto;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.consultation-form .btn {
    min-width: 220px;
    min-height: 52px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultation-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* =========================================================
   BUTTON LOADER
========================================================= */

.button-loader {
    display: none;
}

.consultation-form.loading .button-text {
    display: none;
}

.consultation-form.loading .button-loader {
    display: inline-block;
}


/* =========================================================
   FORM STATUS
========================================================= */

.form-status {
    display: none;
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.form-status.success {
    display: block;
    background: #edf8ef;
    border: 1px solid #b9dfbf;
    color: #22612c;
}

.form-status.error {
    display: block;
    background: #fff0f0;
    border: 1px solid #edbcbc;
    color: #9b2525;
}


/* =========================================================
   CONSULTATION PROCESS
========================================================= */

.consultation-process {
    padding: 90px 0;
    background: #f7f7f7;
}

.consultation-process .section-title {
    max-width: 800px;
    margin: 0 auto 55px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-card {
    position: relative;
    background: #ffffff;
    padding: 32px 25px;
    border: 1px solid #e6e6e6;
    text-align: center;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c19100;
    color: #ffffff;
    border-radius: 50%;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
}

.process-card h3 {
    margin-bottom: 12px;
    font-family: "Oswald", sans-serif;
    font-size: 21px;
}

.process-card p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================================================
   FAQ
========================================================= */

.consultation-faq {
    padding: 90px 0;
    background: #ffffff;
}

.consultation-faq .section-title {
    margin-bottom: 45px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e4e4e4;
    margin-bottom: 12px;
    background: #ffffff;
}

.faq-item summary {
    position: relative;
    padding: 20px 55px 20px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    color: #c19100;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #666666;
    line-height: 1.7;
}


/* =========================================================
   OFFICE MAP
========================================================= */

.office-map {
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================================================
   CTA
========================================================= */

.consultation-cta {
    padding: 90px 0;
    background: #111111;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    margin-bottom: 20px;
    font-family: "Oswald", sans-serif;
    font-size: 40px;
}

.cta-box p {
    max-width: 750px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1100px) {

    .consultation-wrapper {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 768px) {

    .consultation-hero {
        min-height: 360px;
    }

    .consultation-hero .page-hero-content {
        padding: 65px 0;
    }

    .consultation-form-section,
    .consultation-process,
    .consultation-faq,
    .consultation-cta {
        padding: 65px 0;
    }

    .consultation-contact,
    .consultation-form {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 22px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .office-map {
        height: 350px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .consultation-hero h1 {
        font-size: 34px;
    }

    .consultation-contact,
    .consultation-form {
        padding: 25px 18px;
    }

    .consultation-contact h3 {
        font-size: 24px;
    }

    .consultation-form .btn {
        width: 100%;
    }

    .office-map {
        height: 300px;
    }

}