/* =========================================================
   CONTACT INTRODUCTION — PREMIUM DESIGN
   ========================================================= */

.contact-intro-section {
    position: relative;
    padding: 105px 20px 120px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(191, 145, 45, 0.055),
            transparent 38%
        ),
        #fffdfa;
    overflow: hidden;
}


/* Subtle luxury background glow */

.contact-intro-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(196, 150, 49, 0.045);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}


/* Main container */

.contact-intro-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.contact-intro-heading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.contact-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #b88a2d;
}


.contact-intro-heading h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 700;

    color: #17120f;
}


.contact-intro-heading h1 span {
    display: block;
}


.contact-intro-lead {
    max-width: 850px;
    margin: 30px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.85;

    color: #5d5b58;
}


/* =========================================================
   DECORATIVE GOLD DIVIDER
   ========================================================= */

.contact-intro-heading::after {
    content: "";
    display: block;

    width: 70px;
    height: 2px;

    margin: 32px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #c59a42,
        transparent
    );
}


/* =========================================================
   PREMIUM TRUST CARDS
   ========================================================= */

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;

    margin-top: 70px;
}


/* Individual card */

.contact-trust-card {
    position: relative;

    min-height: 245px;
    padding: 38px 34px 35px;

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f7f1e5
        );

    border: 1px solid rgba(184, 138, 45, 0.42);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(42, 28, 12, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Golden glow */

.contact-trust-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -75px;
    right: -75px;

    background: rgba(198, 154, 58, 0.12);

    border-radius: 50%;

    filter: blur(18px);

    transition: 0.35s ease;
}


/* Top gold line */

.contact-trust-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 34px;
    right: 34px;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #c69a3a,
        transparent
    );

    opacity: 0.85;
}


/* Hover */

.contact-trust-card:hover {
    transform: translateY(-8px);

    border-color: rgba(184, 138, 45, 0.72);

    box-shadow:
        0 20px 48px rgba(42, 28, 12, 0.13),
        0 0 24px rgba(198, 154, 58, 0.10);
}


.contact-trust-card:hover::before {
    transform: scale(1.35);
    opacity: 1;
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.contact-card-number {
    position: absolute;

    top: 22px;
    right: 28px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: rgba(145, 108, 39, 0.55);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.contact-card-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #23150f,
            #4b281d
        );

    border: 1px solid #c59a42;

    box-shadow:
        0 5px 15px rgba(39, 23, 12, 0.18),
        0 0 14px rgba(198, 154, 58, 0.16);
}


.contact-card-icon span {
    color: #d5aa55;
    font-size: 23px;
    line-height: 1;
}


/* =========================================================
   CARD TYPOGRAPHY
   ========================================================= */

.contact-trust-card h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;

    color: #211710;
}


.contact-trust-card p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #5d5954;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-trust-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-intro-heading h1 {
        font-size: 46px;
    }

}


@media (max-width: 600px) {

    .contact-intro-section {
        padding: 75px 18px 85px;
    }

    .contact-intro-heading h1 {
        font-size: 38px;
    }

    .contact-intro-lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-trust-grid {
        margin-top: 48px;
        gap: 18px;
    }

    .contact-trust-card {
        padding: 32px 27px;
    }

}

/* =========================================================
   PREMIUM ENQUIRY FORM
   ========================================================= */

.contact-enquiry-section {
    position: relative;
    padding: 110px 20px 120px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(191, 145, 45, 0.08),
            transparent 42%
        ),
        #f7f4ee;
}


.contact-enquiry-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.contact-enquiry-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}


.contact-enquiry-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;

    color: #17120f;
}


.contact-enquiry-heading h2 span {
    display: block;
}


.contact-enquiry-heading p {
    max-width: 760px;
    margin: 24px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.8;

    color: #5c5853;
}


/* ---------------------------------------------------------
   FORM CARD
   --------------------------------------------------------- */

