/* ================================
   CONTACT PAGE STYLES (contact.html) - FIGMA DESIGN
   ================================ */

/* ================================
   CONTACT MAIN LAYOUT
   ================================ */
.contact-main {
    background: linear-gradient(90deg, #2f394d 0%, #85ccff 100%);
    min-height: 100vh;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 120px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

/* ================================
   CONTACT FORM STYLES
   ================================ */
.contact-form-section {
    width: 100%;
}

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

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

.form-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
}

.form-input,
.form-textarea {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2F394D;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    resize: vertical;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

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

.form-textarea {
    min-height: 140px;
    font-family: 'Source Sans Pro', sans-serif;
}

/* ================================
   CHECKBOX GROUP
   ================================ */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #FFD36E;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

/* ================================
   FORM BUTTONS
   ================================ */
.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-send,
.btn-clear {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.btn-send {
    background: #FFD36E;
    color: #000000;
}

.btn-send:hover {
    background: #ffca45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 211, 110, 0.4);
}

.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 211, 110, 0.4);
}

.btn-clear {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-clear:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-clear:active {
    transform: translateY(0);
}

/* ================================
   CONTACT INFO SIDEBAR
   ================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

/* ================================
   FORM VALIDATION STYLES
   ================================ */
.form-input.error,
.form-textarea.error {
    border: 2px solid #FF6B6B;
    background: #FFF5F5;
}

.form-input.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.contact-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #FF6B6B;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.contact-success-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #4CAF50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.contact-success-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.contact-success-notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

/* ================================
   CONTACT PAGE RESPONSIVE DESIGN
   ================================ */

/* Tablet styles */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 600px;
    }
    
    .contact-info {
        order: -1;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 100px 0 60px 0;
    }
    
    .contact-container {
        padding: 0 24px;
    }
    
    .contact-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 40px;
    }
    
    .contact-layout {
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-send,
    .btn-clear {
        width: 100%;
    }
    
    .contact-success-notification {
        top: 80px;
        right: 16px;
        left: 16px;
        font-size: 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .btn-send,
    .btn-clear {
        padding: 14px 24px;
        font-size: 12px;
    }
}