/* ========== CONTACT INFO CARDS ========== */
.contact-info-section {
    padding: 80px 40px;
    background: #fff;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-card p a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: #c9a84c;
}

.contact-closed {
    color: #c9a84c !important;
    font-weight: 600;
    margin-top: 4px;
}

/* ========== CONTACT MAIN (Form + Map) ========== */
.contact-main {
    padding: 100px 40px;
    background: #fff;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
    outline: none;
}

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

.form-group select {
    cursor: pointer;
    color: #999;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    padding: 16px 48px;
    background: #c9a84c;
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: #b8953e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Map */
.contact-map {
    border: 3px solid #c9a84c;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

/* ========== SOCIAL SECTION ========== */
.social-section {
    padding: 60px 40px;
    background: #f9f9f9;
    text-align: center;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c9a84c;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}
