/* =============================================================================
   VIVELEAD CONTACT PAGE STYLESHEET
   Clean, Modern, Conversion-Focused Design
   ============================================================================= */

/* =============================================================================
   PAGE WRAPPER
   ============================================================================= */

.vl-contact-page {
    min-height: 100vh;
    background: #ffffff;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.vl-contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.vl-contact-hero__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.vl-contact-hero__title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.vl-contact-hero__subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.vl-contact-hero__response {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.vl-contact-hero__response svg {
    color: #22c55e;
}

/* =============================================================================
   MAIN CONTENT - TWO COLUMN LAYOUT
   ============================================================================= */

.vl-contact-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

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

/* =============================================================================
   CONTACT FORM (LEFT COLUMN)
   ============================================================================= */

.vl-contact-form-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vl-contact-form-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.vl-contact-form-section__subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 32px 0;
}

.vl-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.vl-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vl-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.vl-form-group label span {
    color: #ef4444;
}

.vl-form-group input,
.vl-form-group textarea,
.vl-form-group select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.vl-form-group input:focus,
.vl-form-group textarea:focus,
.vl-form-group select:focus {
    outline: none;
    border-color: #4051B5;
    box-shadow: 0 0 0 3px rgba(64, 81, 181, 0.1);
}

.vl-form-group input::placeholder,
.vl-form-group textarea::placeholder {
    color: #9ca3af;
}

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

.vl-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
}

.vl-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4051B5;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 8px;
}

.vl-form-submit:hover {
    background: #3344a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 81, 181, 0.3);
}

.vl-form-submit svg {
    transition: transform 0.2s ease;
}

.vl-form-submit:hover svg {
    transform: translateX(4px);
}

.vl-form-note {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-top: 4px;
}

/* =============================================================================
   CONTACT INFO (RIGHT COLUMN)
   ============================================================================= */

.vl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Quick Actions */
.vl-quick-actions {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.vl-quick-actions__title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.vl-quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vl-quick-action:last-child {
    margin-bottom: 0;
}

.vl-quick-action:hover {
    border-color: #4051B5;
    box-shadow: 0 2px 8px rgba(64, 81, 181, 0.1);
    transform: translateX(4px);
}

.vl-quick-action__icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vl-quick-action__icon svg {
    color: #4051B5;
}

.vl-quick-action__icon--whatsapp {
    background: #dcfce7;
}

.vl-quick-action__icon--whatsapp svg {
    color: #22c55e;
}

.vl-quick-action__icon--phone {
    background: #fef3c7;
}

.vl-quick-action__icon--phone svg {
    color: #d97706;
}

.vl-quick-action__content {
    flex-grow: 1;
}

.vl-quick-action__label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.vl-quick-action__value {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.vl-quick-action__arrow {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.vl-quick-action:hover .vl-quick-action__arrow {
    color: #4051B5;
    transform: translateX(4px);
}

/* Contact Details */
.vl-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vl-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vl-contact-detail__icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vl-contact-detail__icon svg {
    color: #64748b;
}

.vl-contact-detail__content {
    padding-top: 2px;
}

.vl-contact-detail__label {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
}

.vl-contact-detail__value {
    font-size: 15px;
    color: #1e293b;
    margin: 0;
}

.vl-contact-detail__value a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vl-contact-detail__value a:hover {
    color: #4051B5;
}

/* Support Hours */
.vl-support-hours {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 20px;
}

.vl-support-hours__title {
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vl-support-hours__title svg {
    color: #f59e0b;
}

.vl-support-hours__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vl-support-hours__list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #fde68a;
}

.vl-support-hours__list li:last-child {
    border-bottom: none;
}

.vl-support-hours__list li span:first-child {
    color: #78716c;
}

.vl-support-hours__list li span:last-child {
    color: #1e293b;
    font-weight: 500;
}

/* =============================================================================
   TRUST SIGNALS
   ============================================================================= */

.vl-contact-trust {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 24px;
}

.vl-contact-trust__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.vl-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vl-trust-item__icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4051B5;
}

.vl-trust-item__text {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin: 0;
}

/* =============================================================================
   MAP SECTION (Optional, Compact)
   ============================================================================= */

.vl-contact-map {
    height: 300px;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.vl-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
    .vl-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vl-contact-info {
        order: -1;
    }

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

@media (max-width: 768px) {
    .vl-contact-hero {
        padding: 60px 0 40px;
    }

    .vl-contact-hero__title {
        font-size: 32px;
    }

    .vl-contact-main {
        padding: 40px 20px 60px;
    }

    .vl-contact-form-section {
        padding: 28px;
    }

    .vl-form-row {
        grid-template-columns: 1fr;
    }

    .vl-contact-trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .vl-contact-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .vl-contact-hero__title {
        font-size: 28px;
    }

    .vl-contact-hero__subtitle {
        font-size: 16px;
    }

    .vl-contact-form-section {
        padding: 24px 20px;
    }

    .vl-contact-form-section__title {
        font-size: 20px;
    }

    .vl-contact-trust__inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .vl-trust-item__icon {
        width: 40px;
        height: 40px;
    }

    .vl-trust-item__text {
        font-size: 13px;
    }
}

/* =============================================================================
   FORM SUCCESS/ERROR STATES
   ============================================================================= */

.vl-form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
    margin-bottom: 20px;
}

.vl-form-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.vl-form-message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* =============================================================================
   LOADING STATE
   ============================================================================= */

.vl-form-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.vl-form-submit.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
