/* Banner Section */
.banner-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    font-family: 'Nunito', sans-serif;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: #718096;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.banner-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    font-weight: 600;
    color: #2d3748;
}

.contact-illustration {
    position: relative;
    text-align: center;
}

.banner-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
}

.floating-letters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.letter {
    position: absolute;
    font-size: 2rem;
    animation: letter-float 4s ease-in-out infinite;
}

.letter-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.letter-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.letter-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.letter-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-decoration>div {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-gentle 6s ease-in-out infinite;
}

.deco-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.deco-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1.5s;
}

.deco-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
}

.deco-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

/* Section Styles */
.contact-section,
.register-section,
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.contact-section {
    background: rgba(255, 255, 255, 0.4);
}

.register-section {
    background: rgba(16, 185, 129, 0.03);
}

.faq-section {
    background: rgba(255, 255, 255, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
    font-family: 'Comfortaa', sans-serif;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-link:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.2);
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.hours-label {
    color: #718096;
}

.hours-time {
    color: #10b981;
    font-weight: 600;
}

/* Office Info */
.office-info {
    text-align: center;
}

.office-card {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: left;
}

.office-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.office-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.office-details p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.office-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    color: #065f46;
    font-size: 0.9rem;
}

.note-icon {
    flex-shrink: 0;
}

/* Register Section */
.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Form Styles */
.register-form-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Comfortaa', sans-serif;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.input-decoration {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    margin-top: 0.75rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(16, 185, 129, 0.05);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-custom {
    background: #10b981;
    border-color: #10b981;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.checkbox-text {
    color: #4a5568;
    line-height: 1.5;
}

.privacy-group {
    background: rgba(16, 185, 129, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.privacy-checkbox {
    margin-bottom: 1rem;
}

.privacy-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.privacy-note {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.privacy-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    font-family: 'Comfortaa', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.form-success p {
    color: #047857;
    line-height: 1.6;
}

/* FAQ Section */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
}

.category-btn:hover,
.category-btn.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
    font-weight: 600;
    color: #2d3748;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: 4rem;
}

.faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.faq-contact .contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-text {
    text-align: left;
}

.contact-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.contact-text p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

a {
    text-decoration: none;
    color: inherit;
}


/* Animations */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes letter-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .banner-content,
    .register-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .office-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact {
        flex-direction: column;
        text-align: center;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .register-form-container {
        padding: 2rem;
    }


}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}