﻿.contact-page-title {
    position: relative;
    width: 100%; /* full chiều ngang container */
    height: 650px; /* chiều cao banner cố định */
    background-size: cover; /* ảnh phủ toàn bộ banner */
    background-position: center; /* căn giữa ảnh */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center; /* chữ căn giữa ngang */
    align-items: center; /* chữ căn giữa dọc */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact-page-title-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* overlay mờ */
    z-index: 1;
}

.contact-page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-page-title-text {
    color: #FFD700;
    font-size: clamp(2rem, 4vw, 4rem); /* chữ responsive */
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* ==== Honey Contact Section (Dark Style) ==== */
.honey-contact-section {
    padding: 60px 20px;
    background: #1A1A1A; /* nền tối */
    font-family: "Montserrat", sans-serif;
    color: #fff; /* chữ mặc định trắng */
}

.honey-contact-container {
    max-width: 1170px;
    margin: 0 auto;
}

.honey-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.honey-contact-col {
    flex: 1;
    min-width: 280px;
}

/* Item */
.honey-contact-item {
    text-align: center;
    background: #2a2a2a; /* nền xám đậm */
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .honey-contact-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3); /* vàng nổi bật */
    }

/* Icon */
.honey-contact-icon {
    width: 90px;
    height: 90px;
    background: #1A1A1A; /* nền icon tối */
    line-height: 85px;
    text-align: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4A017; /* viền vàng */
    transition: all 0.3s ease;
}

    .honey-contact-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        filter: brightness(0) invert(1); /* nếu icon gốc tối, chuyển sang sáng */
    }

/* Text */
.honey-contact-text h2 {
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0;
    color: #D4A017; /* tiêu đề vàng */
}

.honey-contact-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc; /* role xám nhạt */
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .honey-contact-row {
        flex-direction: column;
    }
}

/* Contact Page Form Section */
.wpo-contact-pg-section {
    padding: 80px 0;
    background: #1A1A1A; /* nền tối */
}

    .wpo-contact-pg-section .wpo-contact-title {
        max-width: 650px;
        margin: 0 auto 40px auto;
        text-align: center;
    }

        .wpo-contact-pg-section .wpo-contact-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #D4A017; /* vàng nổi bật */
            margin-bottom: 15px;
        }

        .wpo-contact-pg-section .wpo-contact-title p {
            font-size: 16px;
            color: #ccc; /* trắng nhạt */
            line-height: 1.6;
        }

    .wpo-contact-pg-section .wpo-contact-form-area {
        padding: 40px;
        background: #2a2a2a; /* nền form tối */
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.1); /* bóng vàng nhạt */
        border-radius: 16px;
        transition: transform 0.3s ease;
    }

        .wpo-contact-pg-section .wpo-contact-form-area:hover {
            transform: translateY(-5px);
        }

    /* Input & Select */
    .wpo-contact-pg-section form input,
    .wpo-contact-pg-section form select,
    .wpo-contact-pg-section form textarea {
        width: 100%;
        height: 50px;
        border: 1px solid #444; /* xám nhạt */
        border-radius: 10px;
        padding: 12px 18px;
        font-size: 15px;
        color: #fff; /* chữ trắng */
        background: #1A1A1A; /* nền input tối */
        transition: all 0.3s ease;
    }

    .wpo-contact-pg-section form textarea {
        height: 150px;
        resize: none;
    }

        .wpo-contact-pg-section form input:focus,
        .wpo-contact-pg-section form select:focus,
        .wpo-contact-pg-section form textarea:focus {
            border-color: #D4A017; /* viền vàng khi focus */
            background: #2a2a2a;
            box-shadow: 0 0 6px rgba(212, 160, 23, 0.3);
            outline: none;
        }

    /* Placeholder */
    .wpo-contact-pg-section form ::placeholder {
        color: #ccc; /* xám nhạt */
        font-size: 14px;
    }

    /* Grid layout */
    .wpo-contact-pg-section form .wpo-contact-form-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

        .wpo-contact-pg-section form .wpo-contact-form-wrapper > div {
            flex: 1 1 calc(50% - 20px);
        }

        .wpo-contact-pg-section form .wpo-contact-form-wrapper .fullwidth {
            flex: 1 1 100%;
        }

    /* Submit button */
    .wpo-contact-pg-section form .submit-area {
        text-align: center;
        margin-top: 20px;
    }

    .wpo-contact-pg-section form .consultar-cf7-btn {
        display: inline-block;
        padding: 14px 50px;
        background: #D4A017; /* nút vàng */
        color: #1A1A1A; /* chữ đen nổi bật */
        font-size: 16px;
        font-weight: 700;
        border-radius: 30px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
    }

        .wpo-contact-pg-section form .consultar-cf7-btn:hover {
            background: #fff; /* vàng đổi sang trắng khi hover */
            color: #D4A017; /* chữ vàng nổi bật */
            transform: scale(1.05);
        }

/* Map Section */
#contact.project.section-padding,
.map-section {
    background: #1A1A1A; /* nền tối */
    padding: 60px 20px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #2a2a2a; /* nền map container tối */
    border-radius: 12px;
    box-shadow: 0px 1px 15px rgba(212, 160, 23, 0.1); /* bóng vàng nhạt */
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 700px;
        border: 0;
        display: block;
        filter: contrast(0.9); /* tối nhẹ map nếu cần */
    }
