
/* =====================================================
   CONTACT SECTION
   All classes are contact-specific so they don't
   interfere with header / other website sections.
===================================================== */

.contact-section {
    width: 100%;
    background: #f7f8fa;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}


/* =====================================================
   CONTACT HERO CAROUSEL
===================================================== */

.contact-hero {
    width: 100%;
    height: 43vh;
    min-height: 300px;
    max-height: 520px;
    position: relative;
    overflow: hidden;
}

.contact-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    opacity: 0;
    transform: scale(1.04);

    transition:
        opacity 0.8s ease,
        transform 5s ease;

    pointer-events: none;
}

.contact-slide.active {
    opacity: 1;
    transform: scale(1);
}

.contact-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.18)
        );
}


/* Hero Content */

.contact-hero-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);

    max-width: 650px;
    color: #ffffff;
    z-index: 2;
}

.contact-hero-content span {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 14px;

    color: #d4af37;
}

.contact-hero-content h1 {
    margin: 0 0 12px;

    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
}

.contact-hero-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.90);
}


/* Carousel Buttons */

.contact-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    background: rgba(0,0,0,0.25);
    color: #ffffff;

    font-size: 20px;

    cursor: pointer;
    z-index: 5;

    transition: 0.3s ease;
}

.contact-carousel-btn:hover {
    background: #d4af37;
    color: #111111;
    border-color: #d4af37;
}

.contact-prev {
    left: 25px;
}

.contact-next {
    right: 25px;
}


/* Carousel Dots */

.contact-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 5;
}

.contact-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.55);

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #d4af37;
}


/* =====================================================
   MAIN CONTACT CONTAINER
===================================================== */

.contact-container {
    width: min(1180px, 92%);
    margin: 0 auto;

    padding: 80px 0;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;

    align-items: start;
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-heading {
    margin-bottom: 35px;
}

.contact-heading > span,
.contact-map-heading > span,
.contact-form-header > span {
    display: inline-block;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;

    color: #b28d18;

    margin-bottom: 10px;
}

.contact-heading h2 {
    margin: 0 0 15px;

    color: #171717;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
}

.contact-heading p {
    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


/* Detail List */

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #ffffff;
    color: #b28d18;

    box-shadow: 0 7px 25px rgba(0,0,0,0.06);

    font-size: 18px;
}

.contact-icon.whatsapp-icon {
    color: #25d366;
}

.contact-detail h3 {
    margin: 1px 0 5px;

    font-size: 15px;
    color: #222222;
}

.contact-detail p,
.contact-detail a {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.6;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-detail a:hover {
    color: #b28d18;
}


/* Quick Buttons */

.contact-quick-buttons {
    display: flex;
    gap: 12px;

    margin-top: 32px;
}

.contact-call-btn,
.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 20px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.contact-call-btn {
    background: #171717;
    color: #ffffff;
}

.contact-call-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.contact-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.contact-whatsapp-btn:hover {
    background: #1fb957;
    transform: translateY(-2px);
}


/* =====================================================
   ENQUIRY FORM
===================================================== */

.contact-form-box {
    background: #ffffff;

    padding: 38px;

    border-radius: 20px;

    box-shadow:
        0 18px 55px rgba(0,0,0,0.08);

    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-header {
    margin-bottom: 25px;
}

.contact-form-header h2 {
    margin: 0 0 7px;

    font-size: 29px;
    color: #171717;
}

.contact-form-header p {
    margin: 0;

    font-size: 14px;
    color: #777777;
}


/* Form Row */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;

    margin-bottom: 17px;
}

.contact-field {
    width: 100%;
}

.contact-field label {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 700;

    color: #333333;
}

.contact-input-wrap {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;

    border: 1px solid #e3e5e8;
    border-radius: 9px;

    background: #fafbfc;

    transition: 0.3s ease;
}

.contact-input-wrap:focus-within {
    border-color: #d4af37;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(212,175,55,0.10);
}

.contact-input-wrap > i {
    width: 44px;

    text-align: center;

    color: #a18a48;

    font-size: 14px;
}

.contact-input-wrap input,
.contact-input-wrap select,
.contact-input-wrap textarea {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-family: inherit;

    color: #222222;

    font-size: 13px;
}

.contact-input-wrap input,
.contact-input-wrap select {
    height: 100%;
}

.contact-input-wrap input::placeholder,
.contact-input-wrap textarea::placeholder {
    color: #a4a7ab;
}

.contact-input-wrap select {
    cursor: pointer;
}


/* Textarea */

.contact-textarea-wrap {
    height: auto;
    min-height: 105px;

    align-items: flex-start;
}

.contact-textarea-wrap > i {
    padding-top: 16px;
}

.contact-input-wrap textarea {
    resize: vertical;

    min-height: 103px;

    padding: 14px 10px 14px 0;

    line-height: 1.5;
}

.contact-message-field {
    margin-bottom: 20px;
}


/* Submit Button */

.contact-submit-btn {
    width: 100%;

    height: 52px;

    border: none;
    border-radius: 9px;

    background: #171717;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #d4af37;
    color: #111111;

    transform: translateY(-2px);
}

.contact-submit-btn i {
    transition: 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-form-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;

    margin: 13px 0 0;

    color: #929292;

    font-size: 11px;
}


/* =====================================================
   MAP SECTION
===================================================== */

.contact-map-section {
    width: min(1180px, 92%);
    margin: 0 auto;

    padding-bottom: 80px;
}

.contact-map-heading {
    text-align: center;

    margin-bottom: 25px;
}

.contact-map-heading h2 {
    margin: 0 0 8px;

    color: #171717;

    font-size: 32px;
}

.contact-map-heading p {
    margin: 0;

    color: #777777;

    font-size: 14px;
}

.contact-map {
    width: 100%;
    height: 390px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-info {
        max-width: 700px;
    }

    .contact-form-box {
        max-width: 700px;
        width: 100%;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .contact-hero {
        height: 38vh;
        min-height: 270px;
    }

    .contact-hero-content {
        left: 6%;
        right: 6%;
        max-width: none;
    }

    .contact-hero-content span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .contact-hero-content h1 {
        font-size: 39px;
    }

    .contact-hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-carousel-btn {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .contact-prev {
        left: 12px;
    }

    .contact-next {
        right: 12px;
    }

    .contact-container {
        width: 92%;
        padding: 55px 0;

        gap: 40px;
    }

    .contact-heading h2 {
        font-size: 29px;
    }

    .contact-detail-list {
        gap: 18px;
    }

    .contact-quick-buttons {
        flex-direction: column;
    }

    .contact-call-btn,
    .contact-whatsapp-btn {
        width: 100%;
    }

    .contact-form-box {
        padding: 24px 18px;
        border-radius: 15px;
    }

    .contact-form-header h2 {
        font-size: 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .contact-map-section {
        width: 92%;
        padding-bottom: 55px;
    }

    .contact-map-heading h2 {
        font-size: 27px;
    }

    .contact-map {
        height: 300px;
        border-radius: 14px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .contact-hero {
        height: 36vh;
    }

    .contact-hero-content h1 {
        font-size: 33px;
    }

    .contact-form-box {
        padding: 20px 14px;
    }

    .contact-input-wrap {
        height: 46px;
    }

    .contact-map {
        height: 260px;
    }
}

