/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Hero Banner */
.contact-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1510;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 25, 18, 0.50) 0%,
        rgba(30, 25, 18, 0.70) 100%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contact-hero-cross {
    display: block;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
    line-height: 1;
}

.contact-hero-title {
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.contact-hero-subtitle {
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-hero-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
    margin: 18px auto 0;
}

/* Contact Main Section */
.contact-main {
    background: linear-gradient(180deg, #f7f5f2 0%, #edeae5 100%);
    padding: 70px 40px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Left Column — Info */
.contact-info-panel {
    padding: 10px 0;
}

.contact-info-heading {
    font-size: 30px;
    font-weight: normal;
    color: #3d342d;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.contact-info-tagline {
    font-size: 15px;
    color: #999;
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-info-block {
    margin-bottom: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f5f0ea 0%, #ebe4da 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8b7355;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #3d342d;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.contact-info-text p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #d5cfc7, transparent);
    margin: 30px 0;
}

.contact-hours h4 {
    font-size: 15px;
    font-weight: 600;
    color: #3d342d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #777;
    border-bottom: 1px solid #ece8e2;
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-row span:first-child {
    color: #555;
    font-weight: 500;
}

/* Right Column — Form */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
    opacity: 0.9;
}

.contact-form-title {
    font-size: 26px;
    font-weight: normal;
    color: #3d342d;
    margin-bottom: 6px;
    font-family: 'Georgia', serif;
}

.contact-form-desc {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-bottom: 30px;
}

.contact-field {
    margin-bottom: 22px;
}

.contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3d342d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Arial, sans-serif;
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    color: #3d342d;
    background: #faf9f7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
    background: white;
}

.contact-input::placeholder {
    color: #c0b9af;
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #7a6548, #5c4c3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.35);
}

.contact-back-link {
    display: block;
    text-align: center;
    color: #8b7355;
    text-decoration: none;
    margin-top: 18px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-back-link:hover {
    color: #3d342d;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        height: 250px;
    }

    .contact-hero-title {
        font-size: 34px;
        letter-spacing: 4px;
    }

    .contact-main {
        padding: 40px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-form-panel {
        padding: 28px 22px;
    }
}
