/* ==========================================================================
   Refactored Component Styles (Header & Navigation)
   ========================================================================== */

/* Top Bar Links & Icons */
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.top-bar-icon {
    width: 1.8rem;
    height: 1.8rem;
}

/* Language Switcher */
.lang-switcher-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.lang-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}
.lang-link:hover,
.lang-link.active {
    opacity: 1;
}
.lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.lang-text {
    font-size: 0.9rem;
    font-weight: 600;
}
.lang-divider {
    color: var(--text-light);
    opacity: 0.3;
}

/* Footer Components */
.footer-icon {
    width: 24px;
    height: 24px;
}
.footer-credits {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}
.footer-sponsor {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Form Components */
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.form-col {
    flex: 1;
    min-width: 250px;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    font-family: inherit;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(44, 169, 77, 0.1);
}
.form-textarea {
    resize: vertical;
    border-radius: 20px;
}
.required-asterisk {
    color: red;
}
.btn-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 169, 77, 0.3);
}
.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 58, 102, 0.3);
}

/* Global CTA Component */
.global-cta {
    background: linear-gradient(rgba(10, 58, 102, 0.9), rgba(10, 58, 102, 0.9)), url('https://images.unsplash.com/photo-1527515637-60e0a3f81e36?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    padding: 5rem 0;
    text-align: left;
    color: var(--white);
    position: relative;
}
.global-cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}
.global-cta-left {
    flex: 1;
    min-width: 300px;
}
.global-cta-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.global-cta-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eafaf1;
}
.global-cta-list-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.global-cta-list-icon {
    width: 20px;
    height: 20px;
}
.global-cta-right {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--text-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.global-cta-right-title {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