.contact-form-card {
    position: relative;

    padding: 48px;

    background:
        linear-gradient(
            145deg,
            #fffdf9,
            #f4ecdd
        );

    border: 1px solid rgba(185, 139, 43, 0.48);

    border-radius: 22px;

    box-shadow:
        0 25px 70px rgba(40, 25, 12, 0.12),
        0 0 35px rgba(190, 145, 45, 0.07);

    overflow: hidden;
}


/* Gold top accent */

.contact-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 7%;
    right: 7%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #b8892d,
            #e1c06b,
            #b8892d,
            transparent
        );
}


/* ---------------------------------------------------------
   FORM HEADER
   --------------------------------------------------------- */

.contact-form-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 28px;
    margin-bottom: 35px;

    border-bottom: 1px solid rgba(185, 139, 43, 0.25);
}


.contact-form-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #b28632;
}


.contact-form-card-top h3 {
    margin: 8px 0 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;

    color: #211710;
}


/* Small RedSpy-style seal */

.contact-form-seal {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #23140e,
            #4a251b
        );

    border: 2px solid #c69a3e;

    box-shadow:
        0 0 18px rgba(198, 154, 62, 0.22);
}


.contact-form-seal span {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 700;

    color: #d8ad57;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


/* ---------------------------------------------------------
   FIELD
   --------------------------------------------------------- */

.contact-field {
    display: flex;
    flex-direction: column;
}


.contact-field-full {
    grid-column: 1 / -1;
}


.contact-field label {
    margin-bottom: 9px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #2a211b;
}


.contact-field input,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 17px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;

    color: #241b15;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(120, 91, 46, 0.28);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.contact-field textarea {
    resize: vertical;
    min-height: 165px;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9a938b;
}


.contact-field input:focus,
.contact-field textarea:focus {
    background: #ffffff;

    border-color: #b8892d;

    box-shadow:
        0 0 0 3px rgba(184, 137, 45, 0.10),
        0 0 18px rgba(184, 137, 45, 0.08);
}


/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 32px;
    padding-top: 28px;

    border-top: 1px solid rgba(185, 139, 43, 0.22);
}


.contact-form-note {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    color: #696159;
}


.contact-lock {
    font-size: 16px;
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.contact-form-actions {
    display: flex;
    gap: 13px;
}


.contact-submit {
    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-submit:hover {
    transform: translateY(-3px);
}


/* Email */

.contact-email-btn {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #6e101c,
            #a8192d
        );

    border: 1px solid #a8192d;

    box-shadow:
        0 8px 22px rgba(117, 18, 32, 0.22);
}


/* WhatsApp */

.contact-whatsapp-btn {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #168f4b,
            #20b95e
        );

    border: 1px solid #168f4b;

    box-shadow:
        0 8px 22px rgba(22, 143, 75, 0.18);
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 850px) {

    .contact-form-card {
        padding: 32px 25px;
    }

    .contact-form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contact-form-card-top h3 {
        font-size: 25px;
    }

    .contact-form-seal {
        width: 52px;
        height: 52px;
    }

    .contact-form-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-submit {
        width: 100%;
    }

}

/* =====================================================
   REDSPY PREMIUM HERO CTA BUTTONS
===================================================== */

.hero-buttons .btn-primary,
.hero-buttons .faq-button {
    background: linear-gradient(135deg, #8f0f1f, #b51d2d) !important;
    color: #ffffff !important;
    border: 1px solid #c9a227 !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    transition: all 0.3s ease !important;
}

/* -----------------------------------------------------
   BOOK CONSULTATION
----------------------------------------------------- */

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #b51d2d, #8f0f1f) !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(201, 162, 39, 0.20) !important;
}

/* -----------------------------------------------------
   FREQUENTLY ASKED QUESTIONS
----------------------------------------------------- */

.hero-buttons .faq-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.hero-buttons .faq-button:hover {
    background: linear-gradient(135deg, #b51d2d, #8f0f1f) !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(201, 162, 39, 0.20) !important;
}

.hero-buttons .faq-button i {
    color: #ffffff !important;
    margin-left: 6px;
}