/* ============================================================
   SNMF INFRATECH
   CONTACT PAGE
   COMPLETE REPLACEMENT CSS
============================================================ */


/* ============================================================
   01. VARIABLES
============================================================ */

:root {
    --contact-black: #050606;
    --contact-black-2: #080909;
    --contact-black-3: #0c0e0e;
    --contact-black-4: #111313;

    --contact-gold: #c89a3c;
    --contact-gold-light: #e2bd70;
    --contact-gold-dark: #9c7428;

    --contact-white: #f2eee5;
    --contact-text: #d4d0c7;
    --contact-muted: #99968f;

    --contact-border: rgba(200, 154, 60, 0.25);
    --contact-border-light: rgba(242, 238, 229, 0.13);

    --contact-container: 1304px;
    --contact-side-space: 60px;

    --contact-transition: 0.35s ease;
}


/* ============================================================
   02. BASE
============================================================ */

.contact-hero *,
.contact-main-section *,
.contact-project-section *,
.contact-location-section *,
.contact-faq-section *,
.contact-final-cta * {
    box-sizing: border-box;
}

.contact-hero,
.contact-main-section,
.contact-project-section,
.contact-location-section,
.contact-faq-section,
.contact-final-cta {
    font-family: "DM Sans", sans-serif;
}

.contact-hero h1,
.contact-hero h2,
.contact-main-section h2,
.contact-project-section h2,
.contact-location-section h2,
.contact-faq-section h2,
.contact-final-cta h2 {
    font-family: "Playfair Display", serif;
}

.contact-container {
    width: calc(100% - 120px);
    max-width: var(--contact-container);

    margin-left: 60px;
    margin-right: auto;
}


/* ============================================================
   03. SECTION LABEL
============================================================ */

.contact-section-label {
    display: inline-block;

    color: var(--contact-gold-light);

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    line-height: 1.5;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-section-label::before {
    content: "";

    display: inline-block;

    width: 25px;
    height: 1px;

    margin-right: 12px;

    vertical-align: middle;

    background: var(--contact-gold);
}


/* ============================================================
   04. GOLD LINE
============================================================ */

.contact-gold-line {
    width: 55px;
    height: 1px;

    margin: 18px 0;

    background:
        linear-gradient(
            90deg,
            var(--contact-gold),
            var(--contact-gold-light)
        );
}


/* ============================================================
   05. SECTION TITLE
============================================================ */

.contact-section-title {
    margin: 11px 0 0;

    color: var(--contact-white);

    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 500;

    line-height: 1.12;
    letter-spacing: -0.4px;
}


/* ============================================================
   06. BUTTONS
============================================================ */

.contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 17px;

    min-height: 43px;

    padding: 0 23px;

    border: 1px solid var(--contact-gold);

    color: var(--contact-gold-light);
    background: transparent;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 1.7px;

    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--contact-transition),
        color var(--contact-transition),
        border-color var(--contact-transition),
        transform var(--contact-transition);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn-arrow {
    font-size: 16px;
    line-height: 1;

    transition: transform var(--contact-transition);
}

.contact-btn:hover .contact-btn-arrow {
    transform: translateX(4px);
}

.contact-btn-primary {
    color: #090909;

    background: var(--contact-gold);

    border-color: var(--contact-gold);
}

.contact-btn-primary:hover {
    color: #090909;

    background: var(--contact-gold-light);

    border-color: var(--contact-gold-light);
}

.contact-btn-outline {
    color: var(--contact-gold-light);

    background: transparent;

    border-color: var(--contact-gold);
}

.contact-btn-outline:hover {
    color: #090909;

    background: var(--contact-gold);

    border-color: var(--contact-gold);
}


/* ============================================================
   07. HERO
============================================================ */

.contact-hero {
    position: relative;

    height: 500px;

    overflow: hidden;

    background: var(--contact-black);
}


/* ============================================================
   HERO IMAGE
============================================================ */

.contact-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    z-index: 0;

    transform: scale(1.01);
}


/* ============================================================
   HERO OVERLAY

   Dark on left for text.
   Center remains brighter so the architecture is visible.
   Right receives a darker gradient for the side text.
============================================================ */

