* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003d29;
    --primary-hover: #005a3f;
    --secondary-color: #00c853;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
}

.language-switcher a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.language-switcher a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.language-switcher a.active {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 61, 41, 0.1);
}

.language-switcher .separator {
    color: var(--text-light);
    font-size: 14px;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: var(--primary-hover);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a3f 100%);
    color: var(--white);
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    flex: 1;
    max-width: 600px;
}

.hero-form-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    flex-shrink: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 22px;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Application Form */
.hero-application-form {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.hero-application-form .form-group {
    margin-bottom: 15px;
}

.hero-application-form input,
.hero-application-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.hero-application-form input:focus,
.hero-application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 61, 41, 0.1);
}

.hero-application-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003d29' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.hero-application-form .error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.hero-application-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    background: var(--primary-color);
    color: var(--white);
}

.hero-application-form .btn-primary:hover {
    background: #005a3f;
    transform: translateY(-2px);
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-hero {
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 61, 41, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
}

.benefits-section .section-title {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.benefits-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 32px;
    margin-bottom: 60px;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 61, 41, 0.05), transparent);
    transition: left 0.5s;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.step:hover::before {
    left: 100%;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 61, 41, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(0, 61, 41, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover .step-number::after {
    opacity: 0.5;
    animation: ringPulse 1.5s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.step:hover h3 {
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Benefits */
.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 61, 41, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 83, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 41, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 61, 41, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 61, 41, 0.15);
    border-color: rgba(0, 61, 41, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f4 100%);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 61, 41, 0.05), rgba(0, 200, 83, 0.05));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid rgba(0, 61, 41, 0.1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 61, 41, 0.1), rgba(0, 200, 83, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 61, 41, 0.2);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.benefit-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover p {
    color: #444;
}

/* Additional Professional Enhancements for Benefits */
.benefits-section .section {
    position: relative;
    z-index: 1;
}

.benefit-card {
    backdrop-filter: blur(10px);
}

.benefit-card .benefit-icon-wrapper {
    position: relative;
    display: inline-block;
}

.benefit-card .benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 61, 41, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-card:hover .benefit-icon-wrapper::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Number badge for benefits (optional enhancement) */
.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 61, 41, 0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-number {
    opacity: 1;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-down {
    animation: slideDown 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.section-title-animate {
    animation: fadeInUp 0.5s ease-out;
}

/* Registration Form */
.registration-section {
    background: var(--white);
    animation: fadeIn 0.4s ease-out;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-container-no-border {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    padding: 40px 24px;
    transition: box-shadow 0.3s ease;
}

/* Application Banner */
.application-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a3f 100%);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.application-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: bannerPulse 8s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
    transition: transform 0.2s ease;
}

.form-group:hover {
    transform: translateX(2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #dc3545;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: transparent;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    box-shadow: none;
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 61, 41, 0.3);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    animation: slideDown 0.4s ease-out;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 24px 24px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a3f 100%);
    color: var(--white);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 80px 24px;
    border-radius: 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Multi-Step Form */
.steps-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 60px;
    padding: 0 20px;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-light);
    transition: all 0.4s ease;
    margin-bottom: 12px;
}

.step-indicator.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 61, 41, 0.3);
}

.step-indicator.completed .step-circle {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.step-indicator.completed .step-circle::after {
    content: '✓';
    font-size: 24px;
}

.step-indicator.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.step-indicator.disabled .step-circle {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-light);
}

.step-status-badge {
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.step-status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.step-status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.step-status-badge.status-pending,
.step-status-badge.status-in_process {
    background: #fff3cd;
    color: #856404;
}

.step-indicator.status-approved .step-circle {
    background: #28a745;
    border-color: #28a745;
}

.step-indicator.status-rejected .step-circle {
    background: #dc3545;
    border-color: #dc3545;
}

.step-locked {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 40px 0;
}

.step-locked p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-locked .status-info {
    font-size: 16px;
    color: var(--text-light);
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    animation: slideDown 0.4s ease-out;
}

.step-label {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
    transition: color 0.3s;
}

.step-indicator.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    margin: 0 10px;
    margin-bottom: 37px;
    transition: background 0.4s ease;
    position: relative;
}

.step-line.completed {
    background: var(--secondary-color);
}

.step-form {
    animation: fadeInUp 0.5s ease-out;
}

.step-content {
    padding: 20px 0;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contract-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    max-height: 400px;
    overflow-y: auto;
}

