.wg-contact-section {
    background: #fdf9f9;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.wg-contact-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: stretch;
}

.wg-contact-info {
    background: linear-gradient(180deg, #f9f2f4 0%, #fffdfd 100%);
    border-radius: 24px;
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1e4e7;
    box-shadow: 0 10px 35px rgba(188, 151, 168, 0.08);
}

.wg-contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    line-height: 1.05;
    color: #2c2a2d;
    margin-bottom: 30px;
    font-weight: 500;
}

.wg-contact-info h2 span { color: #c79ba8; }

.wg-contact-info p {
    color: #5d5a60;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 26px;
}

.wg-contact-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #d9b6c4, transparent);
    margin: 28px 0;
}

.wg-contact-icon {
    position: absolute;
    bottom: 25px;
    left: 40px;
    opacity: 0.08;
}

.wg-contact-icon img,
.wg-contact-icon svg,
.wg-contact-icon i { display: block; }

/* ── Form wrap ── */
.wg-contact-form-wrap {
    background: #ffffff;
    border-radius: 24px;
    padding: 55px;
    border: 1px solid #f1e7eb;
    box-shadow: 0 10px 35px rgba(188, 151, 168, 0.08);
}

.wg-contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #2c2a2d;
    margin-bottom: 10px;
    font-weight: 500;
}

.wg-form-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #c79ba8, transparent);
    margin-bottom: 35px;
}

/* Dynamic fields container */
.wg-form-fields-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

.wg-field-wrap { display: flex; flex-direction: column; }
.wg-col-100 { width: 100%; }
.wg-col-50 { width: calc(50% - 9px); } /* subtract half the gap */

.wg-contact-form input,
.wg-contact-form textarea,
.wg-contact-form select {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #eadde2;
    background: #fff;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.wg-contact-form input:focus,
.wg-contact-form textarea:focus {
    border-color: #c79ba8;
    box-shadow: 0 0 0 4px rgba(199, 155, 168, 0.12);
}

.wg-contact-form textarea {
    min-height: 170px;
    resize: vertical;
    margin-top: 18px;
}

/* ── Services ── */
.wg-service-options { margin-top: 25px; }

.wg-service-options h4 {
    font-size: 15px;
    color: #3b3a3f;
    margin-bottom: 18px;
    font-weight: 600;
}

.wg-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.wg-service-box {
    border: 1px solid #eadde2;
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    user-select: none;
}

.wg-service-box:hover,
.wg-service-box.selected {
    border-color: #c79ba8;
    background: #fdf7f9;
}

.wg-service-box span {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.wg-service-box strong {
    font-size: 13px;
    color: #4d4b51;
    font-weight: 500;
    line-height: 1.4;
}

/* ── Notice ── */
.wg-form-notice {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.wg-notice-success {
    background: #f0faf4;
    border: 1px solid #a8d5b5;
    color: #2d6a4f;
}

.wg-notice-error {
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    color: #842029;
}

/* ── Submit button ── */
.wg-submit-btn {
    margin-top: 28px;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #cf9ead 0%, #b98fa2 100%);
    color: white;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(185, 143, 162, 0.25);
    font-family: inherit;
}

.wg-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(185, 143, 162, 0.3);
}

.wg-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wg-contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .wg-contact-info,
    .wg-contact-form-wrap { padding: 35px 25px; }

    .wg-contact-info h2,
    .wg-contact-form-wrap h3 { font-size: 42px; }

    .wg-col-50 { width: 100%; }

    .wg-services-grid { grid-template-columns: repeat(3, 1fr); }
}