.contact-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 4, 0.96) 0%,
            rgba(3, 4, 4, 0.83) 17%,
            rgba(3, 4, 4, 0.42) 34%,
            rgba(3, 4, 4, 0.08) 52%,
            rgba(3, 4, 4, 0.18) 67%,
            rgba(3, 4, 4, 0.63) 86%,
            rgba(3, 4, 4, 0.91) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.02) 48%,
            rgba(0, 0, 0, 0.65) 100%
        );
}


/* ============================================================
   HERO CONTAINER
============================================================ */

.contact-hero-container {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    z-index: 2;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.contact-hero-content {
    width: 600px;

    padding-top: 82px;
}

.contact-hero-title {
    margin: 14px 0 0;

    color: var(--contact-white);

    font-family: "Playfair Display", serif;
    font-size: 49px;
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -0.9px;
}

.contact-hero-title span {
    color: var(--contact-gold-light);
}

.contact-hero-content .contact-gold-line {
    margin-top: 18px;
    margin-bottom: 15px;
}

.contact-hero-description {
    max-width: 510px;

    margin: 0 0 22px;

    color: var(--contact-text);

    font-size: 12px;
    font-weight: 300;

    line-height: 1.7;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.contact-hero-buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 27px;
}


/* ============================================================
   WHATSAPP ICON
============================================================ */

.contact-whatsapp-icon {
    width: 18px;
    height: 18px;

    display: block;

    flex-shrink: 0;

    object-fit: contain;
}


/* ============================================================
   HERO VALUES
============================================================ */

.contact-hero-values {
    display: flex;

    align-items: stretch;

    width: fit-content;

    min-height: 62px;
}

.contact-hero-value {
    min-width: 105px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 14px;

    border-right:
        1px solid rgba(242, 238, 229, 0.25);
}

.contact-hero-value:first-child {
    padding-left: 0;
}

.contact-hero-value:last-child {
    border-right: 0;
}

.contact-value-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.contact-value-icon img {
    width: 30px;
    height: 30px;

    display: block;

    object-fit: contain;
}

.contact-hero-value strong {
    display: block;

    margin-bottom: 2px;

    color: var(--contact-white);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.contact-hero-value span {
    display: block;

    color: var(--contact-muted);

    font-size: 8px;
    font-weight: 300;
}


/* ============================================================
   HERO SIDE
============================================================ */

.contact-hero-side {
    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    margin-right: 4px;

    padding: 14px 17px;

    background: rgba(0, 0, 0, 0.48);

    border-left: 1px solid var(--contact-gold);

    backdrop-filter: blur(2px);

    transform: translateY(40px);

    z-index: 3;
}

.contact-hero-side-line {
    width: 1px;
    height: 110px;

    flex-shrink: 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--contact-gold),
            transparent
        );
}

.contact-hero-side-text {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.contact-hero-side-text span {
    display: block;

    color: rgba(242, 238, 229, 0.82);

    font-size: 8px;
    font-weight: 500;

    line-height: 1.3;

    letter-spacing: 3px;

    white-space: nowrap;
}


/* ============================================================
   08. CONTACT MAIN SECTION
============================================================ */

.contact-main-section {
    position: relative;

    padding: 48px 0 52px;

    background:
        linear-gradient(
            180deg,
            #070808 0%,
            #0a0c0c 100%
        );

    border-bottom:
        1px solid rgba(200, 154, 60, 0.16);
}

.contact-main-container {
    display: grid;

    grid-template-columns: 39% 61%;

    align-items: stretch;
}


/* ============================================================
   CONTACT INFORMATION
============================================================ */

.contact-information {
    padding-right: 55px;
}

.contact-information .contact-section-label {
    margin-top: 5px;
}

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 68px;

    margin-bottom: 13px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}


/* ============================================================
   INFO ICON
============================================================ */

.contact-info-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid var(--contact-gold);

    background:
        linear-gradient(
            145deg,
            rgba(200, 154, 60, 0.10),
            rgba(0, 0, 0, 0.30)
        );
}

.contact-info-icon img {
    width: 27px;
    height: 27px;

    display: block;

    object-fit: contain;
}


/* ============================================================
   INFO CONTENT
============================================================ */

.contact-info-content h3 {
    margin: 0 0 4px;

    color: var(--contact-white);

    font-size: 11px;
    font-weight: 500;
}

