/* Professional Website Redesign */
/* Clean Color Palette */
:root {
    --primary-blue: #4a90a4;
    --secondary-blue: #5ba0b5;
    --accent-blue: #6bb6ff;
    --light-blue: #87ceeb;
    --lighter-blue: #e6f3ff;
    --dark-blue: #2c5f7a;
    --professional-gray: #64748b;
    --light-gray: #e2e8f0;
    --lighter-gray: #f8fafc;
    --white: #ffffff;
    --black: #1a202c;
    --success-green: #38a169;
    --warning-orange: #ed8936;
    --error-red: #e53e3e;
    --gold-accent: #d69e2e;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--lighter-gray) 0%, var(--white) 100%);
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-extra: 0 20px 40px rgba(0, 0, 0, 0.08);
    font-size: 62.5%; /* 10px base */
}

/* Professional Typography */
body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--professional-gray);
    background: var(--white);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Enhanced Header Styling with Scroll Animation */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow-large);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
    padding: 5px
}

/* Header when scrolled */
.header--scrolled {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Hide header title when scrolled */
.header--scrolled .header__title {
    display: none;
}

/* Adjust navbar when scrolled - horizontal layout */
.header--scrolled .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex: 1;
    padding: 0.5rem 1rem;
    position: relative;
}

/* Position language selector on the right when scrolled */
.header--scrolled .navbar__lang {
    margin-left: auto;
}

/* Logo container animations */
.navbar__logo-burger_container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    max-height: 8rem;
    overflow: hidden;
}

.logos--hidden {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.logos--small {
    opacity: 1;
    transform: translateY(0) scale(0.6);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 7rem;
    overflow: hidden;
}

/* Individual logo animations */
.navbar__logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logos--hidden .navbar__logo {
    transform: translateY(-10px);
    opacity: 0;
}

/* Stagger animation for multiple logos */
.navbar__logo:nth-child(1) {
    transition-delay: 0s;
}

.navbar__logo:nth-child(2) {
    transition-delay: 0.1s;
}

.navbar__logo:nth-child(3) {
    transition-delay: 0.2s;
}

.header__title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    padding: 0;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem 2rem;
    position: relative;
}

.navbar__logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar__logo {
    height: 8rem;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    display: block;
}

.navbar__logo image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fallback for browsers that don't support SVG images properly */
.navbar__logo a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ensure proper logo alignment */
.navbar__logo-burger_container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.navbar__logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.navbar__logo.main_logo {
    max-width: 250px;
    height: 7rem;
}

.navbar__text {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem 0;
}

/* Professional Language Dropdown */
.navbar__lang {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 8rem;
    padding: 0.2rem;
    flex-shrink: 0;
    z-index: 10;
    margin-left: auto;
}

.navbar__lang:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar__lang select {
    appearance: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem 0.8rem 1.2rem;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    position: relative;
    z-index: 2;
    min-height: 3.6rem;
    border-radius: 1.8rem;
}

.navbar__lang select option {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 1rem;
}

.navbar__lang::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 3;
}

