/* ================================
   FORM INLINE STYLES EXTRACTION
   Moved from inline styles in index.php and karrier.php
   ================================ */

/* Honeypot & Hidden Fields */
.form-field-hidden {
    display: none;
}

/* Form Message/Alert */
.form-message-hidden {
    display: none;
}

/* Consultation Form - Service Selection Helper Text */
.form-helper-text {
    font-size: 14px;
    color: #64748b;
    margin: 8px 0 12px;
}

/* Service Other Text Input */
.service-other-input {
    margin-left: 28px;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: calc(100% - 28px);
    display: none;
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Career Form Section Container */
.career-form-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

/* Career Form Container */
.career-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Career Form */
.career-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Form Section Grouping */
.form-section {
    margin-bottom: 30px;
}

/* Form Section Headings */
.form-section-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: #003366;
}

/* Two Column Form Row */
.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Group Base */
.form-group {
    margin-bottom: 20px;
}

/* Form Group Spacing */
.form-group-spaced {
    margin-bottom: 20px;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Form Label with Extra Margin */
.form-label-extra-margin {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Standard Form Input */
.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
}

/* Radio Button Container - Vertical */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Radio Button Container - Horizontal */
.radio-group-horizontal {
    display: flex;
    gap: 20px;
}

/* Radio Button Label */
.radio-label {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Radio Button Label (Larger Padding) */
.radio-label-lg {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}

/* Radio Input */
.radio-input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

/* Form File Input */
.form-file-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

/* Form Small Text / Helper */
.form-small-text {
    display: block;
    margin-top: 5px;
    color: #666;
}

/* Form Info Text */
.form-info-text {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

/* Character Counter */
.character-counter {
    display: block;
    margin-top: 5px;
    color: #666;
    text-align: right;
}

/* Select Dropdown */
.form-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

/* Conditional Display Group (initially hidden) */
.form-group-conditional {
    margin-bottom: 20px;
    display: none;
}

/* Checkbox Consent Label - Blue Theme (Required) */
.consent-label-required {
    display: flex;
    align-items: start;
    padding: 15px;
    background: #f0f8ff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    cursor: pointer;
}

/* Checkbox Consent Label - Orange Theme (Optional) */
.consent-label-optional {
    display: flex;
    align-items: start;
    padding: 15px;
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 8px;
    cursor: pointer;
}

/* Checkbox Consent Label - Green Theme */
.consent-label-newsletter {
    display: flex;
    align-items: start;
    padding: 15px;
    background: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 8px;
    cursor: pointer;
}

/* Checkbox Input in Consent */
.consent-checkbox {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Consent Link */
.consent-link {
    color: #0066cc;
    text-decoration: underline;
}

.consent-link:hover {
    color: #0052a3;
}

/* Consent Label Hover Effects */
.consent-label-required:hover,
.consent-label-optional:hover,
.consent-label-newsletter:hover {
    opacity: 0.9;
}

/* Consent Text */
.consent-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Consent Link */
.consent-link {
    color: #0066cc;
    text-decoration: underline;
}

/* reCAPTCHA Container - Career Form */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

/* Submit Button Container */
.form-submit-container {
    text-align: center;
    margin-top: 30px;
}

/* Submit Button Career */
.btn-submit-career {
    font-size: 18px;
    padding: 16px 48px;
    cursor: pointer;
    border: none;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-submit-career:hover {
    background: #0052a3;
}

/* Contact Text Below Form */
.form-contact-text {
    margin-top: 30px;
    text-align: center;
    color: #333;
    font-size: 16px;
}

.form-contact-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

.form-contact-link:hover {
    color: #0052a3;
}

/* Hero Button Styles */
.button-hero-cta {
    padding: 14px 22px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.hero-cta-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

/* Dark mode overrides */
body.dark-mode .form-section-heading {
    color: var(--text-color);
}

body.dark-mode .form-input,
body.dark-mode .form-textarea,
body.dark-mode .form-file-input,
body.dark-mode .form-select {
    background: var(--card-bg);
    color: var(--text-color);
    border-color: var(--accent-color);
}

body.dark-mode .form-input::placeholder,
body.dark-mode .form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

body.dark-mode .radio-label,
body.dark-mode .radio-label-lg {
    background: var(--card-bg);
    border-color: var(--accent-color);
    color: var(--text-color);
}

body.dark-mode .radio-label:hover,
body.dark-mode .radio-label-lg:hover {
    background: rgba(255,255,255,0.05);
}

body.dark-mode .form-small-text,
body.dark-mode .character-counter {
    color: var(--text-secondary);
}

body.dark-mode .consent-label-required {
    background: #f0f8ff;
    border-color: #0066cc;
}

body.dark-mode .consent-label-optional {
    background: #fff3e0;
    border-color: #ff9800;
}

body.dark-mode .consent-link {
    color: #64b5f6;
}

body.dark-mode .consent-link:hover {
    color: #90caf9;
}

body.dark-mode .consent-label-newsletter {
    background: #e8f5e9;
    border-color: #4caf50;
}

body.dark-mode .consent-text {
    color: #1a1a1a;
}

body.dark-mode .consent-label-required .consent-text {
    color: #003366;
}

body.dark-mode .consent-label-optional .consent-text {
    color: #663300;
}

body.dark-mode .consent-label-newsletter .consent-text {
    color: #1b5e20;
}

body.dark-mode .consent-link {
    color: #0066cc;
    font-weight: 500;
}

body.dark-mode .consent-link:hover {
    color: #0052a3;
}

body.dark-mode .form-contact-text {
    color: var(--text-color);
}

body.dark-mode .form-contact-link {
    color: #64b5f6;
}

body.dark-mode .form-contact-link:hover {
    color: #90caf9;
}

body.dark-mode .career-form-section {
    background: var(--bg-color);
}

body.dark-mode .form-helper-text {
    color: var(--text-secondary);
}

body.dark-mode .form-label,
body.dark-mode .form-label-extra-margin {
    color: var(--text-color);
}

body.dark-mode .service-other-input {
    background: var(--card-bg);
    color: var(--text-color);
    border-color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row-two-col,
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .radio-group-horizontal {
        flex-direction: column;
    }
}

/* Version update: 2026-02-09 23:19:19 */