.contact-info-content p {
    margin: 0;

    color: var(--contact-text);

    font-size: 10.5px;
    font-weight: 300;

    line-height: 1.55;
}

.contact-info-content span {
    display: block;

    margin-top: 1px;

    color: var(--contact-muted);

    font-size: 8.5px;

    line-height: 1.5;
}


/* ============================================================
   09. CONTACT FORM
============================================================ */

.contact-form-wrapper {
    padding: 27px 28px 21px;

    border:
        1px solid rgba(242, 238, 229, 0.18);

    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(0, 0, 0, 0.24)
        );
}

.contact-form-header .contact-section-label {
    font-size: 8px;

    letter-spacing: 2.5px;
}

.contact-form-header .contact-section-title {
    margin-top: 7px;

    font-size: 27px;
}

.contact-form-header .contact-gold-line {
    margin: 11px 0 17px;
}


/* ============================================================
   FORM GRID
============================================================ */

.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}


/* ============================================================
   FORM FIELD
============================================================ */

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: block;

    margin-bottom: 6px;

    color: var(--contact-white);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.2px;
}

.contact-field label span {
    color: var(--contact-gold-light);
}


/* ============================================================
   FORM INPUTS
============================================================ */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border:
        1px solid rgba(242, 238, 229, 0.18);

    outline: none;

    border-radius: 3px;

    color: var(--contact-white);

    background:
        rgba(255, 255, 255, 0.045);

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;

    transition:
        border-color var(--contact-transition),
        background var(--contact-transition),
        box-shadow var(--contact-transition);
}

.contact-field input,
.contact-field select {
    height: 38px;

    padding: 0 12px;
}

.contact-field textarea {
    min-height: 85px;

    padding: 11px 12px;

    resize: vertical;

    line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(212, 208, 199, 0.45);
}

.contact-field select {
    appearance: none;

    cursor: pointer;
}

.contact-field select option {
    color: #111;

    background: #f2eee5;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--contact-gold);

    background:
        rgba(200, 154, 60, 0.055);

    box-shadow:
        0 0 0 1px rgba(200, 154, 60, 0.08);
}

.contact-message-field {
    margin-top: 13px;
}


/* ============================================================
   FORM SUBMIT
============================================================ */

.contact-submit-btn {
    width: 100%;

    min-height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 14px;

    padding: 0 20px;

    border: 1px solid var(--contact-gold);

    border-radius: 3px;

    color: #080808;

    background: var(--contact-gold);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--contact-transition),
        border-color var(--contact-transition),
        transform var(--contact-transition);
}

.contact-submit-btn span {
    font-size: 15px;

    transition:
        transform var(--contact-transition);
}

.contact-submit-btn:hover {
    background: var(--contact-gold-light);

    border-color: var(--contact-gold-light);

    transform: translateY(-2px);
}

.contact-submit-btn:hover span {
    transform: translateX(4px);
}

.contact-form-note {
    margin: 9px 0 0;

    color: var(--contact-muted);

    font-size: 8px;

    text-align: center;
}

.contact-form-note a {
    color: var(--contact-gold-light);

    text-decoration: none;
}

.contact-form-note a:hover {
    text-decoration: underline;
}


/* ============================================================
   10. PROJECT CONVERSATION
============================================================ */

.contact-project-section {
    position: relative;

    height: 255px;

    overflow: hidden;

    background: var(--contact-black);
}

.contact-project-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.10)
        );

    z-index: 0;
}

.contact-project-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 5, 0.93) 0%,
            rgba(4, 5, 5, 0.73) 27%,
            rgba(4, 5, 5, 0.22) 53%,
            rgba(4, 5, 5, 0.48) 100%
        );
}


/* ============================================================
   PROJECT CONTENT
============================================================ */

.contact-project-container {
    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 2;
}

.contact-project-content {
    width: 600px;

    padding-left: 20px;
}

.contact-project-title {
    margin: 10px 0 8px;

    color: var(--contact-white);

    font-size: 37px;
    font-weight: 500;

    line-height: 1.04;
}

.contact-project-title span {
    color: var(--contact-gold-light);
}

