﻿/* Contact Page Styles */
:root {
    --primary-color: #006b84; /* Thay bằng màu thương hiệu của bạn */
    --text-main: #333;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

#contact-page {
    padding: 80px 0;
    background-color: #fff;
    /* font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Chia 2 cột: Cột trái nhỏ hơn cột phải */
    gap: 50px;
    align-items: start;
}

/* Titles */
.section-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-red);
    text-transform: uppercase;
    font-family: 'Lora';
}

.section-title p {
    /* color: var(--text-muted); */
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--gold-dim);
    margin-bottom: 25px;
}

/* Contact Info Side */
.contact-info-section {
    /*background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;*/
}

#form-action {
    margin-botto: 2021
}

.contact_info p {
    /* display: flex; */
    /* align-items: center; */
    /* margin-bottom: 15px; */
    /* font-size: 15px; */
    /* color: var(--text-main); */
}

.contact-sub-items .sub-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Form Section */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.full-width {
    grid-column: span 2;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    background: #fff;
}

    .form-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

textarea.form-input {
    resize: none;
}

.error-msg {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none !important;
}

/* Button */
.btn-submit {
    display: inline-block;
    background: var(--deep-red);
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

    .btn-submit:hover {
        background: #ec2127;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* Map */
.google-map-wrapper {
    width: 100%;
    height: 450px;
    filter: grayscale(10%); /* Tạo hiệu ứng hơi xám cho hiện đại, bỏ nếu muốn màu gốc */
}

    .google-map-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        border: none;
    }

.form-action {
    text-align: center;
}
/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        order: 1;
    }

    .contact-form-section {
        order: 2;
    }

    #contact-page {
        padding: 30px 0;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}