.navbar__lang:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.navbar__lang:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Header Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        width: 100%;
        flex-wrap: nowrap;
        position: relative;
    }

    .navbar__logo-burger_container {
        flex: 0 0 auto;
        max-height: 6rem;
        padding: 0;
        justify-content: center;
        margin: 0 0.5rem;
    }

    .navbar__logo {
        height: 5rem;
        max-width: 120px;
    }

    .navbar__logo.main_logo {
        height: 6rem;
        max-width: 140px;
    }

    .navbar__lang {
        min-width: 6rem;
        flex-shrink: 0;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar__lang select {
        font-size: 1.2rem;
        padding: 0.6rem 2rem 0.6rem 1rem;
        min-height: 3.2rem;
    }

    .navbar__lang::after {
        right: 0.8rem;
        font-size: 0.7rem;
    }

    /* Always show logos on mobile - override scroll behavior */
    .header--scrolled .navbar__logo-burger_container {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        max-height: 6rem !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem;
    }

    .navbar {
        padding: 0.3rem 0.8rem;
        gap: 0.3rem;
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
    }

    .navbar__logo-burger_container {
        max-height: 5rem;
        flex: 0 0 auto;
        margin: 0 0.3rem;
    }

    .navbar__logo {
        height: 4rem;
        max-width: 100px;
    }

    .navbar__logo.main_logo {
        height: 5rem;
        max-width: 120px;
    }

    .navbar__lang {
        min-width: 5.5rem;
        flex-shrink: 0;
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar__lang select {
        font-size: 1.1rem;
        padding: 0.5rem 1.8rem 0.5rem 0.8rem;
        min-height: 3rem;
    }

    .navbar__lang::after {
        right: 0.6rem;
        font-size: 0.6rem;
    }

    /* Improve touch targets for mobile */
    .navbar__logo-burger_container a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar__lang {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Always show logos on mobile - override scroll behavior */
    .header--scrolled .navbar__logo-burger_container {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        max-height: 6rem !important;
    }
}

/* Dark Mode Support for Language Dropdown */
@media (prefers-color-scheme: dark) {
    .navbar__lang {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .navbar__lang:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .navbar__lang select option {
        background: var(--dark-blue);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .navbar__lang {
        border: 2px solid var(--white);
        background: rgba(0, 0, 0, 0.3);
    }

    .navbar__lang select {
        font-weight: 800;
    }

    .navbar__lang::after {
        color: var(--white);
        font-weight: bold;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .navbar__lang,
    .navbar__lang::after,
    .navbar__logo {
        transition: none;
    }

    .navbar__lang:hover::after {
        transform: translateY(-50%);
    }
}

/* Professional Content Layout */
.content {
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 20rem; /* Add margin to account for fixed header */
    min-height: calc(100vh - 20rem);
    z-index: 1; /* Content should be below header */
    clear: both;
}

.content__container {
    position: relative;
    z-index: 1;
    background: transparent;
    clear: both;
}

/* Enhanced Main Registration Section */
.init-inscription {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 5rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: 3rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(49, 130, 206, 0.08);
    backdrop-filter: blur(10px);
}

.init-inscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.init-inscription::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(99, 179, 237, 0.1) 100%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Professional Welcome Section */
.welcome-section {
    text-align: center;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 2.5rem;
    border: 2px solid rgba(49, 130, 206, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.welcome-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-description {
    font-size: 2rem;
    color: var(--professional-gray);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Professional Button Group */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Professional Button Styling */
.modern-btn {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem 3.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 3px solid var(--accent-blue);
    border-radius: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 24px rgba(49, 130, 206, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8rem;
    backdrop-filter: blur(8px);
}

.modern-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--accent-blue);
    background: var(--accent-blue);
}

.modern-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.modern-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    flex-direction: row;
}

.modern-btn:hover a {
    color: var(--white);
    transform: scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    font-size: 2.8rem;
    transition: all 0.4s ease;
    color: var(--accent-blue);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    order: 1;
}

.modern-btn:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.btn-text {
    font-weight: 800;
    color: inherit;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    order: 2;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: currentColor;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.modern-btn:hover .btn-text::after {
    width: 100%;
}

/* Button Focus States */
.modern-btn:focus-visible {
    outline: 3px solid var(--light-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(99, 179, 237, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Button Group Styling */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Button Variants */
.modern-btn.primary {
    background: var(--gradient-accent);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

.modern-btn.primary a {
    color: var(--white);
}

.modern-btn.primary .btn-icon {
    color: var(--white);
}

.modern-btn.primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.modern-btn.secondary {
    background: var(--white);
    border-color: var(--professional-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.modern-btn.secondary a {
    color: var(--professional-gray);
}

.modern-btn.secondary .btn-icon {
    color: var(--professional-gray);
}

.modern-btn.secondary:hover {
    border-color: var(--accent-blue);
    background: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modern-btn.secondary:hover a,
.modern-btn.secondary:hover .btn-icon {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Button Loading State */
.modern-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.modern-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-blue);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
    z-index: 3;
}

@keyframes buttonSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Button Success State */
.modern-btn.success {
    background: var(--success-green);
    border-color: var(--success-green);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.2);
}

.modern-btn.success a {
    color: var(--white);
}

.modern-btn.success .btn-icon {
    color: var(--white);
}

/* Button Error State */
.modern-btn.error {
    background: var(--error-red);
    border-color: var(--error-red);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.2);
}

.modern-btn.error a {
    color: var(--white);
}

.modern-btn.error .btn-icon {
    color: var(--white);
}

/* Responsive Button Design */
@media (max-width: 768px) {
    .modern-btn {
        max-width: 100%;
        padding: 1.5rem 2rem;
        border-radius: 1.5rem;
    }

    .modern-btn a {
        font-size: 1.4rem;
        gap: 1rem;
    }

    .btn-icon {
        font-size: 1.8rem;
    }

    .button-group {
        gap: 1.2rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .modern-btn {
        max-width: 250px;
        padding: 1.3rem 1.8rem;
        border-radius: 1rem;
    }

    .modern-btn a {
        font-size: 1.3rem;
        gap: 0.8rem;
    }

    .btn-icon {
        font-size: 1.6rem;
    }

    .button-group {
        gap: 1rem;
        margin-top: 2rem;
    }
}

/* Dark Mode Support for Buttons */
@media (prefers-color-scheme: dark) {
    .modern-btn {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--accent-blue);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .modern-btn:hover {
        background: var(--white);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .modern-btn.secondary {
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--professional-gray);
    }

    .modern-btn.secondary:hover {
        background: var(--accent-blue);
        border-color: var(--accent-blue);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(49, 130, 206, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* High Contrast Mode for Buttons */
@media (prefers-contrast: high) {
    .modern-btn {
        border: 3px solid var(--accent-blue);
        background: var(--white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .modern-btn:hover {
        border-color: var(--secondary-blue);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .modern-btn a {
        color: var(--accent-blue);
        font-weight: 800;
    }

    .btn-icon {
        color: var(--accent-blue);
    }
}

/* Reduced Motion Support for Buttons */
@media (prefers-reduced-motion: reduce) {
    .modern-btn,
    .modern-btn::before,
    .modern-btn a,
    .btn-icon {
        transition: none;
        animation: none;
    }

    .modern-btn:hover {
        transform: none;
    }

    .modern-btn:hover .btn-icon {
        transform: none;
    }

    .modern-btn.loading::after {
        animation: none;
    }
}

/* Button Print Styles */
@media print {
    .modern-btn {
        background: white !important;
        border: 2px solid #000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .modern-btn a {
        color: #000 !important;
    }

    .btn-icon {
        color: #000 !important;
    }
}

/* Professional Button Typography */
.modern-btn a {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Button Accessibility */
.modern-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.modern-btn[disabled]:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Button Animation on Page Load */
@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-btn {
    animation: buttonFadeIn 0.6s ease-out;
}

.modern-btn:nth-child(2) {
    animation-delay: 0.2s;
}

/* Professional Separator */
.init-inscription__separator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-content {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 50%;
    font-weight: 900;
    font-size: 2.2rem;
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    border: 6px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.separator-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-accent);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Professional Code Section */
.code-section {
    text-align: center;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 2.5rem;
    border: 2px solid rgba(49, 130, 206, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.code-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-subtitle {
    font-size: 2.4rem;
    color: var(--accent-blue);
    font-weight: 900;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

/* Professional Form Styling */
.form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: 2.5rem;
    padding: 4rem 5rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(49, 130, 206, 0.08);
    position: relative;
    max-width: 100%;
    margin: 0;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}


/* Form Title */
.form__title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Enhanced Form Layout - Labels and Inputs on Same Line */
.form__group {
    margin-bottom: 0.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: none;
}

/* Remove hover effects on form groups */

/* Required form group styling */
/* Remove required form group styling */

.form__group--two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

/* Large screens - two columns */
@media (min-width: 769px) {
    .form__group--two-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Small screens - single column */
@media (max-width: 768px) {
    .form__group--two-columns {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Select2 mobile optimizations */
    .select2-container--bootstrap-5 .select2-selection {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        min-height: 1.8rem !important;
        border-radius: 0.375rem !important;
    }

    .select2-container--bootstrap-5 .select2-selection--single {
        padding: 0.4rem 0.6rem !important;
    }

    .select2-results__option {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
    }

    .select2-dropdown {
        border-radius: 0.375rem !important;
    }
}

.form__group--three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Large screens - three columns */
@media (min-width: 1025px) {
    .form__group--three-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* Medium screens - two columns for three-column layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .form__group--three-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .form__group--three-columns .form__field:last-child {
        grid-column: 1 / -1;
    }
}

/* Small screens - single column */
@media (max-width: 768px) {
    .form__group--three-columns {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Reduce form element sizes on mobile */
    .form__input {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        min-height: 1.8rem !important;
        border-radius: 0.375rem !important;
    }

    .form__textarea {
        min-height: 4rem !important;
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
    }

    .form__select {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        min-height: 1.8rem !important;
        border-radius: 0.375rem !important;
    }

    .form__label {
        font-size: 0.75rem !important;
        margin-bottom: 0.2rem !important;
    }

    .form__radio-item {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        border-radius: 0.375rem !important;
    }

    .form__radio-input {
        width: 1rem !important;
        height: 1rem !important;
    }

    .modern-submit-btn {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.8rem !important;
        min-height: 2.2rem !important;
        border-radius: 0.375rem !important;
    }

    .modern-submit-btn .material-icons {
        font-size: 1rem !important;
    }

    .inscription__title {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }

    .required-fields-banner {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
        margin-top: 1rem !important;
    }

    .warning-icon {
        font-size: 1rem !important;
    }
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.form__field .form__label {
    min-width: auto;
    width: 100%;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.form__field .form__input {
    width: 100%;
}

.form__group--two-columns .form__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.form__group--center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.form__group--right-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    gap: 1rem;
    flex-direction: row !important;
}

.form__group--right-content .modern-submit-btn {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

.required-fields-banner {
    display: none;
}

.warning-icon {
    font-size: 1.2rem;
    color: #dc2626;
}

/* Enhanced Form Labels */
.form__label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    min-width: 120px;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
}

.form__group:hover .form__label::after {
    opacity: 1;
}

.form__group--two-columns .form__label {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
}

.form__label.required::before {
    content: '*';
    color: #ef4444;
    font-weight: 400;
    font-size: 1em;
    margin-right: 0.25rem;
    text-shadow: none;
    animation: none;
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}

.form__label.required::after {
    content: '';
}

@keyframes requiredPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Required field notice */
.required-notice {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #f87171;
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    color: #dc2626;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.required-notice::before {
    content: '⚠️';
    font-size: 1.8rem;
    animation: requiredPulse 2s ease-in-out infinite;
}

/* Enhanced Form Inputs */
.form__input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #ffffff;
    font-size: 1.125rem;
    color: #374151;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    min-height: 3.2rem;
    width: 100%;
    box-sizing: border-box;
}

.form__input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__input.required,
.form__input.error,
.form__input:invalid,
.form__input.is-invalid,
input.required,
input.error,
input:invalid,
input.is-invalid {
    border: 1px solid #dc2626 !important;
}

.form__select.required,
.form__select.error,
.form__select:invalid,
.form__select.is-invalid,
select.required,
select.error,
select:invalid,
select.is-invalid {
    border: 1px solid #dc2626 !important;
}

/* Simple error message */
.error-message {
    color: #dc2626;
    font-size: 1.125rem;
    margin-top: 0.25rem;
    display: block;
}

/* Hide any existing error boxes with backgrounds */
.alert-danger,
.help-block,
.invalid-feedback,
.field-error,
.alert,
.alert-warning,
.alert-danger,
.inscription__tip,
div[class*="error"],
div[class*="alert"],
div[class*="warning"],
span[class*="error"],
span[class*="alert"],
span[class*="warning"] {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 0 0 !important;
    color: #dc2626 !important;
    font-size: 1.125rem !important;
    display: block !important;
}

.alert-danger::before,
.help-block::before,
.invalid-feedback::before,
.field-error::before,
.alert::before,
.alert-warning::before,
.alert-danger::before,
.inscription__tip::before,
div[class*="error"]::before,
div[class*="alert"]::before,
div[class*="warning"]::before,
span[class*="error"]::before,
span[class*="alert"]::before,
span[class*="warning"]::before {
    display: none !important;
}

/* Hide warning icons */
.material-icons.warning-icon,
.warning-icon,
[class*="warning-icon"],
[class*="error-icon"] {
    display: none !important;
}

/* Hide any error containers with backgrounds */
div[style*="background"],
div[style*="border"],
span[style*="background"],
span[style*="border"] {
    background: none !important;
    border: none !important;
}

/* Force hide any error boxes */
*[class*="error"]:not(.form__input):not(.form__select),
*[class*="alert"]:not(.form__input):not(.form__select),
*[class*="warning"]:not(.form__input):not(.form__select) {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 0 0 !important;
    color: #dc2626 !important;
    font-size: 1.125rem !important;
}

.form__textarea {
    min-height: 12rem;
    width: 200%;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
    padding: 0.75rem 0.8rem;
}


.form__input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    background: #ffffff;
}

.form__input.error {
    border-color: var(--error-red);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1),
    0 8px 25px rgba(220, 38, 38, 0.15);
    animation: inputError 0.4s ease-in-out;
}

.form__input.error:focus {
    border-color: var(--error-red);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2),
    0 8px 25px rgba(220, 38, 38, 0.2);
}

/* Required field styling */
/* Remove required input styling */

/* Enhanced Form Select */
.form__select {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #ffffff;
    font-size: 1.125rem;
    color: #374151;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    min-height: 3.2rem;
    width: 100%;
    box-sizing: border-box;
}

.form__select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    background: #ffffff;
}

/* Hide original select when Select2 is initialized */
.select2-container .form__select {
    display: none;
}

/* Flatpickr Datepicker Styling */
.flatpickr-calendar {
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #d1d5db !important;
    font-family: 'Sora', sans-serif !important;
}

.flatpickr-day {
    border-radius: 0.25rem !important;
    font-size: 0.875rem !important;
}

.flatpickr-day.selected {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.flatpickr-day:hover {
    background: #dbeafe !important;
    border-color: #3b82f6 !important;
}

.flatpickr-day.today {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.flatpickr-day.disabled {
    color: #9ca3af !important;
    background: #f9fafb !important;
}

.flatpickr-months {
    background: #f8fafc !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.flatpickr-month {
    color: #374151 !important;
}

.flatpickr-weekdays {
    background: #f3f4f6 !important;
}

.flatpickr-weekday {
    color: #6b7280 !important;
    font-weight: 500 !important;
}

/* Select2 Styling */
.select2-container {
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.9rem !important;
    color: #374151 !important;
    background: #ffffff !important;
    min-height: 2.2rem !important;
    height: auto !important;
}

.select2-container--bootstrap-5 .select2-selection--single {
    height: auto !important;
    padding: 0.5rem 0.8rem !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    line-height: 1.5 !important;
    color: #374151 !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 1rem !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Select2 Dropdown */
.select2-dropdown {
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.select2-results__option {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.9rem !important;
}

.select2-results__option--highlighted {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

.select2-dropdown {
    border: 1px solid #d1d5db !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.select2-results__option {
    padding: 1rem 1.5rem !important;
    font-size: 1.6rem !important;
}

.select2-results__option--highlighted {
    background-color: #3b82f6 !important;
}

/* Enhanced Radio Buttons */
.form__group--radio {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Large screens - two columns for radio */
@media (min-width: 769px) {
    .form__group--radio {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Small screens - single column for radio */
@media (max-width: 768px) {
    .form__group--radio {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.form__radio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.form__radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #d1d5db;
    min-width: auto;
    justify-content: flex-start;
    gap: 1rem;
}

/* Remove hover effects on radio items */

.form__radio-item.selected {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    transform: none;
}

.form__radio-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form__radio-input::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #3b82f6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form__radio-input:checked::after {
    opacity: 1;
}

.form__radio-label {
    font-size: 1rem;
    font-weight: 400;
    color: #374151;
    cursor: pointer;
    text-transform: none;
}

.form__radio-item.selected .form__radio-label {
    color: #3b82f6;
    font-weight: 600;
}

/* Enhanced Next Button - Matching Existing Design */
.modern-submit-btn {
    width: auto;
    max-width: 120px;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    margin: 0;
}

.modern-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.08), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.modern-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.modern-submit-btn:hover::before {
    left: 100%;
}

.modern-submit-btn:hover::after {
    opacity: 1;
}

.modern-submit-btn:hover {
    background: linear-gradient(135deg, rgba(20, 45, 80, 0.98) 0%, rgba(35, 75, 120, 0.98) 100%);
    transform: none;
    box-shadow: none;
}

.modern-submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.modern-submit-btn .material-icons {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    order: 1;
}

.modern-submit-btn:hover .svg-wrapper-1,
.modern-submit-btn:hover .svg-wrapper {
    transform: scale(1.15) rotate(5deg);
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Override original button styles when modern-submit-btn is applied */
.modern-submit-btn.goback,
.modern-submit-btn.gostepthree,
.modern-submit-btn.gotopec,
.modern-submit-btn.gototransfer,
.modern-submit-btn.gotosejour {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
    min-height: 3rem !important;
    max-width: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

.modern-submit-btn.goback:hover,
.modern-submit-btn.gostepthree:hover,
.modern-submit-btn.gotopec:hover,
.modern-submit-btn.gototransfer:hover,
.modern-submit-btn.gotosejour:hover {
    background: linear-gradient(135deg, rgba(20, 45, 80, 0.98) 0%, rgba(35, 75, 120, 0.98) 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3) !important;
}

.modern-submit-btn span {
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    order: 2;
}

.modern-submit-btn:hover span {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Form Instructions - Larger Text */
.form__instructions {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--light-blue);
    border-radius: 1.2rem;
    padding: 3rem;
    margin: 4rem 0;
    color: var(--primary-blue);
    font-size: 2rem;
    line-height: 1.6;
    position: relative;
}

.form__instructions::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--white);
    padding: 1rem;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced Error Message - Larger Text */
.modern-tip,
.inscription__tip {
    background: #fef2f2;
    border: 1px solid #f87171;
    border-radius: 0.3rem;
    padding: 0.4rem 0.8rem;
    margin: 0.3rem 0;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    word-wrap: break-word;
    text-align: left;
    justify-content: flex-start;
}

.modern-tip::before,
.inscription__tip::before {
    content: '⚠️';
    font-size: 1rem;
    flex-shrink: 0;
    animation: none;
    display: inline-block;
}

/* Remove after pseudo-element styling */

/* Enhanced Contact Section - Larger Text */
.contact-description {
    font-size: 2.4rem;
    color: var(--professional-gray);
    line-height: 1.7;
    margin-bottom: 5rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
    .form__group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form__label {
        min-width: auto;
        width: 100%;
        margin-bottom: 1rem;
    }

    .form__input,
    .form__select {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .form__group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    .form__group--two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form__group--three-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form__label {
        font-size: 1.2rem;
        min-width: auto;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .form__label.required::before {
        font-size: 1.1em;
        margin-right: 0.3rem;
    }

    .form__input,
    .form__select {
        padding: 1rem 1.2rem;
        font-size: 1.4rem;
    }

    .required-notice {
        font-size: 1.4rem;
        padding: 1.2rem 1.5rem;
        margin-bottom: 2rem;
    }


    .form__radio-label {
        font-size: 1.6rem;
    }

    .modern-submit-btn {
        padding: 1.8rem 2.5rem;
        font-size: 1.6rem;
        min-height: 7rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2.4rem;
    }

    .form__instructions {
        padding: 2rem;
        font-size: 1.6rem;
    }

    .modern-tip,
    .inscription__tip {
        padding: 2rem 2.5rem;
        font-size: 1.6rem;
    }

    .contact-description {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .form__label {
        font-size: 1.6rem;
    }

    .form__label.required::before {
        font-size: 1em;
        margin-right: 0.2rem;
    }

    .required-notice {
        font-size: 1.2rem;
        padding: 1rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .form__input,
    .form__select {
        padding: 1.3rem 1.8rem;
        font-size: 1.4rem;
    }

    .form__radio-label {
        font-size: 1.4rem;
    }

    .modern-submit-btn {
        padding: 1.6rem 2rem;
        font-size: 1.4rem;
        min-height: 6.5rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2.2rem;
    }

    .form__instructions {
        padding: 1.5rem;
        font-size: 1.4rem;
    }

    .modern-tip,
    .inscription__tip {
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
    }

    .contact-description {
        font-size: 1.6rem;
    }
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-section,
.code-section,
.modern-contact {
    animation: fadeInUp 0.8s ease-out;
}

.modern-btn {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.modern-btn:nth-child(2) {
    animation-delay: 0.4s;
}

/* Professional Focus States */
.modern-btn:focus-visible,
.modern-submit-btn:focus-visible,
.modern-link:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

.modern-input:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Professional Loading States */
.modern-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Professional Print Styles */
@media print {
    .header,
    .footer {
        background: white !important;
        color: black !important;
    }

    .init-inscription,
    .modern-contact {
        box-shadow: none;
        border: 2px solid #000;
    }

    .modern-btn,
    .modern-submit-btn,
    .modern-link {
        box-shadow: none;
        border: 2px solid #000;
        background: white !important;
        color: black !important;
    }
}

/* Professional Error Message Styling */
.modern-tip,
    /* Remove duplicate inscription tip styling */

.modern-tip::before,
.inscription__tip::before {
    content: '⚠️';
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: errorPulse 2s ease-in-out infinite;
    display: inline-block;
}

.modern-tip::after,
.inscription__tip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    border-radius: 1.2rem 1.2rem 0 0;
}

/* Error Animation */
@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

@keyframes errorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Enhanced Error States for Input */
.modern-input.error,
.form__input.error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1),
    0 4px 12px rgba(220, 38, 38, 0.15);
    animation: inputError 0.3s ease-in-out;
}

@keyframes inputError {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

/* Error Label Styling */
.modern-label.error,
.form__label.error {
    color: #dc2626;
    font-weight: 700;
}

/* Professional Error Container */
.error-container {
    position: relative;
    margin: 1.5rem 0;
}

.error-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f87171;
    z-index: 1;
}

/* Enhanced Error Message Variants */
.modern-tip.warning,
.inscription__tip.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    color: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.modern-tip.warning::before,
.inscription__tip.warning::before {
    content: '⚠️';
}

.modern-tip.warning::after,
.inscription__tip.warning::after {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.modern-tip.success,
.inscription__tip.success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #22c55e;
    color: #16a34a;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.modern-tip.success::before,
.inscription__tip.success::before {
    content: '✅';
}

.modern-tip.success::after,
.inscription__tip.success::after {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

/* Error Message with Icon */
.error-message-with-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #fef2f2;
    border: 1px solid #f87171;
    border-radius: 0.3rem;
    color: #dc2626;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    margin-top: 0.3rem;
}

.error-message-with-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.error-message-with-icon:hover::before {
    left: 100%;
}

.error-icon {
    font-size: 1rem;
    flex-shrink: 0;
    animation: none;
}

@keyframes errorBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsive Error Messages */
@media (max-width: 768px) {
    .modern-tip,
    .inscription__tip {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
        border-radius: 1rem;
    }

    .modern-tip::before,
    .inscription__tip::before {
        font-size: 1.4rem;
    }

    .error-message-with-icon {
        font-size: 1.3rem;
        padding: 0.8rem 1.3rem;
    }

    .error-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modern-tip,
    .inscription__tip {
        font-size: 1.2rem;
        padding: 0.8rem 1.2rem;
        border-radius: 0.8rem;
    }

    .modern-tip::before,
    .inscription__tip::before {
        font-size: 1.3rem;
    }

    .error-message-with-icon {
        font-size: 1.2rem;
        padding: 0.7rem 1.1rem;
    }

    .error-icon {
        font-size: 1.5rem;
    }
}

/* Dark Mode Support for Error Messages */
@media (prefers-color-scheme: dark) {
    .modern-tip,
    .inscription__tip {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
        border-color: #ef4444;
        color: #fca5a5;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .modern-tip.warning,
    .inscription__tip.warning {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
        border-color: #f59e0b;
        color: #fcd34d;
    }

    .modern-tip.success,
    .inscription__tip.success {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.15) 100%);
        border-color: #22c55e;
        color: #86efac;
    }

    .modern-input.error,
    .form__input.error {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2),
        0 4px 12px rgba(239, 68, 68, 0.3);
    }
}

/* High Contrast Mode for Error Messages */
@media (prefers-contrast: high) {
    .modern-tip,
    .inscription__tip {
        background: #fee2e2;
        border: 3px solid #dc2626;
        color: #dc2626;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .modern-tip::before,
    .inscription__tip::before {
        content: '❌';
    }

    .modern-input.error,
    .form__input.error {
        border: 3px solid #dc2626;
        background: #fee2e2;
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.3);
    }
}

/* Reduced Motion Support for Error Messages */
@media (prefers-reduced-motion: reduce) {
    .modern-tip,
    .inscription__tip,
    .error-message-with-icon {
        animation: none;
    }

    .modern-tip::before,
    .inscription__tip::before,
    .error-icon {
        animation: none;
    }

    .modern-input.error,
    .form__input.error {
        animation: none;
    }
}

/* Professional Error Message Typography */
.modern-tip,
.inscription__tip {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Error Message Focus States */
.modern-tip:focus-visible,
.inscription__tip:focus-visible {
    outline: 3px solid #ef4444;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2),
    0 4px 12px rgba(220, 38, 38, 0.15);
}

/* Professional Button Styling - Icon Next to Text */
.modern-btn {
    width: 100%;
    max-width: 360px;
    padding: 2rem 3rem;
    background: var(--white);
    border: 3px solid var(--accent-blue);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7rem;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.08), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.modern-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover::after {
    opacity: 1;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(49, 130, 206, 0.25),
    0 6px 15px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-blue);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.modern-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

.modern-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    flex-direction: row;
}

.modern-btn:hover a {
    color: var(--white);
    transform: scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    font-size: 2.4rem;
    transition: all 0.4s ease;
    color: var(--accent-blue);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    order: 1;
}

.modern-btn:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.btn-text {
    font-weight: 800;
    color: inherit;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    order: 2;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.modern-btn:hover .btn-text::after {
    width: 100%;
}


/* Enhanced Button Group */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

/* Professional Button Variants */
.modern-btn.primary {
    background: var(--gradient-accent);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-btn.primary a {
    color: var(--white);
}

.modern-btn.primary .btn-icon {
    color: var(--white);
}

.modern-btn.primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 15px 40px rgba(49, 130, 206, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.modern-btn.secondary {
    background: var(--white);
    border-color: var(--professional-gray);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-btn.secondary a {
    color: var(--professional-gray);
}

.modern-btn.secondary .btn-icon {
    color: var(--professional-gray);
}

.modern-btn.secondary:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 12px 35px rgba(49, 130, 206, 0.2),
    0 6px 15px rgba(0, 0, 0, 0.1);
}

.modern-btn.secondary:hover a,
.modern-btn.secondary:hover .btn-icon {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* User-Friendly Button States */
.modern-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.modern-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--accent-blue);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
    z-index: 3;
}

@keyframes buttonSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Success and Error States */
.modern-btn.success {
    background: linear-gradient(135deg, var(--success-green) 0%, #22c55e 100%);
    border-color: var(--success-green);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.3);
}

.modern-btn.success a {
    color: var(--white);
}

.modern-btn.success .btn-icon {
    color: var(--white);
}

.modern-btn.error {
    background: linear-gradient(135deg, var(--error-red) 0%, #ef4444 100%);
    border-color: var(--error-red);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.modern-btn.error a {
    color: var(--white);
}

.modern-btn.error .btn-icon {
    color: var(--white);
}

/* Enhanced Focus States for Accessibility */
.modern-btn:focus-visible {
    outline: 4px solid var(--light-blue);
    outline-offset: 4px;
    box-shadow: 0 0 0 8px rgba(99, 179, 237, 0.3),
    0 12px 35px rgba(49, 130, 206, 0.25);
    transform: translateY(-2px);
}

/* Responsive Design for Better UX */
@media (max-width: 768px) {
    .modern-btn {
        max-width: 320px;
        padding: 1.8rem 2.5rem;
        border-radius: 1.8rem;
        min-height: 6.5rem;
        margin-bottom: 2rem;
    }

    .modern-btn a {
        font-size: 1.6rem;
        gap: 1.2rem;
        letter-spacing: 0.8px;
    }

    .btn-icon {
        font-size: 2.2rem;
        width: 2.8rem;
        height: 2.8rem;
    }

    .modern-submit-btn {
        padding: 1.8rem 2.5rem;
        font-size: 1.6rem;
        min-height: 7rem;
        gap: 0.8rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2.2rem;
    }

    .button-group {
        gap: 1.8rem;
        margin-top: 3.5rem;
    }

    .modern-btn:hover {
        transform: translateY(-2px);
    }

    .modern-tip,
    .inscription__tip {
        font-size: 1.4rem;
        padding: 1.3rem 1.8rem;
        gap: 1rem;
    }

    .modern-tip::before,
    .inscription__tip::before {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modern-btn {
        max-width: 280px;
        padding: 1.6rem 2.2rem;
        border-radius: 1.6rem;
        min-height: 6rem;
        margin-bottom: 1.8rem;
    }

    .modern-btn a {
        font-size: 1.5rem;
        gap: 1rem;
        letter-spacing: 0.6px;
    }

    .btn-icon {
        font-size: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .modern-submit-btn {
        padding: 1.6rem 2.2rem;
        font-size: 1.5rem;
        min-height: 6.5rem;
        gap: 0.7rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2rem;
    }

    .button-group {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .modern-btn:hover {
        transform: translateY(-1px);
    }

    .modern-tip,
    .inscription__tip {
        font-size: 1.3rem;
        padding: 1.2rem 1.6rem;
        gap: 0.8rem;
    }

    .modern-tip::before,
    .inscription__tip::before {
        font-size: 1.5rem;
    }
}

/* Touch-Friendly Design */
@media (hover: none) and (pointer: coarse) {
    .modern-btn {
        min-height: 6rem;
        padding: 1.8rem 2.5rem;
    }

    .modern-btn:active {
        transform: scale(0.98);
        box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modern-btn:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modern-btn {
        background: rgba(255, 255, 255, 0.98);
        border-color: var(--accent-blue);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .modern-btn:hover {
        background: var(--white);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .modern-btn.secondary {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--professional-gray);
    }

    .modern-btn.secondary:hover {
        background: var(--accent-blue);
        border-color: var(--accent-blue);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(49, 130, 206, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modern-btn {
        border: 4px solid var(--accent-blue);
        background: var(--white);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .modern-btn:hover {
        border-color: var(--secondary-blue);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .modern-btn a {
        color: var(--accent-blue);
        font-weight: 900;
    }

    .btn-icon {
        color: var(--accent-blue);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .modern-btn,
    .modern-btn::before,
    .modern-btn::after,
    .modern-btn a,
    .btn-icon,
    .btn-text::after {
        transition: none;
        animation: none;
    }

    .modern-btn:hover,
    .modern-btn:active {
        transform: none;
    }

    .modern-btn:hover .btn-icon {
        transform: none;
    }

    .modern-btn:hover .btn-text::after {
        width: 0;
    }

    .modern-btn.loading::after {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .modern-btn {
        background: white !important;
        border: 3px solid #000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }

    .modern-btn a {
        color: #000 !important;
    }

    .btn-icon {
        color: #000 !important;
    }
}

/* Professional Typography */
.modern-btn a {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Accessibility Features */
.modern-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.modern-btn[disabled]:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.15);
}

.modern-btn[disabled] a {
    color: #64748b;
}

.modern-btn[disabled] .btn-icon {
    color: #64748b;
}

/* Smooth Page Load Animation */
@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-btn {
    animation: buttonSlideIn 0.8s ease-out;
}

.modern-btn:nth-child(2) {
    animation-delay: 0.3s;
}

/* Enhanced Visual Feedback */
.modern-btn:focus {
    outline: none;
}

.modern-btn:focus-visible {
    outline: 4px solid var(--light-blue);
    outline-offset: 4px;
}

/* Enhanced Date Input with Date Picker */
.form__input[type="date"] {
    position: relative;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
    background-size: 2rem;
    padding-right: 5rem;
    transition: all 0.3s ease;
}

.form__input[type="date"]:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form__input[type="date"]:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1),
    0 8px 25px rgba(49, 130, 206, 0.15);
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    transform: translateY(-2px);
}

/* Custom Date Picker Styling */
.form__input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    opacity: 0;
}

.form__input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.1;
}

/* Date Input Placeholder Styling */
.form__input[type="date"]:not([value]) {
    color: var(--light-gray);
}

.form__input[type="date"]:not([value])::before {
    content: 'jj/mm/aaaa';
    color: var(--light-gray);
    position: absolute;
    left: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: 400;
}

.form__input[type="date"]:focus:not([value])::before,
.form__input[type="date"]:valid:not([value])::before {
    display: none;
}

/* Date Input Value Styling */
.form__input[type="date"]:valid {
    color: var(--professional-gray);
    font-weight: 600;
}

/* Date Input Icon Animation */
.form__input[type="date"]:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233182ce'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
}

.form__input[type="date"]:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233182ce'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
}

/* Date Input Success State */
.form__input[type="date"]:valid {
    border-color: var(--success-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
}

/* Date Input Error State */
.form__input[type="date"].error {
    border-color: var(--error-red);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
}

/* Date Input Loading State */
.form__input[type="date"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f1f5f9;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
}

/* Date Input Animation */
@keyframes datePickerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.form__input[type="date"]:focus {
    animation: datePickerPulse 0.3s ease-in-out;
}

/* ===================================
   NEW MODERN REGISTRATION DESIGN
   =================================== */

/* Main Registration Container */
.registration-container {
    max-width: 1024px;
    margin: 2rem auto;
    min-height: auto;
    display: block;
    background: #f9fafb;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.registration-card {
    width: 100%;
    background: #ffffff;
    border-radius: 0.5rem;
    border: none;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.registration-card::before {
    display: none;
}

/* Form Title */
.inscription__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: left;
}

.registration-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: floatRotate 20s linear infinite;
}

/* Welcome Hero Section */
.welcome-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 5rem;
    padding: 1rem 2rem;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    backdrop-filter: blur(10px);
    animation: badgeFloat 6s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

.welcome-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-description {
    font-size: 2rem;
    color: var(--professional-gray);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Options Container */
.options-container {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.options-title {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
}

.options-icon {
    font-size: 2.8rem;
    animation: iconBounce 2s ease-in-out infinite;
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

/* Option Cards */
.option-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.option-card:nth-child(2) {
    animation-delay: 0.2s;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.02) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-card:hover::before {
    left: 100%;
}

.option-card:hover::after {
    opacity: 1;
}

.option-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.option-card:active {
    transform: translateY(-6px) scale(0.99);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.option-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.option-card:hover .card-icon::before {
    transform: rotate(-45deg) translate(100%, 100%);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card:hover .card-title {
    color: #3b82f6;
    transform: scale(1.02);
}

.card-description {
    font-size: 1.4rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.option-card:hover .card-description {
    color: #475569;
    transform: translateY(-1px);
}

.card-arrow {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(49, 130, 206, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translate(1.5rem, -1.5rem);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15);
    font-size: 1.4rem;
}

.option-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0) scale(1.1);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
    z-index: 1;
}

.separator-text {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: separatorPulse 3s ease-in-out infinite;
}

.access-form {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-group {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container {
    position: relative;
    width: 100%;
}

.access-input {
    width: 100%;
    padding: 2rem 6rem 2rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 1.2rem;
    background: #ffffff;
    font-size: 1.8rem;
    color: #334155;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.access-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.access-input:valid {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.input-label {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--professional-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.access-input:focus + .input-label,
.access-input:valid + .input-label {
    top: -1rem;
    left: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-blue);
    background: white;
    padding: 0 0.5rem;
    font-weight: 600;
}


.input-icon {
    position: absolute;
    top: 50%;
    right: 30rem;
    transform: translateY(-50%);
    color: var(--professional-gray);
    transition: all 0.3s ease;
    z-index: 3;
}

.access-input:focus ~ .input-icon {
    color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.access-input:valid ~ .input-icon {
    color: var(--success-green);
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef2f2;
    border: 1px solid #f87171;
    border-radius: 0.3rem;
    padding: 0.4rem 0.8rem;
    margin-top: 0.3rem;
    backdrop-filter: none;
    animation: none;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 500;
}

.error-icon {
    font-size: 1rem;
    animation: none;
}

.error-text {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 500;
}

/* Submit Button */
.submit-button {
    width: 100%;
    max-width: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 1.6rem;
    padding: 2rem 3rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.submit-button:active {
    transform: translateY(-2px);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.button-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-icon {
    color: white;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

.button-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.submit-button:hover .button-background {
    left: 100%;
}

/* Enhanced Animations */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes separatorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    }
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4),
        0 8px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 18px 40px rgba(59, 130, 246, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-container {
        max-width: 100%;
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .registration-card {
        padding: 1rem;
        border-radius: 0.5rem;
    }
}

@media (max-width: 480px) {
    .registration-container {
        margin: 0.25rem;
        padding: 0.75rem;
        border-radius: 0.375rem;
    }

    .registration-card {
        padding: 0.75rem;
        border-radius: 0.375rem;
    }

    /* Even smaller elements for very small screens */
    .form__input {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.75rem !important;
        min-height: 1.6rem !important;
    }

    .form__select {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.75rem !important;
        min-height: 1.6rem !important;
    }

    .form__label {
        font-size: 0.7rem !important;
    }

    .form__radio-item {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.75rem !important;
    }

    .modern-submit-btn {
        padding: 0.4rem 1.2rem !important;
        font-size: 0.75rem !important;
        min-height: 2rem !important;
    }

    .inscription__title {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .registration-card {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .welcome-badge {
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }

    .welcome-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .welcome-description {
        font-size: 1.4rem;
    }

    .options-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .option-card {
        padding: 3rem 2rem;
        border-radius: 1.8rem;
    }

    .card-icon {
        width: 6rem;
        height: 6rem;
        border-radius: 1.5rem;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-description {
        font-size: 1.3rem;
    }

    .access-input {
        padding: 1.5rem 4.5rem 1.5rem 1.5rem;
        font-size: 1.4rem;
    }

    .submit-button {
        padding: 1.8rem 2.5rem;
    }

    .button-text {
        font-size: 1.4rem;
    }
}

/* Focus and Accessibility */
.option-card:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 4px;
}

.submit-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.access-input:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .registration-card {
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .welcome-title {
        color: rgba(255, 255, 255, 0.95);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(147, 197, 253, 0.95) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .welcome-description {
        color: rgba(255, 255, 255, 0.8);
    }

    .option-card {
        background: linear-gradient(135deg, rgba(51, 65, 85, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .card-title {
        color: rgba(255, 255, 255, 0.95);
    }

    .card-description {
        color: rgba(255, 255, 255, 0.7);
    }

    .access-input {
        background: rgba(51, 65, 85, 0.8);
        border-color: rgba(59, 130, 246, 0.3);
        color: rgba(255, 255, 255, 0.95);
    }
}

/* Date Input Tooltip */
.form__input[type="date"]::after {
    content: 'Click to select date';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.form__input[type="date"]::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary-blue);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.form__input[type="date"]:hover::after,
.form__input[type="date"]:hover::before {
    opacity: 1;
}

/* Date Input Responsive Design */
@media (max-width: 768px) {
    .form__input[type="date"] {
        background-size: 1.8rem;
        padding-right: 4.5rem;
    }

    .form__input[type="date"]:not([value])::before {
        font-size: 1.6rem;
        left: 2rem;
    }

    .form__input[type="date"]::after {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .form__input[type="date"] {
        background-size: 1.6rem;
        padding-right: 4rem;
    }

    .form__input[type="date"]:not([value])::before {
        font-size: 1.4rem;
        left: 1.8rem;
    }

    .form__input[type="date"]::after {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Dark Mode Support for Date Input */
@media (prefers-color-scheme: dark) {
    .form__input[type="date"] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }

    .form__input[type="date"]:hover {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233182ce'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }

    .form__input[type="date"]:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233182ce'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }
}

/* High Contrast Mode for Date Input */
@media (prefers-contrast: high) {
    .form__input[type="date"] {
        border: 3px solid var(--professional-gray);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000000'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }

    .form__input[type="date"]:focus {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 6px rgba(49, 130, 206, 0.3);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233182ce'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }

    .form__input[type="date"].error {
        border-color: var(--error-red);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.3);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
    }
}

/* Reduced Motion Support for Date Input */
@media (prefers-reduced-motion: reduce) {
    .form__input[type="date"] {
        transition: none;
    }

    .form__input[type="date"]:focus {
        animation: none;
    }

    .form__input[type="date"]:hover {
        transform: none;
    }

    .form__input[type="date"]:focus {
        transform: none;
    }
}

/* Enhanced Select2 Styling */
.select2-container--bootstrap-5 {
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-selection {
    height: auto;
    min-height: 6.4rem;
    padding: 1.8rem 2.2rem;
    border: 3px solid var(--light-gray);
    border-radius: 1.2rem;
    background: var(--white);
    font-size: 2rem;
    color: var(--professional-gray);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.03);
    font-family: inherit;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select2-container--bootstrap-5 .select2-selection:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1),
    0 8px 25px rgba(49, 130, 206, 0.15);
    outline: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    transform: translateY(-2px);
}

.select2-container--bootstrap-5 .select2-selection--single {
    background: transparent;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: var(--professional-gray);
    font-size: 2rem;
    font-weight: 500;
    padding: 0;
    line-height: 1.5;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: var(--light-gray);
    font-weight: 400;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 100%;
    width: 3rem;
    position: absolute;
    right: 1.5rem;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--professional-gray);
    transition: all 0.3s ease;
}

.select2-container--bootstrap-5.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    transform: rotate(180deg);
    border-top-color: var(--accent-blue);
}

/* Select2 Dropdown Styling */
.select2-dropdown {
    border: 3px solid var(--accent-blue);
    border-radius: 1.2rem;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(49, 130, 206, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 0.5rem;
}

.select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Select2 Search Box */
.select2-search--dropdown {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 2px solid rgba(49, 130, 206, 0.1);
}

.select2-search--dropdown .select2-search__field {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 0.8rem;
    background: var(--white);
    font-size: 1.6rem;
    color: var(--professional-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.03);
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1),
    0 4px 12px rgba(49, 130, 206, 0.15);
    outline: none;
}

.select2-search--dropdown .select2-search__field::placeholder {
    color: var(--light-gray);
    font-weight: 400;
}

/* Select2 Results */
.select2-results__options {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.select2-results__option {
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    color: var(--professional-gray);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.select2-results__option:hover {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.08) 0%, rgba(99, 179, 237, 0.08) 100%);
    color: var(--accent-blue);
    font-weight: 600;
}

.select2-results__option--highlighted[aria-selected] {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.15) 0%, rgba(99, 179, 237, 0.15) 100%);
    color: var(--accent-blue);
    font-weight: 700;
}

.select2-results__option[aria-selected=true] {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(99, 179, 237, 0.1) 100%);
    color: var(--accent-blue);
    font-weight: 600;
}

.select2-results__option--highlighted[aria-selected=true] {
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.2) 0%, rgba(99, 179, 237, 0.2) 100%);
    color: var(--accent-blue);
    font-weight: 700;
}

/* Select2 No Results */
.select2-results__message {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 1.4rem;
    font-style: italic;
}

/* Select2 Loading */
.select2-results__option--loading {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--accent-blue);
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(99, 179, 237, 0.05) 100%);
}

/* Select2 Clear Button */
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--error-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.select2-container--bootstrap-5 .select2-selection--single:hover .select2-selection__clear {
    opacity: 1;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

/* Select2 Focus States */
.form__group.select2-focused .select2-container--bootstrap-5 .select2-selection {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1),
    0 8px 25px rgba(49, 130, 206, 0.15);
    transform: translateY(-2px);
}

/* Select2 Success State */
.form__group.select2-success .select2-container--bootstrap-5 .select2-selection {
    border-color: var(--success-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    animation: select2Success 0.5s ease-in-out;
}

@keyframes select2Success {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Select2 Cleared State */
.form__group.select2-cleared .select2-container--bootstrap-5 .select2-selection {
    border-color: var(--light-gray);
    animation: select2Cleared 0.3s ease-in-out;
}

@keyframes select2Cleared {
    0% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Select2 Error State */
.form__group .select2-container--bootstrap-5 .select2-selection.error {
    border-color: var(--error-red);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1),
    0 8px 25px rgba(220, 38, 38, 0.15);
    animation: inputError 0.4s ease-in-out;
}

/* Select2 Responsive Design */
@media (max-width: 768px) {
    .select2-container--bootstrap-5 .select2-selection {
        min-height: auto !important;
        padding: 1rem 1.2rem !important;
        font-size: 1.4rem !important;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
        font-size: 1.4rem !important;
    }

    .select2-search--dropdown .select2-search__field {
        padding: 1rem 1.2rem;
        font-size: 1.4rem;
    }

    .select2-results__option {
        padding: 1rem 1.2rem;
        font-size: 1.4rem;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
        width: 2.5rem;
        right: 1.2rem;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
        right: 3.5rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .select2-container--bootstrap-5 .select2-selection {
        min-height: 5.2rem;
        padding: 1.3rem 1.8rem;
        font-size: 1.4rem;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
        font-size: 1.4rem;
    }

    .select2-search--dropdown .select2-search__field {
        padding: 0.8rem 1rem;
        font-size: 1.3rem;
    }

    .select2-results__option {
        padding: 0.8rem 1rem;
        font-size: 1.3rem;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
        width: 2.2rem;
        right: 1rem;
    }

    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
        right: 3.2rem;
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.9rem;
    }
}

/* Select2 Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .select2-container--bootstrap-5 .select2-selection {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .select2-dropdown {
        background: rgba(255, 255, 255, 0.98);
        border-color: var(--accent-blue);
    }

    .select2-search--dropdown {
        background: linear-gradient(135deg, rgba(49, 130, 206, 0.1) 0%, rgba(99, 179, 237, 0.1) 100%);
    }

    .select2-search--dropdown .select2-search__field {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Select2 High Contrast Mode */
@media (prefers-contrast: high) {
    .select2-container--bootstrap-5 .select2-selection {
        border: 3px solid var(--professional-gray);
        background: var(--white);
    }

    .select2-container--bootstrap-5.select2-container--focus .select2-selection {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 6px rgba(49, 130, 206, 0.3);
    }

    .select2-dropdown {
        border: 3px solid var(--accent-blue);
        background: var(--white);
    }

    .select2-results__option {
        border-bottom: 1px solid var(--light-gray);
    }

    .select2-results__option:hover {
        background: rgba(49, 130, 206, 0.1);
    }
}

/* Select2 Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .select2-container--bootstrap-5 .select2-selection,
    .select2-results__option,
    .select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
        transition: none;
    }

    .form__group.select2-success .select2-container--bootstrap-5 .select2-selection,
    .form__group.select2-cleared .select2-container--bootstrap-5 .select2-selection {
        animation: none;
    }
}

/* Enhanced Footer Styling */
.footer {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Enhanced Contact and Footer Section */
.modern-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 2.4rem;
    padding: 5rem 4rem;
    margin: 4rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(49, 130, 206, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modern-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--light-blue) 50%, var(--accent-blue) 100%);
    border-radius: 2.4rem 2.4rem 0 0;
}

.modern-contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.contact-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--light-blue) 50%, var(--accent-blue) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.3);
}

.contact-description {
    font-size: 2rem;
    color: var(--professional-gray);
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.modern-link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 2rem;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 200px;
    justify-content: center;
}

.modern-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.15), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-link:hover::before {
    left: 100%;
}

.modern-link:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(49, 130, 206, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--accent-blue);
}

.link-icon {
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: var(--accent-blue);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.modern-link:hover .link-icon {
    transform: scale(1.2) rotate(8deg);
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}


/* Modern Press Page Styling */
.modern-press {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 2.4rem;
    padding: 5rem 4rem;
    margin: 10rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(49, 130, 206, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modern-press::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--light-blue) 50%, var(--accent-blue) 100%);
    border-radius: 2.4rem 2.4rem 0 0;
}

.modern-press::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleGlow 8s ease-in-out infinite;
}

.press-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.press-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 30px rgba(49, 130, 206, 0.25),
    0 6px 15px rgba(0, 0, 0, 0.1);
    animation: iconFloat 6s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.press-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.press-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.press-message {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 1.8rem;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(49, 130, 206, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.press-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.05), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-message:hover::before {
    left: 100%;
}

.press-message:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

.press-message--closed {
    border-left: 4px solid #ef4444;
}

.press-message--info {
    border-left: 4px solid var(--accent-blue);
}

.press-message--thanks {
    border-left: 4px solid #10b981;
}

.message-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.press-message--closed .message-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.press-message--thanks .message-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.message-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.message-text {
    font-size: 1.6rem;
    color: var(--professional-gray);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.message-signature {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: italic;
    margin: 1rem 0 0 0;
}

.press-email {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.press-email:hover {
    color: var(--light-blue);
    border-bottom-color: var(--accent-blue);
}

/* Enhanced Footer Styling */
.footer {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--accent-blue) 50%, var(--secondary-blue) 100%);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__conds-rights {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__rights {
    color: var(--white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    position: relative;
}

.footer__link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    position: relative;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: var(--light-blue);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer__link:hover::before {
    width: 80%;
}

.footer__link-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 1rem;
}

.footer__link-logo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer__logo {
    height: 5rem;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    max-width: 200px;
}

.footer__link-logo:hover .footer__logo {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.footer__copyright {
    font-size: 1.4rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Mobile Body Adjustments */
    body {
        font-size: 55%;
        line-height: 1.5;
    }

    /* Mobile Header */
    .header {
        padding: 1rem 1.5rem;
        background: var(--gradient-primary);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Mobile Header when scrolled */
    .header--scrolled {
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 90, 135, 0.98) 100%);
        backdrop-filter: blur(15px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* Mobile navbar when scrolled */
    .header--scrolled .navbar {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        width: 100%;
        flex: 1;
        padding: 0.2rem 0.5rem;
        position: relative;
    }

    /* Mobile language selector when scrolled */
    .header--scrolled .navbar__lang {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        flex-shrink: 0;
    }

    /* Mobile logo animations - always show logos on mobile */
    .logos--hidden,
    .logos--small {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        max-height: 6rem !important;
    }

    .header__title {
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
        margin-bottom: 1rem;
        border-radius: 0.8rem;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }

    .navbar__logo-burger_container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        gap: 0.5rem;
        padding: 0;
        max-height: 6rem;
        overflow: hidden;
        margin: 0 0.5rem;
    }

    .navbar__logo {
        height: 5rem;
        max-width: 120px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .navbar__logo.main_logo {
        max-width: 140px;
        height: 6rem;
    }

    /* Ensure multiple logos display side by side */
    .navbar__logo + .navbar__logo {
        margin-left: 1rem;
    }

    .navbar__lang {
        min-width: 6rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 1.5rem;
        padding: 0.2rem;
    }

    .navbar__lang select {
        font-size: 1.2rem;
        padding: 0.6rem 2rem 0.6rem 1rem;
        border-radius: 1.2rem;
        min-height: 3.2rem;
    }

    .navbar__lang::after {
        right: 0.8rem;
        font-size: 0.7rem;
    }

    /* Mobile Content */
    .content {
        margin-top: 12rem;
        padding: 2rem 1rem;
    }

    .content__container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Mobile Main Section */
    .init-inscription {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
        margin: 0 1rem;
        border-radius: 1.5rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Welcome Section */
    .welcome-section {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
        border-radius: 1.2rem;
    }

    .welcome-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .welcome-description {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    /* Mobile Button Group */
    .button-group {
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0;
    }

    .modern-btn {
        max-width: 100%;
        width: 100%;
        padding: 1.8rem 2rem;
        border-radius: 1.5rem;
        min-height: 6.5rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 20px rgba(49, 130, 206, 0.15);
    }

    .modern-btn a {
        font-size: 1.6rem;
        gap: 1.2rem;
        letter-spacing: 0.8px;
    }

    .btn-icon {
        font-size: 2.2rem;
        width: 2.8rem;
        height: 2.8rem;
    }

    /* Mobile Separator */
    .separator-content {
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
        border-radius: 2.5rem;
    }

    /* Mobile Code Section */
    .code-section {
        padding: 3rem 2rem;
        border-radius: 1.2rem;
    }

    .code-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .code-subtitle {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    /* Mobile Form */
    .form {
        padding: 3rem 2rem;
        border-radius: 1.5rem;
        margin: 0 1rem;
    }

    .form__title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .form__group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .form__label {
        font-size: 1.8rem;
        min-width: auto;
        width: 100%;
        margin-bottom: 0.8rem;
        text-align: left;
    }

    .form__input,
    .form__select {
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
        border-radius: 1rem;
        min-height: 5.5rem;
        width: 100%;
    }

    .form__radio-group {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .form__radio-item {
        padding: 1.2rem 1.5rem;
        border-radius: 1rem;
        min-width: auto;
        width: 100%;
    }

    .form__radio-label {
        font-size: 1.6rem;
    }

    /* Mobile Submit Button */
    .modern-submit-btn {
        width: 100%;
        padding: 1.8rem 2.5rem;
        font-size: 1.6rem;
        min-height: 6.5rem;
        border-radius: 1.5rem;
        gap: 1rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2.2rem;
    }

    /* Mobile Error Messages */
    .modern-tip,
    .inscription__tip {
        font-size: 1.4rem;
        padding: 1.5rem 2rem;
        margin: 2rem 0;
        border-radius: 1rem;
        gap: 1rem;
    }

    .modern-tip::before,
    .inscription__tip::before {
        font-size: 1.6rem;
    }

    /* Mobile Contact Section */
    .modern-contact {
        padding: 3.5rem 2rem;
        margin: 2rem 0.5rem 0;
        border-radius: 2rem;
        max-width: calc(100% - 1rem);
    }

    .contact-title {
        font-size: 2.6rem;
        margin-bottom: 2rem;
        line-height: 1.3;
        letter-spacing: 1.5px;
    }

    .contact-description {
        font-size: 1.7rem;
        margin-bottom: 3rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .modern-link {
        padding: 2rem 2.5rem;
        font-size: 1.6rem;
        border-radius: 1.8rem;
        justify-content: center;
        min-height: 65px;
        box-shadow: 0 8px 20px rgba(49, 130, 206, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
        min-width: auto;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer__conds-rights {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .footer__rights {
        font-size: 1.4rem;
        line-height: 1.7;
        padding: 1rem;
        border-radius: 1rem;
        backdrop-filter: blur(10px);
    }

    .footer__link {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .footer__logo {
        height: 4rem;
        max-width: 180px;
        margin-top: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    body {
        font-size: 50%;
    }

    .header {
        padding: 0.8rem 1rem;
    }

    .navbar__logo {
        height: 4rem;
        max-width: 100px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .navbar__logo.main_logo {
        max-width: 120px;
        height: 5rem;
    }

    /* Ensure multiple logos display side by side on extra small screens */
    .navbar__logo + .navbar__logo {
        margin-left: 0.8rem;
    }

    .navbar__lang {
        min-width: 5.5rem;
    }

    .navbar__lang select {
        font-size: 1.1rem;
        padding: 0.5rem 1.8rem 0.5rem 0.8rem;
        min-height: 3rem;
    }

    .navbar__lang::after {
        right: 0.6rem;
        font-size: 0.6rem;
    }

    .content {
        margin-top: 10rem;
        padding: 1.5rem 0.8rem;
    }

    .init-inscription {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-description {
        font-size: 1.4rem;
    }

    .modern-btn {
        padding: 1.5rem 1.8rem;
        min-height: 6rem;
    }

    .modern-btn a {
        font-size: 1.4rem;
        gap: 1rem;
    }

    .btn-icon {
        font-size: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .form {
        padding: 2.5rem 1.5rem;
    }

    .form__title {
        font-size: 2rem;
    }

    .form__label {
        font-size: 1.6rem;
    }

    .form__input,
    .form__select {
        padding: 1.3rem 1.8rem;
        font-size: 1.4rem;
        min-height: 5rem;
    }

    .modern-submit-btn {
        padding: 1.6rem 2rem;
        font-size: 1.4rem;
        min-height: 6rem;
    }

    .modern-submit-btn .svg-wrapper-1,
    .modern-submit-btn .svg-wrapper {
        font-size: 2rem;
    }


    .footer__container {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer__rights {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 0.8rem;
    }

    .footer__link {
        font-size: 1.4rem;
    }

    .footer__logo {
        height: 3.5rem;
        max-width: 160px;
    }

    /* Extra Small Mobile Contact Section */
    .modern-contact {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem 0.3rem 0;
        border-radius: 1.8rem;
    }

    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .contact-description {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .contact-links {
        gap: 1.2rem;
    }

    .modern-link {
        padding: 1.8rem 2rem;
        font-size: 1.4rem;
        border-radius: 1.5rem;
        min-height: 60px;
    }

    .link-icon {
        font-size: 1.6rem;
    }

    /* Mobile Press Page */
    .modern-press {
        padding: 3.5rem 2rem;
        margin: 2rem 0.5rem 0;
        border-radius: 2rem;
        max-width: calc(100% - 1rem);
    }

    .press-header {
        margin-bottom: 3rem;
    }

    .press-icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.5rem;
        border-radius: 1.5rem;
    }

    .press-title {
        font-size: 2.6rem;
        letter-spacing: 1.5px;
    }

    .press-content {
        gap: 2rem;
    }

    .press-message {
        padding: 2rem 2rem;
        border-radius: 1.5rem;
        gap: 1.5rem;
    }

    .message-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .message-title {
        font-size: 1.6rem;
    }

    .message-text {
        font-size: 1.4rem;
    }

    .message-signature {
        font-size: 1.3rem;
    }

    /* Extra Small Mobile Press Page */
    .modern-press {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem 0.3rem 0;
        border-radius: 1.8rem;
    }

    .press-header {
        margin-bottom: 2.5rem;
    }

    .press-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.2rem;
        border-radius: 1.2rem;
    }

    .press-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .press-content {
        gap: 1.5rem;
    }

    .press-message {
        padding: 1.8rem 1.5rem;
        border-radius: 1.2rem;
        gap: 1.2rem;
    }

    .message-icon {
        width: 2.2rem;
        height: 2.2rem;
    }

    .message-title {
        font-size: 1.4rem;
    }

    .message-text {
        font-size: 1.2rem;
    }

    .message-signature {
        font-size: 1.1rem;
    }

    /* Extra small mobile - always show logos */
    .logos--hidden,
    .logos--small {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        max-height: 5rem !important;
    }
}

/* Modern Confirmation Page Styles */
.confirmation-container {
    min-height: calc(100vh - 20rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 0; /* Remove margin since content already has it */
}

.confirmation-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669, #047857);
}

.confirmation-icon {
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.confirmation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.confirmation-message {
    margin-bottom: 2rem;
}

.confirmation-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.confirmation-signature {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #10B981;
}

.signature-text {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.confirmation-contact {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 0.75rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.contact-link:hover {
    border-color: #10B981;
    color: #10B981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.confirmation-logo {
    margin-top: 2rem;
}

.logo-image {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .confirmation-container {
        padding: 1rem;
    }

    .confirmation-card {
        padding: 2rem;
    }

    .confirmation-title {
        font-size: 2rem;
    }

    .confirmation-text {
        font-size: 1rem;
    }

    .contact-links {
        align-items: stretch;
    }

    .contact-link {
        min-width: auto;
    }
}

/* Modern Homepage Registration Design */
.modern-registration-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Main Title Section */
.main-title-section {
    text-align: center;
    margin-bottom: 2.5rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.main-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
}

/* Profile Selection Section */
.profile-selection-section {
    margin-bottom: 2.5rem;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.profile-card:hover .card-subtitle {
    color: #3b82f6;
    opacity: 1;
}

.vip-card {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
}

.vip-card:hover {
    border-color: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.vip-card:hover .card-subtitle {
    color: #d97706;
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.card-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Separator Section */
.separator-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
}

.separator-text {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border: 2px solid #3b82f6;
    border-radius: 2rem;
    color: #ffffff;
    background: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

/* Personal Code Section */
.personal-code-section {
    margin-top: 2.5rem;
}

.code-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.code-input {
    flex: 1;
    padding: 1rem 1.5rem 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-bottom: 2px solid #ef4444;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #374151;
    background: #ffffff;
    transition: all 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.input-icon {
    position: absolute;
    right: 1rem;
    color: #6b7280;
    pointer-events: none;
}

.submit-btn {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #1e40af;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-text {
    font-weight: 600;
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
}

.error-icon {
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-registration-container {
        padding: 2rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    .profile-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-card {
        padding: 1.5rem 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .submit-btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* VIP Page Styling */
.vip-main {
    background: #1A2B40;
    min-height: 100vh;
}

.vip-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.vip-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: none;
}

.vip-exclusivity {
    font-size: 0.875rem;
    font-weight: 600;
    color: #E8B94F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.vip-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.vip-description {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vip-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
}

.warning-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #92400e;
    margin-bottom: 1rem;
}

.warning-text:last-child {
    margin-bottom: 0;
}

.vip-benefits {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit-category-btn {
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-category-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.benefit-category-btn.active {
    background: #f59e0b;
    border-color: #d97706;
    color: #ffffff;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.benefit-item {
    padding: 1rem;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #f59e0b;
}

.benefit-item.expanded {
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.benefit-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.benefit-details p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.benefit-toggle {
    background: #f59e0b;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.benefit-toggle:hover {
    background: #d97706;
    transform: scale(1.1);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
}

.vip-pricing {
    background: #2A3B50;
    border-radius: 1rem;
    padding: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-subtitle {
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.package-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.package-card {
    background: #2A3B50;
    border: 2px solid #2A3B50;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.package-card:hover {
    border-color: #E8B94F;
    transform: translateY(-2px);
}

.package-card--selected {
    background: #E8B94F;
    border-color: #E8B94F;
    color: #1A2B40;
}

.package-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 0.875rem;
    opacity: 0.8;
}

.selected-package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1A2B40;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.package-info {
    flex: 1;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.package-vat {
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.8;
}

.buy-package-btn {
    background: #E8B94F;
    color: #1A2B40;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.buy-package-btn:hover {
    background: #D4A843;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 185, 79, 0.3);
}

.quote-link {
    text-align: center;
}

.quote-link a {
    color: #ffffff;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.quote-link a:hover {
    opacity: 1;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-calculator {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calculator-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-select,
.days-select,
.people-count {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.package-select:focus,
.days-select:focus,
.people-count:focus {
    outline: none;
    border-color: #f59e0b;
    background: rgba(255, 255, 255, 0.2);
}

.package-select option,
.days-select option {
    background: #1f2937;
    color: #ffffff;
}

.calculator-result {
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.result-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.result-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
}

.result-breakdown {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.pricing-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-row.selected {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

.select-package-btn {
    background: #f59e0b;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.select-package-btn:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.pricing-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-col {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #f59e0b;
    justify-content: center;
}

.vip-contact {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-card {
    background: #2A3B50;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-container {
    background: #ffffff;
    border: 2px solid #0ea5e9;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #0c4a6e;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form input.success,
.contact-form select.success,
.contact-form textarea.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.submit-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    align-self: center;
}

.submit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.submit-contact-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.person-title {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Why Choose VIP Section */
.vip-why-choose {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #cbd5e1;
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #f59e0b;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.why-choose-item-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-person {
    text-align: center;
}

.person-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.person-title {
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(232, 185, 79, 0.1);
    border-color: rgba(232, 185, 79, 0.3);
    color: #E8B94F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 185, 79, 0.2);
}

.vip-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.buy-now-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.buy-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #ffffff;
    color: #1A2B40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for VIP Page */
@media (max-width: 768px) {
    .vip-container {
        padding: 1rem;
    }

    .vip-title {
        font-size: 2rem;
    }

    .vip-description {
        font-size: 1rem;
    }

    .package-selection {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        max-width: 300px;
    }

    .selected-package-details {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .buy-package-btn {
        width: 100%;
        justify-content: center;
    }

    .benefits-categories {
        flex-direction: column;
        align-items: center;
    }

    .benefit-category-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .calculator-controls {
        grid-template-columns: 1fr;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-col {
        padding: 0.75rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }

    .contact-details {
        align-items: center;
    }

    .vip-actions {
        flex-direction: column;
        align-items: center;
    }

    .buy-now-button,
    .back-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #0ea5e9;
    z-index: 1000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    color: #10b981;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-text {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.notification-close:hover {
    color: #374151;
}

/* Animation for VIP Page */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Contact Section Styling */
.contact-section {
    margin-top: 2rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section-underline {
    width: 60px;
    height: 3px;
    background: #1e40af;
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.contact-section-text {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 0.75rem;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: flex-start;
}

.contact-button:hover {
    background: #eff6ff;
    border-color: #1e40af;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem;
    }

    .contact-section-title {
        font-size: 1.25rem;
    }

    .contact-button {
        min-width: auto;
        width: 100%;
        padding: 0.875rem 0rem 0.875rem 0.875rem;
        font-size: 0.9rem;
    }
}