.contact-project-content p {
    max-width: 510px;

    margin: 0 0 17px;

    color: var(--contact-text);

    font-size: 10.5px;
    font-weight: 300;

    line-height: 1.65;
}


/* ============================================================
   PROJECT SIDE
============================================================ */

.contact-project-side {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-right: 30px;

    padding-left: 20px;

    border-left:
        1px solid var(--contact-gold);
}

.contact-project-side span {
    color: rgba(242, 238, 229, 0.68);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 3px;
}


/* ============================================================
   11. LOCATION
============================================================ */

.contact-location-section {
    position: relative;

    padding: 43px 0 45px;

    background:
        linear-gradient(
            180deg,
            #060707 0%,
            #0a0c0c 100%
        );

    border-bottom:
        1px solid rgba(200, 154, 60, 0.15);
}

.contact-location-container {
    display: grid;

    grid-template-columns: 25% 50% 25%;

    align-items: center;
}

.contact-location-content {
    padding-right: 25px;
}

.contact-location-content .contact-section-title {
    font-size: 32px;
}

.contact-location-content > p {
    margin: 0 0 19px;

    color: var(--contact-muted);

    font-size: 10px;
    font-weight: 300;

    line-height: 1.65;
}


/* ============================================================
   LOCATION ADDRESS
============================================================ */

.contact-location-address {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 19px;
}

.contact-location-icon {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid var(--contact-gold);
}

.contact-location-icon img {
    width: 21px;
    height: 21px;

    object-fit: contain;
}

.contact-location-address strong,
.contact-location-address span,
.contact-location-address small {
    display: block;
}

.contact-location-address strong {
    margin-bottom: 2px;

    color: var(--contact-white);

    font-size: 10px;
    font-weight: 500;
}

.contact-location-address span {
    color: var(--contact-text);

    font-size: 9.5px;
}

.contact-location-address small {
    margin-top: 2px;

    color: var(--contact-muted);

    font-size: 7.5px;
}


/* ============================================================
   MAP
============================================================ */

.contact-map {
    position: relative;

    height: 190px;

    overflow: hidden;

    border:
        1px solid rgba(242, 238, 229, 0.18);

    border-radius: 6px;

    background:
        #111416;
}


/* ============================================================
   MAP GRID
============================================================ */

.contact-map-grid {
    position: absolute;

    inset: 0;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 32px 32px;
}


/* ============================================================
   MAP ROADS
============================================================ */

.contact-map-road {
    position: absolute;

    height: 1px;

    background:
        rgba(220, 215, 203, 0.27);

    transform-origin: left center;
}

.road-one {
    width: 125%;

    top: 55%;

    left: -10%;

    transform: rotate(-8deg);
}

.road-two {
    width: 90%;

    top: 28%;

    left: 16%;

    transform: rotate(17deg);
}

.road-three {
    width: 80%;

    top: 78%;

    left: 20%;

    transform: rotate(7deg);
}


/* ============================================================
   MAP RIVER
============================================================ */

.contact-map-river {
    position: absolute;

    width: 115%;
    height: 75px;

    left: -8%;
    bottom: -20px;

    opacity: 0.42;

    border-top:
        1px solid rgba(116, 144, 153, 0.25);

    background:
        rgba(49, 68, 77, 0.22);

    transform: rotate(-6deg);
}


/* ============================================================
   MAP LABELS
============================================================ */

.contact-map-label {
    position: absolute;

    color: rgba(242, 238, 229, 0.58);

    font-size: 8px;
    font-weight: 300;

    letter-spacing: 0.2px;
}

.label-gaya {
    top: 47%;
    right: 18%;

    font-family: "Playfair Display", serif;

    font-size: 20px;

    color: rgba(242, 238, 229, 0.72);
}

.label-junction {
    top: 24%;
    left: 8%;
}

.label-road {
    right: 7%;
    bottom: 21%;
}

.label-river {
    left: 43%;
    bottom: 9%;
}


/* ============================================================
   MAP MARKER
============================================================ */

.contact-map-marker {
    position: absolute;

    top: 46%;
    left: 52%;

    display: flex;

    align-items: center;

    gap: 8px;

    transform: translate(-50%, -50%);
}

