#home {
        min-height: 100vh;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                    url('/images/Latar_Barber.png') center/cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .btn-booking {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        color: #fff;
        padding: 15px 50px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s;
    }

    .btn-booking:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-3px);
        color: #fff;
    }

    .hero-info {
        background: rgba(30,30,30,0.2);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        border: 3px solid rgba(255, 255, 255, 0.3 );
        padding: 25px;
        margin-top: 50px;
        width: 75%;
        display: flex;
        gap: 150px;
        justify-content: center;
    }

    .hero-info-item { text-align: center; }
    .hero-info-item i {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 8px;
        display: block;
    }
    .hero-info-item small {
        color: rgba(255,255,255,0.6);
        font-size: 0.75rem;
    }
    .hero-info-item p {
        margin: 0;
        font-size: 1.2rem;
    }

    /* SERVICE SECTION */
    #service {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 20px;
        background: #0f0f0f;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .section-title p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .service-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s;
    }

    .service-card:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-5px);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 1.5rem;
    }

    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .service-card .price {
        color: #4ade80;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .service-card .time {
        color: rgba(255,255,255,0.5);
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .service-card p {
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
        margin: 0;
    }

    /* GALLERY SECTION */
    #gallery {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        background: #0a0a0a;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 900px;
        margin: 0 auto;
    }

    .gallery-item {
        aspect-ratio: 4/3;
        overflow: hidden;
        border-radius: 10px;
    }

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

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* REVIEW SECTION */
    #review {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 20px;
        background: #0f0f0f;
    }

    .review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .review-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 15px;
        padding: 20px;
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .review-avatar {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .review-meta h5 {
        font-size: 0.95rem;
        margin: 0;
    }

    .review-meta .stars {
        color: #fbbf24;
        font-size: 0.8rem;
    }

    .review-card p {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
    }

    /* CONTACT SECTION */
    #contact {
        padding: 50px 20px;
        background: #0a0a0a;
    }

    .contact-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        padding: 12px 15px;
        color: #fff;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .contact-form textarea {
        min-height: 100px;
        resize: none;
    }

    .btn-send {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .btn-send:hover {
        background: rgba(255,255,255,0.2);
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px;
        background: #0f0f0f;
        border-top: 1px solid rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
    /* Hero */
    .hero-title { 
        font-size: 2rem; 
    }
    
    .hero-info { 
        gap: 20px;
        width: 95%;
        flex-direction: column;
        align-items: center;
    }

    /* Service */
    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* Gallery */
    .gallery-grid { 
        grid-template-columns: 1fr; 
    }

    /* Review */
    .review-grid {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }

    /* Contact */
    .contact-wrapper { 
        grid-template-columns: 1fr; 
    }

    #service,
    #gallery,
    #review,
    #contact {
        overflow-x: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }
    }