/* =========================================================
   CONTACT PAGE ONLY STYLES
   (Uses section-container & typography from about.css)
   ========================================================= */


/* ================= CONTACT HERO ================= */
.contact-hero {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ef 0%, #e8e6e1 100%);
}

.contact-hero-title {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}


/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 60px 30px;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}


/* ================= CONTACT INFO ================= */
/* ================= CONTACT INFO LEFT CARD ================= */

.contact-info-card {
    background: #f5f3ef;
    padding: 45px 40px;
    border-radius: 24px;
    height: 100%;
}

/* Title */
.contact-info-title {
    font-size: 34px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Subtitle */
.contact-info-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
    max-width: 320px;
    font-family: Arial, sans-serif;
}

/* Info list */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Item row */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Icon */
.contact-icon {
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Text */
.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #777;
    font-family: Arial, sans-serif;
}

.contact-text strong {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

/* ================= CONTACT MAP ================= */

.contact-map-section {
    padding: 60px 30px;
    background-color: #f5f3ef;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .contact-map-section {
        padding: 80px 60px;
    }

    .map-wrapper {
        height: 420px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .contact-map-section {
        padding: 100px 80px;
    }

    .map-wrapper {
        height: 460px;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .contact-info-card {
        padding: 35px 30px;
    }

    .contact-info-title {
        font-size: 28px;
    }
}

/* =========================================================
   CONTACT FORM – MATCHES HOME PAGE STYLE
   ========================================================= */

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Form wrapper */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Row layout (Name + Email, Phone + Subject) */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Field group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Labels */
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Inputs, select, textarea */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

/* Focus state */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button (same as home page) */
.contact-btn {
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-card {
        padding: 50px 45px;
    }
}


/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
    .contact-hero {
        padding: 100px 60px;
    }

    .contact-hero-title {
        font-size: 58px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-hero {
        padding: 120px 80px;
    }

    .contact-hero-title {
        font-size: 68px;
    }
}
