/* =========================================================
   GOMAN SECURITY
   CONTACT PAGE CSS
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.95),
            rgba(31, 24, 14, 0.92)
       ),
        url("../assets/images/service-industrial.jpg");

    background-size: cover;
    background-position: center;
}


.contact-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: -250px;

    border-radius: 50%;

    background:
        rgba(201, 162, 39, 0.10);
}


.contact-hero::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -180px;

    border-radius: 50%;

    border: 1px solid rgba(201, 162, 39, 0.15);
}


.contact-hero .container {
    position: relative;

    z-index: 2;
}


.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;

    text-align: center;

    margin: 0 auto;
}


.contact-hero .section-tag {
     margin-bottom: 15px;
}


.contact-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;

}


.contact-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);

}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-cards {
    padding: 75px 0;

    background: #ffffff;
}


.cards-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.contact-card {
    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.contact-card:hover {
    transform: translateY(-8px);

    border-color: rgba(184, 134, 11, 0.45);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);
}


.contact-card-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(201, 162, 39, 0.12);

    color: #b8860b;

    font-size: 24px;
}


.contact-card h3 {
    margin: 0 0 12px;

    font-family: "Oswald", sans-serif;

    font-size: 22px;

    color: #222222;
}


.contact-card p {
    margin: 0;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 15px;

    line-height: 1.7;

    color: #666666;
}


.contact-card p a {
    color: #555555;

    text-decoration: none;

    transition: color 0.3s ease;
}


.contact-card p a:hover {
    color: #b8860b;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #f7f7f7,
            #ffffff
        );
}


.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-top: 15px;
}


.contact-info .section-tag {
    display: inline-block;

    margin-bottom: 15px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #a27d08;
}


.contact-info h2 {
    margin: 0 0 22px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    color: #171717;
}


.contact-info > p {
    margin: 0 0 28px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #666666;
}


/* =========================================================
   BENEFITS
========================================================= */

.contact-benefits {
    list-style: none;

    margin: 0 0 35px;

    padding: 0;
}


.contact-benefits li {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 0;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 15px;

    color: #444444;
}


.contact-benefits li i {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b8860b;

    color: #ffffff;

    font-size: 11px;
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.direct-contact {
    padding-top: 25px;

    border-top: 1px solid #e5e5e5;
}


.direct-contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.direct-contact-item > i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #171717;

    color: #c9a227;
}


.direct-contact-item div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.direct-contact-item span {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #888888;
}


.direct-contact-item a {
    font-family: "IBM Plex Sans", sans-serif;

    font-size: 16px;

    font-weight: 600;

    color: #222222;

    text-decoration: none;
}


.direct-contact-item a:hover {
    color: #b8860b;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    padding: 40px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}


.form-heading {
    margin-bottom: 30px;
}


.form-heading span {
    display: block;

    margin-bottom: 8px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #a27d08;
}


.form-heading h3 {
    margin: 0;

    font-family: "Oswald", sans-serif;

    font-size: 32px;

    color: #222222;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #333333;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #dcdcdc;

    border-radius: 4px;

    outline: none;

    background: #ffffff;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 15px;

    color: #222222;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input {
    height: 50px;
}


.form-group textarea {
    min-height: 170px;

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #b8860b;

    box-shadow:
        0 0 0 3px rgba(184, 134, 11, 0.10);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}


/* =========================================================
   HONEYPOT
========================================================= */

.form-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {
    min-width: 180px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    cursor: pointer;
}


.submit-btn .button-loading {
    display: none;
}


.submit-btn.is-loading .button-text {
    display: none;
}


.submit-btn.is-loading .button-loading {
    display: inline-flex;

    align-items: center;

    gap: 8px;
}


.submit-btn.is-loading {
    opacity: 0.75;

    cursor: not-allowed;
}


/* =========================================================
   FORM STATUS
========================================================= */

.form-status {
    display: none;

    margin-top: 20px;

    padding: 14px 16px;

    border-radius: 5px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


.form-status.success {
    display: block;

    background: #edf8ef;

    border: 1px solid #b9dfbf;

    color: #286336;
}


.form-status.error {
    display: block;

    background: #fff0f0;

    border: 1px solid #e2b8b8;

    color: #8a2c2c;
}


/* =========================================================
   DEPARTMENTS
========================================================= */

.departments {
    padding: 100px 0;

    background: #111111;
}


.departments .section-title {
    margin-bottom: 55px;
}


.departments .section-title > span {
    color: #c9a227;
}


.departments .section-title h2 {
    color: #ffffff;
}


.departments .section-title p {
    color: rgba(255, 255, 255, 0.65);
}


.departments-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.department-card {
    min-height: 300px;

    padding: 35px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #111111
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}


.department-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 39, 0.45);
}


.department-icon {
    width: 65px;
    height: 65px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(201, 162, 39, 0.10);

    color: #c9a227;

    font-size: 23px;
}


