* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #F5EFE3;
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
}

.contact-hero {
    background: #ffffff;
    border-bottom: 1px solid #D9D9D9;
    padding: 1.2rem 0;
}

.contact-hero-content {
    max-width: 760px;
}

.contact-hero h1 {
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.contact-hero p {
    color: #666666;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-page {
    padding: 4rem 0;
    background: #F5EFE3;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card,
.info-card,
.map-section {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 2.8rem;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    outline: none;
    background: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    outline: none;
    resize: none;
    background: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4AF37;
}

.submit-btn {
    width: fit-content;
    padding: 1rem 2.5rem;
    border: none;
    background: #D4AF37;
    color: #1a1a1a;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: #F5EFE3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.info-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    color: #666666;
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
}

.map-section {
    margin-top: 3rem;
    padding: 1rem;
}

.map-box {
    width: 100%;
    height: 380px;
    background: #F5EFE3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.map-box p {
    color: #666666;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
}

.alert {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .submit-btn {
        width: 100%;
    }
}