.contact-map-pin {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50% 50% 50% 0;

    background: var(--contact-gold);

    transform: rotate(-45deg);

    box-shadow:
        0 0 18px rgba(200, 154, 60, 0.28);
}

.contact-map-pin span {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #111;

    transform: rotate(45deg);
}

.contact-map-card {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 110px;

    padding: 8px 10px;

    border:
        1px solid rgba(242, 238, 229, 0.20);

    border-radius: 3px;

    background:
        rgba(5, 6, 6, 0.88);
}

.contact-map-card strong {
    color: var(--contact-white);

    font-size: 8.5px;
    font-weight: 500;
}

.contact-map-card span {
    color: var(--contact-muted);

    font-size: 7.5px;
}


/* ============================================================
   LOCATION QUOTE
============================================================ */

.contact-location-quote {
    margin-left: 28px;

    padding-left: 20px;

    border-left:
        1px solid var(--contact-gold);

    color: var(--contact-gold-light);

    font-family: "Playfair Display", serif;

    font-size: 19px;

    line-height: 1.22;
}

.contact-location-quote span,
.contact-location-quote strong {
    display: block;
}

.contact-location-quote strong {
    color: var(--contact-white);

    font-weight: 500;
}

.contact-location-quote div {
    width: 35px;
    height: 1px;

    margin-top: 14px;

    background: var(--contact-gold);
}


/* ============================================================
   12. FAQ SECTION
============================================================ */

.contact-faq-section {
    padding: 0;

    background: var(--contact-black);
}

.contact-faq-container {
    display: grid;

    grid-template-columns: 34% 41% 25%;

    align-items: stretch;

    min-height: 255px;
}


/* ============================================================
   FAQ IMAGE
============================================================ */

.contact-faq-image {
    position: relative;

    min-height: 255px;

    overflow: hidden;

    background: var(--contact-black);
}

.contact-faq-image-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    z-index: 0;

    transition: transform 0.6s ease;
}

.contact-faq-image:hover .contact-faq-image-bg {
    transform: scale(1.03);
}

.contact-faq-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(200, 154, 60, 0.08),
            transparent 55%
        );

    z-index: 1;
}

.contact-faq-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 6, 0.20) 0%,
            rgba(5, 6, 6, 0.58) 55%,
            rgba(5, 6, 6, 0.88) 100%
        );

    z-index: 2;
}

.contact-faq-image-content {
    position: absolute;

    left: 30px;
    bottom: 28px;

    z-index: 3;
}

.contact-faq-image-content h3 {
    margin: 9px 0 0;

    color: var(--contact-white);

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;

    line-height: 1.08;
}

/* ============================================================
   FAQ CONTENT
============================================================ */

.contact-faq-content {
    padding: 35px 30px;

    border-left:
        1px solid rgba(242, 238, 229, 0.10);
}

.contact-faq-content .contact-section-label {
    font-size: 8px;

    letter-spacing: 2.5px;
}

.contact-faq-content .contact-section-title {
    margin-top: 7px;

    font-size: 29px;
}

.contact-faq-content .contact-gold-line {
    margin: 11px 0 17px;
}


/* ============================================================
   FAQ ITEMS
============================================================ */

.contact-faq-list {
    width: 100%;
}

.contact-faq-item {
    border-bottom:
        1px solid rgba(242, 238, 229, 0.13);
}

.contact-faq-item:first-child {
    border-top:
        1px solid rgba(242, 238, 229, 0.13);
}

.contact-faq-item summary {
    min-height: 36px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 0;

    color: var(--contact-text);

    font-size: 9.5px;
    font-weight: 400;

    list-style: none;

    cursor: pointer;
}

.contact-faq-item summary::-webkit-details-marker {
    display: none;
}

.contact-faq-item summary span {
    color: var(--contact-gold-light);

    font-size: 16px;
    font-weight: 300;

    transition:
        transform var(--contact-transition);
}

.contact-faq-item[open] summary span {
    transform: rotate(45deg);
}

.contact-faq-item p {
    margin: -1px 0 12px;

    color: var(--contact-muted);

    font-size: 9px;
    font-weight: 300;

    line-height: 1.6;
}


/* ============================================================
   DIRECT CONTACT CARD
============================================================ */

