/* =========================================
   contact.css – Contact Page Specific Styles
   ========================================= */

/* ---- Hero Banner ---- */
.contact-hero {
    position: relative;
    height: 220px;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 50px;
}

.contact-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ---- Shared container for contact page ---- */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Our Location (Map) ---- */
.contact-map-section {
    background: #f4f4f4;
    padding: 38px 0 44px;
}

.contact-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    border-left: 3px solid #c0392b;
    padding-left: 10px;
}

.map-wrapper {
    width: 100%;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ---- Contact Body (Form + Info) ---- */
.contact-body-section {
    background: #fff;
    padding: 44px 0 60px;
}

.contact-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* -- Contact Form box -- */
.contact-sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    border-left: 3px solid #c0392b;
    padding-left: 10px;
}

.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.cp-field {
    position: relative;
    display: flex;
    align-items: stretch;
    border: 1px solid #ccc;
    background: #fff;
    transition: border-color 0.2s;
}

.cp-field:focus-within {
    border-color: #c0392b;
}

.cp-field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    background: #f0f0f0;
    color: #888;
    font-size: 13px;
    border-right: 1px solid #ddd;
    flex-shrink: 0;
}

.cp-field input,
.cp-field textarea {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    color: #333;
    background: transparent;
    resize: none;
}

.cp-textarea-field {
    margin-bottom: 16px;
    align-items: flex-start;
}

.cp-textarea-field .cp-field-icon {
    padding-top: 10px;
    align-items: flex-start;
}

.cp-form-actions {
    display: flex;
    gap: 10px;
}

.cp-btn {
    padding: 10px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cp-btn-submit {
    background: #1a1a1a;
    color: #fff;
}

.cp-btn-submit:hover {
    background: #c0392b;
}

.cp-btn-reset {
    background: #e0e0e0;
    color: #555;
}

.cp-btn-reset:hover {
    background: #bbb;
    color: #222;
}

/* -- Contact Info box -- */
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.ci-icon-box {
    min-width: 40px;
    height: 40px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.ci-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.ci-text p {
    font-size: 13px;
    color: #555;
    margin: 0 0 3px;
    line-height: 1.6;
}

.ci-text a {
    color: #555;
    transition: color 0.2s;
}

.ci-text a:hover {
    color: #c0392b;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .contact-body-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cp-form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-content {
        padding-left: 20px;
    }

    .contact-hero-content h1 {
        font-size: 26px;
    }
}
