/* ─── CONTACT SECTION ─── */
.contact-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* Left Content */
.contact-header h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--black);
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-header p {
    font-size: 18px;
    color: var(--slate);
    margin-bottom: 48px;
    max-width: 450px;
    line-height: 1.6;
}

/* Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--divider);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--black);
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--gold);
}

.contact-form textarea {
    height: 120px;
    resize: none;
    margin-top: 10px;
}

.btn-send {
    margin-top: 32px;
    width: 200px !important;
    height: 54px !important;
    border: 1px solid var(--black) !important;
    background: transparent !important;
    color: var(--black) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-send:hover {
    background: var(--black) !important;
    color: var(--white) !important;
}

.btn-send .label {
    transition: none !important;
}

.btn-send::before,
.btn-send::after {
    display: none !important;
    /* Hide pov-btn extras */
}

/* Right Content - Info Card */
.contact-info-wrapper {
    position: relative;
    z-index: 1;
    padding: 40px;
}

/* Decorative Dot Pattern */
.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 280px;
    background-image: radial-gradient(var(--black) 1px, transparent 1px);
    background-size: 14px 14px;
    z-index: -1;
    opacity: 0.15;
}

[data-theme="dark"] .contact-info-wrapper::before {
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
}

.info-card {
    background: var(--mist);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.info-item {
    margin-bottom: 40px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.info-label::before {
    content: '— ';
}

.info-value {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    line-height: 1.5;
    display: block;
    word-break: break-all;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--black);
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid var(--divider);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-header h2 {
        font-size: 48px;
    }

    .contact-info-wrapper {
        max-width: 500px;
    }
}

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .info-card {
        padding: 40px 30px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-header h2 {
        font-size: 36px;
    }
}