/* ============================================================
   CONTACT US PAGE STYLES
   ============================================================ */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Left Side: Contact Info */
.contact-info-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0E212F;
    margin-bottom: 16px;
}
.contact-desc {
    font-size: 14px;
    color: #6b7b8a;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
   /* background: #047185; */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}
.contact-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    padding-top: 8px;
}
.contact-text a {
    color: #047185;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-text a:hover {
    color: #0a8fa3;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f6f8;
    color: #047185;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #047185;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(4,113,133,0.25);
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.contact-image:hover img {
    transform: scale(1.04);
}

/* Right Side: Inquiry Form */
.inquiry-form-wrapper {
    padding-left: 20px;
}
.inquiry-form-wrapper .tagline {
    background: #FEBC5A;
    color: #0E212F;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.inquiry-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #047185;
    margin-bottom: 32px;
}

.inquiry-form .form-control-line {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1.5px solid #d9d9d9;
    background: transparent;
    font-size: 14px;
    color: #0E212F;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}
.inquiry-form .form-control-line::placeholder {
    color: #999999;
}
.inquiry-form .form-control-line:focus {
    border-bottom-color: #047185;
}
.inquiry-form select.form-control-line {
    color: #999999;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
    padding-right: 20px;
}
.inquiry-form select.form-control-line option {
    color: #0E212F;
}
.inquiry-form textarea.form-control-line {
    resize: vertical;
    min-height: 120px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}
.inquiry-form textarea.form-control-line:focus {
    background: #f0f9fb;
}

.btn-send {
    background: #047185;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.btn-send:hover {
    background: #0a8fa3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4,113,133,0.25);
}
.btn-send i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.btn-send:hover i {
    transform: translateX(4px);
}

/* Map Section */
.map-section {
    background: #ffffff;
    padding-bottom: 0;
}
.map-container {
    width: 100%;
    line-height: 0;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(20%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    .inquiry-form-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    .inquiry-form-wrapper h2 {
        font-size: 28px;
    }
    .contact-info-wrapper h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-info-wrapper h3 {
        font-size: 22px;
    }
    .contact-desc {
        font-size: 13px;
    }
    .contact-item {
        gap: 10px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    .contact-text {
        font-size: 13px;
        padding-top: 6px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .contact-image {
        margin-bottom: 20px;
    }
    .inquiry-form-wrapper {
        margin-top: 30px;
    }
    .inquiry-form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .inquiry-form .form-control-line {
        padding: 12px 0;
        font-size: 13px;
    }
    .inquiry-form textarea.form-control-line {
        padding: 12px;
        min-height: 100px;
    }
    .btn-send {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .map-container iframe {
        height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .map-container iframe {
        height: 350px;
    }
}