.contact-direct-card {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin: 25px 0;

    padding: 20px;

    border:
        1px solid rgba(242, 238, 229, 0.17);

    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(200, 154, 60, 0.025)
        );

    text-align: center;
}

.contact-direct-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 9px;
}

.contact-direct-icon img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

.contact-direct-card h3 {
    margin: 0 0 5px;

    color: var(--contact-white);

    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
}

.contact-direct-card p {
    margin: 0 0 12px;

    color: var(--contact-muted);

    font-size: 9px;
}

.contact-direct-phone {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 13px;

    color: var(--contact-gold-light);

    font-size: 10px;

    text-decoration: none;
}

.contact-direct-phone span {
    font-size: 13px;
}


/* ============================================================
   13. FINAL CTA
============================================================ */

.contact-final-cta {
    position: relative;

    height: 190px;

    overflow: hidden;

    background: var(--contact-black);
}

.contact-final-cta-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            ellipse at 20% 50%,
            rgba(200, 154, 60, 0.10),
            transparent 50%
        ),
        linear-gradient(
            90deg,
            #080909,
            #0d0f0f,
            #070808
        );
}

.contact-final-cta-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 5, 0.55) 0%,
            rgba(4, 5, 5, 0.10) 40%,
            rgba(4, 5, 5, 0.65) 100%
        );
}


/* ============================================================
   FINAL CTA CONTAINER
============================================================ */

.contact-final-cta-container {
    position: relative;

    height: 100%;

    display: grid;

    grid-template-columns: 35% 35% 30%;

    align-items: center;

    z-index: 2;
}


/* ============================================================
   FINAL CTA HEADING
============================================================ */

.contact-final-cta-heading {
    padding-left: 20px;
}

.contact-final-cta-heading h2 {
    margin: 10px 0 0;

    color: var(--contact-white);

    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 500;

    line-height: 1.03;
}

.contact-final-cta-heading h2 span {
    color: var(--contact-gold-light);
}


/* ============================================================
   FINAL CTA TEXT
============================================================ */

.contact-final-cta-text {
    padding:
        0 35px;

    border-left:
        1px solid var(--contact-border);
}

.contact-final-cta-text p {
    margin: 0;

    color: var(--contact-text);

    font-size: 10.5px;
    font-weight: 300;

    line-height: 1.7;
}


/* ============================================================
   FINAL CTA BUTTONS
============================================================ */

.contact-final-cta-buttons {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 10px;

    padding-left: 25px;
    padding-right: 5px;
}

.contact-final-cta-buttons .contact-btn {
    width: 100%;
}


/* ============================================================
   14. RESPONSIVE — 1200px
============================================================ */

@media (max-width: 1200px) {

    .contact-container {
        width: calc(100% - 100px);

        margin-left: 50px;
    }

    .contact-hero {
        height: 480px;
    }

    .contact-hero-content {
        width: 530px;
    }

    .contact-hero-title {
        font-size: 44px;
    }

    .contact-main-container {
        grid-template-columns: 37% 63%;
    }

    .contact-information {
        padding-right: 35px;
    }

    .contact-location-container {
        grid-template-columns: 27% 48% 25%;
    }

    .contact-location-quote {
        margin-left: 20px;
    }

    .contact-faq-container {
        grid-template-columns: 32% 43% 25%;
    }

    .contact-final-cta-container {
        grid-template-columns: 35% 35% 30%;
    }
}


/* ============================================================
   15. RESPONSIVE — 1024px
============================================================ */

