* { font-family: 'Poppins', sans-serif; }

.hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 60px;
    width: 100%;
    background-image: url('https://nextgengym.fitness/wp-content/uploads/2025/10/NextGen-Gym_Front-page-1200x720.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,0,0,0.3)); z-index: -1; }

.hero-content {
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    padding: 2rem;
    max-width: 100%;
    width: 100%;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff0000;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    word-wrap: break-word;
}

.about-section { 
    background: #0a0a0a; 
    padding: 4rem 0;
    width: 100%;
}

.about-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center;
    width: 100%;
}

.about-content {
    width: 100%;
}

.about-content h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    color: #fff; 
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-content p { 
    font-size: 1rem; 
    color: #bbb; 
    margin-bottom: 2rem; 
    line-height: 1.8;
    text-align: left;
}

.about-highlights { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
    width: 100%;
}

.highlight { 
    display: flex; 
    gap: 1.5rem; 
    align-items: flex-start;
    width: 100%;
}

.highlight-icon { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: #ff0000; 
    min-width: 60px;
    flex-shrink: 0;
}

.highlight h4 { 
    font-size: 1.1rem; 
    color: #fff; 
    margin-bottom: 0.5rem;
}

.highlight p { 
    color: #999; 
    font-size: 0.9rem;
}

.about-image { 
    height: 500px; 
    border-radius: 15px; 
    overflow: hidden; 
    animation: slideInRight 0.8s ease-out;
    width: 100%;
}

.about-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s;
}

.about-image:hover img { 
    transform: scale(1.05);
}

.services-section { 
    background: #111; 
    padding: 4rem 0;
    width: 100%;
}

.section-header { 
    text-align: center; 
    margin-bottom: 4rem;
    width: 100%;
    padding: 0 1rem;
}

.section-header h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    color: #fff; 
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.section-header p { 
    font-size: 1.1rem; 
    color: #bbb;
    word-wrap: break-word;
}

.service-grid-premium { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2.5rem; 
    perspective: 1000px;
    width: 100%;
    padding: 0 1rem;
}

.service-link-premium { text-decoration: none; display: flex; }

