/* ==========================================
   CONTACT SECTION (Inside Scrollable Area)
   ========================================== */
.contact-section {
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 80px;
}

/* Timezone Info Card */
.timezone-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 24px;
    margin-top: 32px;
    max-width: 100%;
}

.timezone-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timezone-icon svg {
    color: #F97316;
    width: 20px;
    height: 20px;
}

.timezone-content {
    flex: 1;
}

.timezone-text {
    font-size: 14px;
    font-weight: 500;
    color: #B3B3B3;
    margin: 0;
    line-height: 1.4;
}

/* Contact Form */
.contact-form {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    margin-left: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Email Error Message */
.email-error {
    display: none;
    color: #ff4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

/* All Form Error Messages */
.form-error {
    display: none;
    color: #ff4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 16px;
    background: #2A2A2A;
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 15px;
    font-family: var(--font-family);
    outline: none;
    transition: background 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8A8A8A;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: #333333;
}

/* Select Dropdown */
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: #2A2A2A;
    color: #FFFFFF;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

/* Submit Button */
.form-submit {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    background: #F97316;
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    margin-left: 0;
}

.form-submit:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

/* ==========================================
   RESPONSIVE DESIGN - CONTACT SECTION
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-section {
        margin-bottom: 60px;
    }

    .contact-form {
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 60px;
        padding-bottom: 50px;
        margin-bottom: 40px;
    }

    .timezone-card {
        max-width: 100%;
        padding: 16px 20px;
        margin-top: 24px;
    }

    .timezone-icon {
        width: 36px;
        height: 36px;
    }

    .timezone-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .form-submit {
        padding: 14px;
        font-size: 15px;
    }
}