.department-card h3 {
    margin: 0 0 13px;

    font-family: "Oswald", sans-serif;

    font-size: 23px;

    color: #ffffff;
}


.department-card p {
    margin: 0 0 20px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.62);
}


.department-card a {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 13px;

    font-weight: 600;

    color: #c9a227;

    text-decoration: none;

    word-break: break-word;
}


.department-card a:hover {
    color: #ffffff;
}


/* =========================================================
   OFFICE HOURS
========================================================= */

.office-hours {
    padding: 80px 0;

    background: #ffffff;
}


.hours-box {
    display: grid;

    grid-template-columns:
        0.8fr
        1.6fr;

    gap: 50px;

    align-items: center;

    padding: 50px;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    background: #fafafa;
}


.hours-title .section-tag {
    display: inline-block;

    margin-bottom: 10px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #a27d08;
}


.hours-title h2 {
    margin: 0 0 12px;

    font-family: "Oswald", sans-serif;

    font-size: 40px;

    color: #222222;
}


.hours-title p {
    margin: 0;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #6b6b6b;
}


.hours-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


.hours-item {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 6px;
}


.hours-item i {
    display: block;

    margin-bottom: 10px;

    color: #b8860b;

    font-size: 20px;
}


.hours-item strong {
    display: block;

    margin-bottom: 5px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 15px;

    color: #222222;
}


.hours-item p {
    margin: 0;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 13px;

    color: #707070;
}


/* =========================================================
   MAP
========================================================= */

.office-map {
    position: relative;

    overflow: hidden;

    background: #eeeeee;
}


.map-heading {
    padding: 60px 20px 35px;

    text-align: center;

    background: #ffffff;
}


.map-heading .section-tag {
    display: block;

    margin-bottom: 10px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #a27d08;
}


.map-heading h2 {
    margin: 0;

    font-family: "Oswald", sans-serif;

    font-size: 42px;

    color: #222222;
}


.office-map iframe {
    display: block;

    width: 100%;

    height: 450px;

    border: 0;
}


/* =========================================================
   EMERGENCY CONTACT
========================================================= */

.emergency-contact {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #171717,
            #332812
        );
}


.emergency-box {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.emergency-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(201, 162, 39, 0.12);

    color: #c9a227;

    font-size: 28px;
}


.emergency-label {
    display: block;

    margin-bottom: 12px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #c9a227;
}


.emergency-box h2 {
    margin: 0 0 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    color: #ffffff;
}


.emergency-box p {
    max-width: 650px;

    margin: 0 auto 28px;

    font-family: "IBM Plex Sans", sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.70);
}


.emergency-box .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-decoration: none;
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.social-section {
    padding: 90px 0;

    background: #ffffff;
}


.social-section .section-title {
    max-width: 700px;

    margin: 0 auto 35px;

    text-align: center;
}


.social-large {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


.social-large a {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #171717;

    color: #ffffff;

    font-size: 20px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.social-large a:hover {
    transform: translateY(-5px);

    background: #c9a227;

    color: #171717;
}


/* =========================================================
   GENERAL BUTTON
========================================================= */

.contact-form .btn-gold,
.emergency-box .btn-gold {
    background: #b8860b;

    border: 1px solid #b8860b;

    color: #ffffff;
}


.contact-form .btn-gold:hover,
.emergency-box .btn-gold:hover {
    background: #936d08;

    border-color: #936d08;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .cards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .departments-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-grid {
        gap: 45px;
    }

}


@media (max-width: 900px) {

    .contact-hero {
        min-height: 450px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .contact-info {
        max-width: 750px;
    }


    .hours-box {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .contact-hero-content {
        padding: 65px 0;
    }


    .contact-hero h1 {
        font-size: 45px;
    }


    .contact-hero p {
        font-size: 16px;
    }


    .contact-cards,
    .contact-form-section,
    .departments,
    .office-hours,
    .emergency-contact,
    .social-section {
        padding: 70px 0;
    }


    .cards-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form {
        padding: 30px 22px;
    }


    .hours-grid {
        grid-template-columns: 1fr;
    }


    .hours-box {
        padding: 30px 22px;
    }


    .office-map iframe {
        height: 350px;
    }


    .map-heading {
        padding: 50px 20px 30px;
    }

}


@media (max-width: 500px) {

    .contact-hero h1 {
        font-size: 38px;
    }


    .contact-info h2 {
        font-size: 36px;
    }


    .form-heading h3 {
        font-size: 28px;
    }


    .submit-btn {
        width: 100%;
    }


    .direct-contact-item {
        align-items: flex-start;
    }


    .department-card {
        min-height: auto;
    }


    .emergency-box h2 {
        font-size: 38px;
    }


    .social-large a {
        width: 50px;
        height: 50px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-card,
    .department-card,
    .social-large a,
    .contact-form *,
    .emergency-box * {
        transition: none !important;
    }

}