.service-card-premium { width: 100%; background: #1a1a1a; border-radius: 20px; overflow: hidden; transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1); position: relative; border: 2px solid #2a2a2a; height: 100%; transform-style: preserve-3d; }

.service-link-premium.featured .service-card-premium { border: 2px solid #ff0000; transform: scale(1.03); box-shadow: 0 25px 50px rgba(255,0,0,0.25); }

.service-card-premium:hover { transform: translateY(-15px) rotateX(2deg); box-shadow: 0 40px 80px rgba(255,0,0,0.2); border-color: #ff3333; }

.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ff0000, #ff6666); color: #fff; padding: 0.5rem 1.2rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; z-index: 10; text-transform: uppercase; letter-spacing: 1px; }

.service-card-inner { display: flex; flex-direction: column; height: 100%; position: relative; }

.service-badge { position: absolute; top: 15px; right: 15px; background: rgba(255,0,0,0.15); color: #ff0000; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; z-index: 5; }

.service-image-premium { height: 250px; overflow: hidden; position: relative; background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }

.service-image-premium img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; filter: brightness(0.9); }

.service-card-premium:hover .service-image-premium img { transform: scale(1.15) rotate(2deg); filter: brightness(1); }

.service-content-premium { flex: 1; padding: 2.5rem 2rem; display: flex; flex-direction: column; }

.service-icon { font-size: 3rem; margin-bottom: 1rem; animation: float 3s ease-in-out infinite; }

.service-content-premium h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 1rem; }

.service-content-premium p { color: #999; font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; }

.service-highlights { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }

.highlight-item { display: flex; gap: 0.8rem; align-items: center; font-size: 0.9rem; color: #bbb; }

.highlight-check { color: #ff0000; font-weight: 700; font-size: 1.1rem; }

.cta-arrow { color: #ff0000; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; }

.service-card-premium:hover .cta-arrow { gap: 1rem; }

.stats-section { 
    background: #0a0a0a; 
    padding: 4rem 0;
    width: 100%;
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.stat-item { text-align: center; padding: 2rem; }

.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: #ff0000; font-weight: 700; margin-bottom: 0.5rem; }

.stat-label { font-size: 1rem; color: #bbb; }

.why-choose-section { background: #111; padding: 6rem 0; }

.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.reason-card { background: #1a1a1a; padding: 2rem; border-radius: 12px; border-left: 4px solid #ff0000; transition: all 0.3s ease; }

.reason-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(255,0,0,0.1); }

.reason-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #ff0000; font-weight: 700; margin-bottom: 0.8rem; }

.reason-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.8rem; }

.reason-card p { color: #999; font-size: 0.95rem; line-height: 1.6; }

.gallery-section { 
    background: #0a0a0a; 
    padding: 4rem 0;
    width: 100%;
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
}

.gallery-grid img { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 12px; 
    transition: all 0.3s ease; 
    cursor: pointer;
    display: block;
}

.gallery-grid img:hover { 
    transform: scale(1.05); 
    box-shadow: 0 15px 35px rgba(255,0,0,0.2);
}

.testimonials-section { 
    background: #111; 
    padding: 4rem 0;
    width: 100%;
}

.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.testimonial-card { background: #1a1a1a; padding: 2rem; border-radius: 12px; border-left: 4px solid #ff0000; }

.testimonial-header { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; align-items: center; }

.testimonial-header img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

.testimonial-info h4 { color: #fff; margin-bottom: 0.3rem; }

.stars { color: #ff0000; font-size: 0.9rem; }

.testimonial-card p { color: #bbb; font-size: 0.95rem; line-height: 1.6; font-style: italic; }

.cta-section { background: linear-gradient(135deg, #ff0000, #cc0000); padding: 4rem 0; text-align: center; }

.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff; margin-bottom: 1rem; }

.cta-section p { font-size: 1.1rem; color: #fff; margin-bottom: 2rem; opacity: 0.9; }

.contact-section { 
    background: #0a0a0a; 
    padding: 4rem 0;
    width: 100%;
}

.contact-elegant { 
    display: flex; 
    flex-direction: column; 
    gap: 4rem;
    width: 100%;
}

.contact-cards { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem; 
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.contact-card-item { background: #1a1a1a; padding: 2.5rem; border-radius: 15px; text-align: center; border: 1px solid #333; transition: all 0.3s ease; position: relative; overflow: hidden; }

.contact-card-item:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #ff0000, #ff6666); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }

.contact-card-item:hover { transform: translateY(-10px); border-color: #ff0000; }

.contact-card-item:hover:before { transform: scaleX(1); }

.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; display: inline-block; }

.contact-card-item h4 { font-size: 1.2rem; color: #fff; margin-bottom: 0.8rem; }

.contact-card-item p { color: #999; font-size: 0.9rem; line-height: 1.6; }

.contact-form-elegant { 
    background: #1a1a1a; 
    padding: 3rem; 
    border-radius: 20px; 
    border: 1px solid #333;
    width: 100%;
    max-width: 100%;
    margin: 0 1rem;
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group { display: flex; flex-direction: column; }

.form-group label { color: #fff; font-weight: 600; margin-bottom: 0.6rem; font-size: 0.95rem; }

.form-group input,
.form-group textarea { padding: 1rem; background: #111; border: 2px solid #333; border-radius: 10px; color: #fff; font-size: 0.95rem; font-family: 'Poppins', sans-serif; transition: all 0.3s ease; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #666; }

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #ff0000; box-shadow: 0 0 15px rgba(255,0,0,0.2); background: #111; }

.form-group-full { display: flex; flex-direction: column; margin-bottom: 1.5rem; }

.form-group-full label { color: #fff; font-weight: 600; margin-bottom: 0.6rem; font-size: 0.95rem; }

.form-group-full textarea { padding: 1rem; background: #111; border: 2px solid #333; border-radius: 10px; color: #fff; font-size: 0.95rem; font-family: 'Poppins', sans-serif; transition: all 0.3s ease; }

.form-group-full textarea:focus { outline: none; border-color: #ff0000; box-shadow: 0 0 15px rgba(255,0,0,0.2); }

.submit-btn-elegant { width: 100%; padding: 1.1rem; background: linear-gradient(135deg, #ff0000, #cc0000); color: #fff; border: none; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; }

.submit-btn-elegant:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,0,0,0.4); }

.location-map-section { 
    background: #0a0a0a; 
    padding: 4rem 0;
    width: 100%;
}

.map-container { 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 20px 60px rgba(255,0,0,0.15);
    width: 100%;
    padding: 0 1rem;
}

.map-container iframe { 
    border-radius: 20px;
    width: 100%;
    display: block;
}

.location-info-pin { position: absolute; bottom: 30px; left: 30px; background: #1a1a1a; border: 2px solid #ff0000; padding: 1.5rem; border-radius: 12px; display: flex; gap: 1rem; align-items: center; max-width: 300px; animation: slideInUp 0.6s ease-out; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

.pin-icon { font-size: 2rem; }

.pin-text h4 { color: #fff; margin-bottom: 0.3rem; font-size: 1rem; }

.pin-text p { color: #bbb; font-size: 0.85rem; }

footer { 
    background: #000; 
    padding: 3rem 0 1rem; 
    border-top: 1px solid #333;
    width: 100%;
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 3rem; 
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.footer-section h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }

.footer-section p { color: #999; font-size: 0.9rem; line-height: 1.8; }

.footer-rating { margin-top: 1rem; display: flex; align-items: center; gap: 0.8rem; }

.footer-rating .stars { color: #ff0000; font-size: 1rem; }

.footer-rating .rating-text { color: #bbb; font-size: 0.9rem; }

.footer-section ul { list-style: none; padding: 0; }

.footer-section li { margin-bottom: 0.8rem; }

.footer-section a { color: #999; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-section a:hover { color: #ff0000; transform: translateX(5px); }

.social-links-footer { display: flex; flex-wrap: wrap; gap: 1rem; }

.social-link { background: rgba(255,0,0,0.1); color: #ff0000; padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.85rem; transition: all 0.3s; border: 1px solid #ff0000; }

.social-link:hover { background: #ff0000; color: #fff; }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #666; font-size: 0.85rem; }

.footer-bottom a { color: #999; transition: color 0.3s; }

.footer-bottom a:hover { color: #ff0000; }

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

@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

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

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

@media (max-width: 768px) {
    .hero { 
        margin-top: 60px;
        min-height: 400px;
        padding: 0 1rem;
    }
    
    .hero-content { padding: 1rem; }
    .hero-content h1 { font-size: 1.8rem; line-height: 1.2; }
    .hero-content p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    
    .about-wrapper { 
        grid-template-columns: 1fr; 
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-content h2 { font-size: 1.8rem; }
    .about-image { height: 300px; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .reasons-grid { 
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .reason-card { padding: 1.5rem; }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item { padding: 1.5rem; }
    .stat-number { font-size: 2.2rem; }
    
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.95rem; }
    
    .service-grid-premium { grid-template-columns: 1fr; }
    .service-card-premium { margin: 0 auto; width: 100%; }
    .service-image-premium { height: 200px; }
    .service-content-premium { padding: 1.5rem; }
    
    .contact-cards { 
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .contact-card-item { padding: 2rem 1.5rem; }
    
    .contact-form-elegant { 
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .location-info-pin { 
        bottom: 15px; 
        left: 15px; 
        max-width: 80%;
        padding: 1rem;
    }
    
    .footer-content { 
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-grid img { height: 200px; }
    
    .testimonials-grid { 
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .testimonial-card { padding: 1.5rem; }
    
    .map-container { height: 300px; }
}

@media (max-width: 480px) {
    header { padding: 0; }
    
    nav { 
        padding: 0.8rem;
        justify-content: space-between;
    }
    
    .logo { font-size: 1.3rem; }
    
    .hamburger { 
        padding: 0.3rem;
    }
    
    .hamburger span { width: 20px; height: 2px; }
    
    .hero { 
        margin-top: 60px;
        min-height: 350px;
        padding: 0;
    }
    
    .hero-content { padding: 1rem 0.8rem; }
    .hero-content h1 { font-size: 1.3rem; margin-bottom: 0.8rem; }
    .hero-content p { font-size: 0.85rem; margin-bottom: 1rem; }
    
    .cta-btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    
    .about-section { padding: 3rem 0; }
    
    .about-wrapper { 
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .about-content h2 { font-size: 1.5rem; }
    .about-content p { font-size: 0.9rem; }
    
    .highlight { gap: 1rem; }
    .highlight-icon { font-size: 2rem; min-width: 50px; }
    .highlight h4 { font-size: 1rem; }
    .highlight p { font-size: 0.85rem; }
    
    .about-image { height: 250px; }
    
    .services-section { padding: 3rem 0; }
    
    .section-header { 
        margin-bottom: 2rem;
        padding: 0 0.8rem;
    }
    
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.85rem; }
    
    .service-grid-premium { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .service-card-premium { border-radius: 12px; }
    .service-image-premium { height: 180px; }
    .service-content-premium { padding: 1.2rem 1rem; }
    .service-badge { top: 10px; right: 10px; font-size: 0.7rem; }
    
    .stats-section { padding: 2.5rem 0; }
    
    .stats-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.8rem;
    }
    
    .stat-item { padding: 1rem 0.5rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.85rem; }
    
    .why-choose-section { padding: 3rem 0; }
    
    .reasons-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.8rem;
    }
    
    .reason-card { 
        padding: 1.2rem;
        border-left-width: 3px;
    }
    
    .reason-number { font-size: 1.6rem; }
    .reason-card h3 { font-size: 1rem; }
    .reason-card p { font-size: 0.85rem; }
    
    .gallery-section { padding: 3rem 0; }
    
    .gallery-grid { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.8rem;
    }
    
    .gallery-grid img { height: 180px; }
    
    .testimonials-section { padding: 3rem 0; }
    
    .testimonials-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .testimonial-card { 
        padding: 1.2rem;
        border-left-width: 3px;
    }
    
    .testimonial-header { gap: 1rem; }
    .testimonial-header img { width: 50px; height: 50px; }
    .testimonial-info h4 { font-size: 0.95rem; }
    .testimonial-card p { font-size: 0.85rem; }
    
    .cta-section { 
        padding: 2.5rem 0;
    }
    
    .cta-section h2 { 
        font-size: 1.5rem; 
        margin-bottom: 0.8rem;
    }
    
    .cta-section p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    
    .contact-section { padding: 3rem 0; }
    
    .section-header { margin-bottom: 2rem; }
    
    .contact-cards { 
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-card-item { 
        padding: 1.2rem;
        text-align: center;
    }
    
    .contact-icon { font-size: 2rem; }
    .contact-card-item h4 { font-size: 1rem; }
    .contact-card-item p { font-size: 0.85rem; }
    
    .contact-form-elegant { 
        padding: 1.2rem;
        margin: 0 0.8rem;
        border-radius: 12px;
    }
    
    .form-row { 
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group label { font-size: 0.85rem; margin-bottom: 0.4rem; }
    .form-group input,
    .form-group textarea { 
        padding: 0.8rem; 
        font-size: 0.9rem;
    }
    
    .form-group-full label { font-size: 0.85rem; }
    .form-group-full textarea { padding: 0.8rem; }
    
    .submit-btn-elegant { 
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .location-map-section { padding: 2.5rem 0; }
    
    .map-container { 
        padding: 0 0.8rem;
        height: 250px;
    }
    
    .map-container iframe { height: 250px; }
    
    .location-info-pin { 
        bottom: 10px;
        left: 10px;
        max-width: 90%;
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .pin-text h4 { font-size: 0.9rem; }
    .pin-text p { font-size: 0.75rem; }
    
    footer { padding: 2rem 0 1rem; }
    
    .footer-content { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .footer-section h4 { 
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p { font-size: 0.85rem; }
    .footer-section a { font-size: 0.85rem; }
    
    .social-links-footer { 
        gap: 0.5rem;
        flex-direction: row;
    }
    
    .social-link { 
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .footer-bottom { 
        padding-top: 1.5rem;
        font-size: 0.75rem;
    }
}
