/* ===================================================================
   CONTACT — Dreamvion Contact Page Styles
   =================================================================== */

/* -------- CONTACT HERO -------- */
.contact-hero {
    padding: 140px 0 90px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.contact-hero-content .eyebrow {
    margin-bottom: 16px;
}

.contact-hero-content h1 {
    font-size: clamp(32px, 4.8vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.contact-hero-content h1 .accent-word {
    color: var(--accent);
}

.contact-hero-sub {
    font-size: 17.5px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* -------- CONTACT MAIN -------- */
.contact-main-section {
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* -------- CONTACT INFO -------- */
.contact-info {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.info-header {
    margin-bottom: 32px;
}

.info-header .eyebrow {
    margin-bottom: 12px;
}

.info-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.info-item p a {
    color: var(--text);
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--accent);
}

.info-social {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.info-social span {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #03131c;
    border-color: var(--accent);
}

/* -------- CONTACT FORM -------- */
.contact-form-wrapper {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14.5px;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form .form-group .required {
    color: #ff4444;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.contact-form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238fa3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form .form-group select option {
    background: var(--bg-elevated);
    color: var(--text);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13.5px !important;
    color: var(--text-muted) !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* -------- MAP SECTION -------- */
.map-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(6, 10, 16, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 18px 24px;
}

.map-address {
    display: flex;
    gap: 16px;
    align-items: center;
}

.map-address i {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.map-address strong {
    display: block;
    font-size: 15px;
}

.map-address span {
    font-size: 13px;
    color: var(--text-muted);
}

/* -------- WHY CONTACT -------- */
.why-contact-section {
    background: var(--bg);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-contact-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-contact-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.why-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 16px;
}

.why-contact-card h4 {
    font-size: 16.5px;
    margin-bottom: 10px;
}

.why-contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------- FAQ -------- */
.faq-contact-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-faq {
    max-width: 820px;
    margin: 0 auto;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 120px 0 64px;
    }
}

@media (max-width: 760px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-sub {
        font-size: 16px;
    }

    .contact-info {
        padding: 28px 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

    .info-items {
        gap: 18px;
    }

    .info-item {
        gap: 14px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .why-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .map-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
    }

    .map-address {
        gap: 12px;
    }

    .map-address i {
        font-size: 18px;
    }

    .map-address strong {
        font-size: 14px;
    }

    .map-address span {
        font-size: 12px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .info-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 48px;
    }

    .contact-hero-content h1 {
        font-size: 24px;
    }

    .contact-hero-sub {
        font-size: 14.5px;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .info-header h2 {
        font-size: 20px;
    }

    .form-header h3 {
        font-size: 19px;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        font-size: 13px;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 14px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .map-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .map-address {
        gap: 10px;
    }

    .map-address i {
        font-size: 16px;
    }

    .map-address strong {
        font-size: 13px;
    }

    .map-address span {
        font-size: 11px;
    }

    .checkbox-label {
        font-size: 12.5px !important;
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}