@media (max-width: 1024px) {

    .contact-container {
        width: calc(100% - 80px);

        margin-left: 40px;
    }

    .contact-hero {
        height: 465px;
    }

    .contact-hero-content {
        width: 500px;

        padding-top: 45px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-description {
        max-width: 440px;
    }

    .contact-hero-side {
        transform: translateY(35px);
    }

    .contact-hero-values {
        transform: scale(0.94);

        transform-origin: left center;
    }

    .contact-main-container {
        grid-template-columns: 36% 64%;
    }

    .contact-information {
        padding-right: 25px;
    }

    .contact-form-wrapper {
        padding: 24px 22px 19px;
    }

    .contact-location-container {
        grid-template-columns: 28% 47% 25%;
    }

    .contact-location-quote {
        font-size: 17px;
    }

    .contact-faq-container {
        grid-template-columns: 31% 44% 25%;
    }

    .contact-faq-content {
        padding: 30px 22px;
    }

    .contact-direct-card {
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-final-cta-container {
        grid-template-columns: 34% 36% 30%;
    }

    .contact-final-cta-text {
        padding: 0 25px;
    }

    .contact-final-cta-buttons {
        padding-left: 15px;
    }
}


/* ============================================================
   16. MOBILE — 767px
============================================================ */

@media (max-width: 767px) {

    .contact-container {
        width: calc(100% - 40px);

        margin-left: 20px;
    }


    /* --------------------------------------------------------
       HERO
    -------------------------------------------------------- */

    .contact-hero {
        height: 610px;
    }

    .contact-hero-image {
        object-position: 57% center;
    }

    .contact-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 4, 4, 0.97) 0%,
                rgba(3, 4, 4, 0.83) 62%,
                rgba(3, 4, 4, 0.54) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.48) 0%,
                rgba(0, 0, 0, 0.10) 42%,
                rgba(0, 0, 0, 0.90) 100%
            );
    }

    .contact-hero-container {
        display: flex;

        align-items: flex-end;

        padding-bottom: 42px;
    }

    .contact-hero-content {
        width: 100%;

        padding-top: 0;
    }

    .contact-hero-title {
        font-size: 37px;

        line-height: 1.06;
    }

    .contact-hero-description {
        max-width: 100%;

        font-size: 11px;

        line-height: 1.65;
    }

    .contact-hero-buttons {
        flex-wrap: wrap;

        margin-bottom: 23px;
    }

    .contact-hero-values {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        transform: none;
    }

    .contact-hero-value {
        min-width: 0;

        padding: 0 8px;

        gap: 6px;

        justify-content: center;
    }

    .contact-hero-value:first-child {
        padding-left: 0;

        justify-content: flex-start;
    }

    .contact-hero-value:last-child {
        padding-right: 0;
    }

    .contact-value-icon {
        width: 27px;
        height: 27px;
    }

    .contact-value-icon img {
        width: 25px;
        height: 25px;
    }

    .contact-hero-value strong {
        font-size: 6.5px;

        letter-spacing: 1px;
    }

    .contact-hero-value span {
        font-size: 6.5px;
    }

    .contact-hero-side {
        display: none;
    }


    /* --------------------------------------------------------
       MAIN CONTACT
    -------------------------------------------------------- */

    .contact-main-section {
        padding: 42px 0 45px;
    }

    .contact-main-container {
        display: block;
    }

    .contact-information {
        padding-right: 0;

        margin-bottom: 35px;
    }

    .contact-section-title {
        font-size: 31px;
    }

    .contact-info-item {
        min-height: 60px;

        gap: 13px;
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
    }

    .contact-info-icon img {
        width: 24px;
        height: 24px;
    }


    /* --------------------------------------------------------
       FORM
    -------------------------------------------------------- */

    .contact-form-wrapper {
        padding: 23px 17px 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .contact-form-header .contact-section-title {
        font-size: 26px;
    }

    .contact-field input,
    .contact-field select {
        height: 40px;
    }

    .contact-field textarea {
        min-height: 100px;
    }


    /* --------------------------------------------------------
       PROJECT SECTION
    -------------------------------------------------------- */

    .contact-project-section {
        height: 380px;
    }

    .contact-project-container {
        align-items: flex-end;

        padding-bottom: 38px;
    }

    .contact-project-content {
        width: 100%;

        padding-left: 0;
    }

    .contact-project-title {
        font-size: 32px;
    }

    .contact-project-content p {
        max-width: 100%;

        font-size: 10.5px;
    }

    .contact-project-side {
        display: none;
    }


    /* --------------------------------------------------------
       LOCATION
    -------------------------------------------------------- */

    .contact-location-section {
        padding: 42px 0;
    }

    .contact-location-container {
        display: block;
    }

    .contact-location-content {
        padding-right: 0;

        margin-bottom: 27px;
    }

    .contact-location-content .contact-section-title {
        font-size: 31px;
    }

    .contact-location-content > p {
        font-size: 10.5px;
    }

    .contact-map {
        height: 210px;

        margin-bottom: 25px;
    }

    .contact-location-quote {
        margin-left: 0;

        padding-left: 15px;

        font-size: 19px;
    }


    /* --------------------------------------------------------
       FAQ
    -------------------------------------------------------- */

    .contact-faq-container {
        display: block;

        min-height: auto;
    }

    .contact-faq-image {
        min-height: 220px;
    }

    .contact-faq-image-content {
        left: 20px;
        bottom: 22px;
    }

    .contact-faq-image-content h3 {
        font-size: 22px;
    }

    .contact-faq-content {
        padding: 38px 0;
    }

    .contact-faq-content .contact-section-title {
        font-size: 30px;
    }

    .contact-faq-item summary {
        min-height: 44px;

        font-size: 9.5px;
    }

    .contact-direct-card {
        margin: 0 0 35px;

        padding: 25px 20px;
    }


    /* --------------------------------------------------------
       FINAL CTA
    -------------------------------------------------------- */

    .contact-final-cta {
        height: auto;

        min-height: 390px;
    }

    .contact-final-cta-container {
        display: block;

        padding-top: 48px;
        padding-bottom: 48px;
    }

    .contact-final-cta-heading {
        padding-left: 0;
    }

    .contact-final-cta-heading h2 {
        font-size: 32px;
    }

    .contact-final-cta-text {
        margin-top: 25px;

        padding:
            20px 0 20px 17px;

        border-left:
            1px solid var(--contact-gold);
    }

    .contact-final-cta-text p {
        font-size: 10.5px;
    }

    .contact-final-cta-buttons {
        gap: 9px;

        margin-top: 22px;

        padding: 0;
    }
}


