/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header dan Navigation */
.header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
    position: static;
    transform: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #f39c12;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #f39c12;
    margin: 0;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: 120px; /* Memberikan ruang untuk admin button */
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f39c12;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f39c12;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.admin-btn {
    display: flex;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 10px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    order: 3;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    gap: 8px;
}

.admin-btn:hover {
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, #e67e22, #d35400);
}

.admin-btn::after {
    display: none;
}

.admin-text {
    display: inline;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 20px;
    height: 2.5px;
    background-color: white;
    margin: 2.5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #f39c12;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.soccer-ball {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.soccer-ball i {
    font-size: 10rem;
    color: #f39c12;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: white;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white !important;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefits i {
    color: #27ae60;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.image-placeholder i {
    font-size: 5rem;
    color: white;
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #f39c12;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-header i {
    font-size: 2rem;
    color: #f39c12;
}

.schedule-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.schedule-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.schedule-details strong {
    color: #2c3e50;
}

/* Registration Section */
.registration {
    padding: 5rem 0;
    background: white !important;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.registration-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.registration-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.registration-info ul {
    list-style: none;
}

.registration-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.registration-info i {
    color: #f39c12;
    font-size: 1.2rem;
}

.registration-form {
    background: #f8f9fa !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: white !important;
    color: #333 !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Confirmation Page */
.confirmation-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.confirmation-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.confirmation-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.confirmation-details h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-item label {
    font-weight: 600;
    color: #2c3e50;
}

.detail-item span {
    color: #666;
}

.next-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #f39c12;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Error and Success Messages */
.error-message,
.success-message {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 2rem 0;
}

.error-message {
    border-left: 5px solid #e74c3c;
}

.success-message {
    border-left: 5px solid #27ae60;
}

.error-message h2 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.error-message ul {
    list-style: none;
    margin: 1rem 0;
}

.error-message li {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #e67e22;
    text-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
    transform: translateY(-1px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .registration-content {
        gap: 3rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        order: 1;
        margin-right: 15px;
    }
    
    .nav-logo {
        order: 2;
        position: static;
        transform: none;
        margin-left: 0;
        flex: 1;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .admin-btn {
        display: flex;
        order: 3;
        position: static;
        transform: none;
        margin-left: 15px;
        width: auto;
        height: auto;
        font-size: 1rem;
        padding: 8px 16px;
        background: linear-gradient(45deg, #f39c12, #e67e22);
        border: none;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .admin-btn:hover {
        color: white;
        transform: scale(1.05);
        background: linear-gradient(45deg, #e67e22, #d35400);
    }
    
    .admin-text {
        display: none;
    }
    
    .nav-menu {
        order: 4;
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 5rem 0 2rem;
        justify-content: flex-start;
        z-index: 1000;
        margin-right: 0; /* Reset margin untuk mobile */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(243, 156, 18, 0.1);
        transform: translateX(5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-features {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .feature {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.2rem;
        border-radius: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .benefits {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .benefits li {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .registration-info {
        padding: 2.5rem;
        text-align: center;
    }
    
    .registration-info h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .registration-info li {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        justify-content: flex-start;
    }
    
    .registration-form {
        padding: 2.5rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group label {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px 18px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 18px;
        font-size: 1.2rem;
        border-radius: 10px;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .schedule-card {
        padding: 2.5rem;
        border-radius: 20px;
    }
    
    .schedule-header h3 {
        font-size: 1.6rem;
    }
    
    .schedule-details p {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section p {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .soccer-ball {
        width: 250px;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .soccer-ball img {
        width: 180px !important;
        height: 180px !important;
        object-fit: contain;
    }
    
    .soccer-ball i {
        font-size: 6rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
    
    .scroll-arrow i {
        font-size: 1.1rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 45px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-logo img {
        width: 35px;
        height: 35px;
        margin-right: 6px;
    }
    
    .admin-btn {
        width: auto;
        height: auto;
        font-size: 0.9rem;
        margin-left: 10px;
        padding: 6px 12px;
        background: linear-gradient(45deg, #f39c12, #e67e22);
        border: none;
        border-radius: 15px;
    }
    
    .admin-btn:hover {
        color: white;
        transform: scale(1.05);
        background: linear-gradient(45deg, #e67e22, #d35400);
    }
    
    .admin-text {
        display: none;
    }
    
    .hamburger {
        margin-right: 10px;
    }
    
    .bar {
        width: 18px;
        height: 2px;
    }
    
    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .feature i {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .soccer-ball {
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .soccer-ball img {
        width: 150px !important;
        height: 150px !important;
        object-fit: contain;
    }
    
    .soccer-ball i {
        font-size: 5rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
        right: 15px;
        align-items: flex-end;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        text-align: right;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
    
    .benefits h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .benefits li {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        padding: 0.5rem 0;
    }
    
    .schedule {
        padding: 3rem 0;
    }
    
    .schedule-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .schedule-header h3 {
        font-size: 1.4rem;
    }
    
    .schedule-details p {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
    
    .registration {
        padding: 3rem 0;
    }
    
    .registration-info {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .registration-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-info li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        justify-content: flex-start;
    }
    
    .registration-form {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 15px;
        font-size: 1.1rem;
        min-height: 50px;
        border-radius: 10px;
        font-weight: 600;
    }
    
    .confirmation-details,
    .next-steps,
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .confirmation-header h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .details-grid {
        gap: 1rem;
    }
    
    .detail-item {
        padding: 0.8rem 0;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .step {
        gap: 0.8rem;
        padding: 1rem 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
        border-radius: 10px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 280px;
        min-height: 44px;
        border-radius: 10px;
        font-weight: 600;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
    
    /* Mobile scroll to top button positioning */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .soccer-ball {
        width: 180px;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .soccer-ball img {
        width: 130px !important;
        height: 130px !important;
        object-fit: contain;
    }
    
    .soccer-ball i {
        font-size: 4rem;
    }
    
    .scroll-indicator {
        bottom: 10px;
        right: 10px;
        align-items: flex-end;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow i {
        font-size: 0.9rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
        text-align: right;
    }
    
    .registration-form,
    .confirmation-details,
    .next-steps,
    .contact-info {
        padding: 1.2rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
    }
}

/* Mobile Touch Enhancements */
.form-group.focused label {
    color: #f39c12;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
    transform: translateY(-1px);
}

.form-group.has-value label {
    color: #27ae60;
    font-weight: 600;
}

/* Mobile Animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Mobile Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Mobile Touch Feedback */
button:active,
.btn:active,
.cta-button:active,
.submit-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.schedule-card:active,
.registration-info:active,
.confirmation-details:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobile Form Enhancements */
.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-group label {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Mobile Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f39c12;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Error States */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile Success States */
.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mobile Card Hover Effects */
@media (hover: hover) {
    .schedule-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .registration-info:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    }
}

/* Mobile Focus Indicators */
button:focus,
.btn:focus,
.cta-button:focus,
.submit-btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* Mobile Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #000, #333);
    }
    
    .cta-button,
    .submit-btn {
        background: #000;
        border: 2px solid #fff;
    }
    
    .nav-link {
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }
}

/* Mobile Dark Mode Support - Disabled */
/* @media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .about,
    .registration {
        background: var(--card-bg);
    }
    
    .schedule-card,
    .registration-form,
    .confirmation-details,
    .next-steps,
    .contact-info {
        background: var(--card-bg);
        color: var(--text-color);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        background: var(--card-bg);
        color: var(--text-color);
        border-color: #555;
    }
} */

/* Admin Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    position: relative;
    padding: 0;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #f39c12;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.login-logo {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.modal-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.login-logo h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-logo p {
    color: #f39c12;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login-form {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
}

.login-info {
    margin-bottom: 2rem;
    text-align: center;
}

.login-info p {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: white;
    color: #333;
}

.login-form input:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.login-btn {
    width: 100%;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 600px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .login-logo {
        padding: 2rem 1rem;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .login-logo h2 {
        font-size: 1.8rem;
    }
    
    .login-logo p {
        font-size: 1.1rem;
    }
    
    .login-form {
        padding: 2rem;
        border-radius: 0 0 20px 20px;
    }
    
    .login-info {
        margin-bottom: 1.5rem;
    }
    
    .login-info p {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .modal-body {
        padding: 0;
    }
    
    .modal-header {
        padding: 0;
    }
    
    .close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 3% auto;
        width: 98%;
    }
    
    .login-form {
        padding: 1.5rem;
    }
    
    .login-info {
        margin-bottom: 1rem;
    }
    
    .login-info p {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
    
    .login-logo {
        padding: 1.5rem 1rem;
    }
    
    .modal-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-logo h2 {
        font-size: 1.5rem;
    }
    
    .login-logo p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .action-buttons,
    .scroll-to-top,
    .modal {
        display: none;
    }
    
    .confirmation-page {
        max-width: none;
        padding: 0;
    }
    
    .confirmation-details,
    .next-steps,
    .contact-info {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.success-modal-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.next-training {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.next-training h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.next-training .date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-success {
    background: #f39c12;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-success:hover {
    background: #e67e22;
}

/* Error Modal */
.error-modal {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #e74c3c;
}

.error-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.error-modal-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.error-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.error-list li {
    background: #f8d7da;
    color: #721c24;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
}

.error-actions {
    display: flex;
    justify-content: center;
}

.btn-error {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-error:hover {
    background: #c0392b;
}