.contract-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contract-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contract-content ul {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.contract-content li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contract-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group {
    margin: 32px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
}

.checkbox-label:hover {
    background: rgba(0, 61, 41, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-dark);
}

.file-upload-label:hover {
    background: rgba(0, 61, 41, 0.05);
    border-color: var(--primary-color);
}

.upload-icon {
    font-size: 24px;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    padding: 14px 32px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.form-navigation .btn-submit {
    flex: 1;
    max-width: 300px;
    margin-left: auto;
}

/* Tracking Section */
.tracking-section {
    margin-bottom: 40px;
}

.tracking-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #003d29;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.tracking-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.tracking-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.tracking-form .form-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.tracking-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-track {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-track:hover {
    background: #005a3f;
    transform: translateY(-2px);
}

.btn-track:active {
    transform: translateY(0);
}

/* Status Dashboard */
.status-dashboard {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: #666;
    font-size: 16px;
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    flex-shrink: 0;
}

.overview-content h4 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.application-token {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contract Styles */
.contract-preview {
    margin: 30px 0;
}

.contract-content-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.8;
    white-space: pre-wrap;
}

#signature-pad {
    position: relative;
    background: white;
    margin: 15px 0;
}

#signature-canvas {
    width: 100%;
    height: 200px;
    display: block;
}

.contract-form {
    margin-top: 30px;
}

/* Waiting Approval Styles */
.waiting-approval-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 40px 20px;
}

.waiting-content {
    text-align: center;
    max-width: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.scooter-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    animation: scooter-ride 3s ease-in-out infinite;
}

.scooter-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 61, 41, 0.2));
}

@keyframes scooter-ride {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(-2deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
    75% {
        transform: translateX(-10px) rotate(2deg);
    }
}

.waiting-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.waiting-message {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.waiting-info {
    margin-top: 30px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.waiting-info p {
    color: #2e7d32;
    font-size: 16px;
    margin: 0;
    font-style: italic;
}

.admin-notes {
    margin-top: 25px;
    padding: 20px;
    background: #fff3e0;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    text-align: left;
}

.admin-notes strong {
    color: #e65100;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.admin-notes p {
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 80px 24px;
        min-height: 500px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }

    .section {
        padding: 60px 24px;
    }

    .cta-section {
        margin: 60px 16px;
        padding: 60px 24px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 48px;
        margin-bottom: 20px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 15px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps-progress {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
    }

    .step-indicator {
        flex: 0 0 calc(25% - 8px);
        min-width: 60px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
    }

    .step-line {
        display: none;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn-submit {
        max-width: 100%;
        margin-left: 0;
    }

    .contract-box {
        padding: 24px;
        max-height: 300px;
    }

    .hero-application-form {
        padding: 20px;
    }

    .hero-application-form .form-row {
        grid-template-columns: 1fr;
    }

    .status-overview {
        grid-template-columns: 1fr;
    }

    .overview-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Appointment Booking Styles */
.deposit-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.deposit-notice .notice-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.deposit-notice p {
    margin: 0;
    color: #856404;
    font-weight: 600;
    font-size: 16px;
}

.appointment-confirmed {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 20px;
    border: 2px solid #28a745;
}

.success-icon-large {
    width: 100px;
    height: 100px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.appointment-details {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-details p {
    margin: 12px 0;
    font-size: 16px;
    color: #333;
}

.appointment-details strong {
    color: #003d29;
}

.confirmation-message {
    color: #155724;
    font-size: 18px;
    margin-top: 24px;
    font-weight: 600;
}

.field-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.thank-you-message {
    font-size: 18px;
    color: #155724;
    margin-bottom: 30px;
    font-weight: 500;
}

.appointment-details h3 {
    color: #003d29;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.status-approved-badge {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

.status-pending-badge {
    background: #ffc107;
    color: #856404;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

/* Contract Status Styles */
.contract-signed-notice {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    font-weight: bold;
}

.contract-signed-notice h3 {
    color: #2e7d32;
    font-size: 24px;
    margin-bottom: 10px;
}

.contract-signed-notice p {
    color: #1b5e20;
    font-size: 16px;
    margin: 10px 0;
}

.signed-date {
    font-weight: 600;
    color: #2e7d32;
}

.contract-sign-required {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 12px;
    border: 2px solid #ff9800;
}

.contract-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.contract-sign-required h2 {
    color: #e65100;
    font-size: 28px;
    margin-bottom: 15px;
}

.contract-sign-required p {
    color: #5d4037;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

.expiry-info {
    margin-top: 20px;
    color: #bf360c;
    font-size: 14px;
    font-weight: 600;
}

.contract-expired-notice {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: 12px;
    border: 2px solid #f44336;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.contract-expired-notice h2 {
    color: #c62828;
    font-size: 28px;
    margin-bottom: 15px;
}

.contract-expired-notice p {
    color: #b71c1c;
    font-size: 18px;
    line-height: 1.6;
}

.contract-waiting {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    border: 2px solid #2196f3;
}

.waiting-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.contract-waiting h2 {
    color: #1565c0;
    font-size: 28px;
    margin-bottom: 15px;
}

.contract-waiting p {
    color: #0d47a1;
    font-size: 18px;
    line-height: 1.6;
}

/* Image Preview Styles */
.image-preview-container {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-preview {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-preview-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-preview-remove:hover {
    background: rgba(255, 0, 0, 1);
}

@media (max-width: 768px) {
    .image-preview {
        max-width: 100%;
        max-height: 250px;
    }
}

