/* ============================================ */
/* CONTACT SECTION - COMPACT LAYOUT            */
/* Optimized for 100% zoom viewport fit        */
/* ============================================ */

.contact {
    padding: 50px 0; /* Reduced from 80-100px */
    background: var(--bg-light-parchment);
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 6px; /* Reduced */
    color: var(--brand-brown-dark);
    font-size: 2rem; /* Reduced from 2.5rem */
}

.contact .section-subtitle {
    text-align: center;
    color: var(--brand-brown-medium);
    margin-bottom: 35px; /* Reduced from 50px */
    font-size: 0.95rem; /* Reduced from 1.1rem */
}

/* ============================================ */
/* CONTACT CONTENT LAYOUT                       */
/* ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px; /* Reduced from 50-60px */
    align-items: start;
}

/* ============================================ */
/* CONTACT INFO (LEFT SIDE)                     */
/* ============================================ */

.contact-info h3 {
    color: var(--brand-brown-dark);
    font-size: 1.4rem; /* Reduced from 1.8rem */
    margin-bottom: 12px; /* Reduced from 20px */
}

.contact-info > p {
    color: #555;
    margin-bottom: 25px; /* Reduced from 30px */
    line-height: 1.5; /* Tighter */
    font-size: 0.95rem; /* Slightly smaller */
}

/* ============================================ */
/* CONTACT METHODS                              */
/* ============================================ */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reduced from 20px */
}

.contact-method {
    background: white;
    padding: 18px 20px; /* Reduced from 25px */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.12);
}

.contact-method i {
    font-size: 1.4rem; /* Reduced from 1.8rem */
    color: var(--brand-brown-medium);
    width: 45px; /* Reduced from 50px */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-parchment);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-method div h4 {
    color: var(--brand-brown-dark);
    font-size: 1.05rem; /* Reduced from 1.2rem */
    margin-bottom: 3px; /* Reduced from 5px */
}

.contact-method div p {
    color: #666;
    font-size: 0.9rem; /* Reduced from 1rem */
    margin: 0;
    line-height: 1.4;
}

/* ============================================ */
/* CONTACT FORM (RIGHT SIDE)                    */
/* ============================================ */

.contact-form {
    background: white;
    padding: 25px 30px; /* Reduced from 40px */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

/* ============================================ */
/* FORM GROUPS                                  */
/* ============================================ */

.form-group {
    margin-bottom: 18px; /* Reduced from 25px */
}

.form-group:last-of-type {
    margin-bottom: 20px; /* Reduced from 30px */
}

.form-group label {
    display: block;
    margin-bottom: 6px; /* Reduced from 8px */
    color: var(--brand-brown-dark);
    font-weight: 600;
    font-size: 0.95rem; /* Slightly smaller */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px; /* Reduced from 12px 16px */
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem; /* Slightly smaller */
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-brown-medium);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px; /* Reduced from 120px */
}

/* ============================================ */
/* SUBMIT BUTTON                                */
/* ============================================ */

.contact-form .btn {
    width: 100%;
    padding: 12px 24px; /* Slightly reduced */
    font-size: 1rem; /* Slightly smaller */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary {
    background: var(--brand-brown-medium);
    color: white;
    border-radius: 8px;
}

.contact-form .btn-primary:hover {
    background: var(--brand-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE DESIGN                            */
/* ============================================ */

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact .section-subtitle {
        margin-bottom: 30px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contact-methods {
        gap: 12px;
    }

    .contact-method {
        padding: 16px 18px;
    }

    .contact-method i {
        font-size: 1.3rem;
        width: 42px;
        height: 42px;
    }

    .contact-method div h4 {
        font-size: 1rem;
    }

    .contact-method div p {
        font-size: 0.88rem;
    }

    .contact-form {
        padding: 22px 25px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group textarea {
        min-height: 90px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 35px 0;
    }

    .contact h2 {
        font-size: 1.6rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-method {
        padding: 14px 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .contact-form .btn {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}