/* =========================================
   CONTACT PAGE STYLES (LIGHT THEME)
========================================= */

.contact-section {
    background: #f7fbff; /* light background */
    padding: clamp(60px, 8vw, 120px) 16px;
    color: #0f172a;
}

/* Main Layout */
.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: clamp(40px, 6vw, 80px);
    align-items: flex-start;
}

/* =========================================
   LEFT SIDE – VISUAL
========================================= */

.contact-visual {
    flex: 1;
    position: sticky;
    top: 120px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.orbit-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container p {
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: clamp(20px, 6vw, 40px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;

    background: linear-gradient(to bottom, #dacd17, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

/* =========================================
   RIGHT SIDE – FORM BOX
========================================= */

.contact-form-box {
    flex: 1.5;
    background: #ffffff;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

/* Header */
.form-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.form-header p {
    color: #64748b;
    margin-bottom: clamp(24px, 4vw, 40px);
    font-size: 15px;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 20px;
}

/* Inputs */
.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #cebb12;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 14px;
    color: #0f172a;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #e8eb25;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 24px;
    font-size: 13px;
    color: #475569;
}

.checkbox-group a {
    color: #cebb12;
    text-decoration: none;
}

/* Send Button */
.btn-send {
    width: 100%;
    background: #cebb12;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* =========================================
   SOCIAL ICONS
========================================= */

.partner-logos {
    display: flex;
    gap: 26px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    justify-content: center;
}

.partner-logos a {
    color: #64748b;
    font-size: 22px;
    transition: all 0.3s ease;
}

.partner-logos a:hover {
    color: #2563eb;
    transform: translateY(-4px);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-visual {
        position: static;
        order: 2;
        margin-top: 40px;
    }

    .orbit-container {
        max-width: 300px;
    }

    .contact-form-box {
        width: 100%;
        order: 1;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .orbit-container {
        max-width: 240px;
    }

    .btn-send {
        font-size: 15px;
        padding: 14px;
    }
}

/* =========================================
   RESPONSIVE FIX FOR VERTICAL TEXT
========================================= */

@media (max-width: 992px) {
    .contact-visual {
        position: static;
        order: 2;
        margin-top: 60px;
        height: auto;
    }

    .orbit-container p {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        font-size: clamp(32px, 8vw, 48px);
        text-align: center;
        white-space: normal;
    }
}