/* ============================================================
   17. SMALL MOBILE — 480px
============================================================ */

@media (max-width: 480px) {

    .contact-container {
        width: calc(100% - 30px);

        margin-left: 15px;
    }


    /* HERO */

    .contact-hero {
        height: 610px;
    }

    .contact-hero-container {
        padding-bottom: 35px;
    }

    .contact-section-label {
        font-size: 8px;

        letter-spacing: 2.4px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-description {
        font-size: 10.5px;
    }


    /* BUTTON */

    .contact-btn {
        min-height: 41px;

        padding: 0 17px;

        font-size: 8.5px;

        letter-spacing: 1.35px;
    }

    .contact-hero-buttons {
        gap: 7px;
    }


    /* HERO VALUES */

    .contact-hero-values {
        gap: 0;
    }

    .contact-hero-value {
        gap: 4px;

        padding: 0 5px;
    }

    .contact-value-icon {
        width: 24px;
        height: 24px;
    }

    .contact-value-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-hero-value strong {
        font-size: 6px;

        letter-spacing: 0.7px;
    }

    .contact-hero-value span {
        font-size: 6px;
    }


    /* SECTION TITLES */

    .contact-section-title {
        font-size: 28px;
    }


    /* FORM */

    .contact-form-wrapper {
        padding: 21px 14px 17px;
    }

    .contact-form-header .contact-section-title {
        font-size: 24px;
    }


    /* PROJECT */

    .contact-project-section {
        height: 390px;
    }

    .contact-project-title {
        font-size: 29px;
    }


    /* LOCATION */

    .contact-map {
        height: 190px;
    }

    .label-gaya {
        font-size: 17px;
    }

    .contact-map-card {
        min-width: 95px;

        padding: 7px 8px;
    }


    /* FAQ */

    .contact-faq-image {
        min-height: 200px;
    }

    .contact-faq-content .contact-section-title {
        font-size: 28px;
    }


    /* CTA */

    .contact-final-cta {
        min-height: 390px;
    }

    .contact-final-cta-heading h2 {
        font-size: 29px;
    }
}


/* ============================================================
   18. ACCESSIBILITY
============================================================ */

.contact-btn:focus-visible,
.contact-submit-btn:focus-visible,
.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible,
.contact-faq-item summary:focus-visible {
    outline:
        1px solid var(--contact-gold-light);

    outline-offset: 3px;
}


/* ============================================================
   19. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .contact-btn,
    .contact-btn-arrow,
    .contact-submit-btn,
    .contact-submit-btn span,
    .contact-faq-item summary span {
        transition: none;
    }
}