* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e1e2a;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
}

.logo span {
    color: white;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ========== RESPONSIVE NAVBAR ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        margin: 5px;
        width: 80%;
        text-align: center;
    }
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    margin: 10px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #d4af37;
    color: #1e1e2a;
}

.btn-primary:hover {
    background: #c5a028;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #1e1e2a;
}

.rating {
    margin-top: 40px;
    font-size: 1.2rem;
}

.rating i {
    color: #d4af37;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats */
.stats {
    background: #1e1e2a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #d4af37;
}

@media (max-width: 768px) {
    .stats .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ========== GRID RESPONSIVE ========== */
.services-grid, .spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Barber Grid */
.barber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .barber-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid, .spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonial Grid */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

@media (min-width: 992px) {
    .testimonial-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 12px;
    }
    
    .step {
        width: 80%;
        text-align: center;
    }
}

.step {
    background: #d4af37;
    color: #1e1e2a;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.step:hover {
    transform: scale(1.05);
}

.service-card, .spec-card, .barber-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover, .spec-card:hover, .barber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.service-card i, .spec-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.barber-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: block;
    border: 4px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.barber-card:hover .barber-img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-booking-wa {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-booking-wa:hover {
    transform: scale(1.05);
    background: #128C7E;
}

.price-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: #d4af37;
    color: white;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.price-table {
    max-width: 600px;
    margin: 0 auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

.price-row:hover {
    background: #f8f9fa;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .price-row {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f0f0f0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.05);
}

.testimonial-badge {
    padding: 15px 20px 0 20px;
}

.haircut-type {
    display: inline-block;
    background: #d4af37;
    color: #1e1e2a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.testimonial-card p {
    padding: 0 20px;
    font-style: italic;
    color: #555;
    margin: 12px 0;
    font-size: 0.95rem;
}

.testimonial-card h4 {
    padding: 0 20px;
    font-weight: 700;
    color: #1e1e2a;
}

.testimonial-card .stars {
    padding: 0 20px;
    margin: 8px 0;
    color: #d4af37;
}

.barber-name {
    display: block;
    padding: 0 20px 20px 20px;
    color: #888;
    font-size: 0.8rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1e1e2a;
}

.text-center {
    text-align: center;
}

.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}

.float-wa:hover {
    transform: scale(1.05);
    background: #128C7E;
}

@media (max-width: 768px) {
    .float-wa {
        padding: 10px 15px;
        bottom: 15px;
        right: 15px;
    }
    
    .float-wa span {
        display: inline;
    }
}

/* ========== FOOTER YANG SUDAH DIPERBAIKI UNTUK HP ========== */
footer {
    background: #0a0a0f;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Perbaikan untuk HP - semua konten rata kiri dan rapi */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: left;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-col h3 {
        justify-content: flex-start;
    }
    
    .footer-badges {
        justify-content: flex-start;
    }
    
    .jam-operasional li {
        justify-content: space-between;
    }
    
    .status-buka {
        margin: 0;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .contact-text {
        text-align: left;
    }
}

.footer-col h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.jam-operasional {
    list-style: none;
    margin-bottom: 20px;
}

.jam-operasional li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.jam-operasional li span:first-child {
    font-weight: 500;
}

.jam-operasional li span:last-child {
    color: #d4af37;
}

.status-buka {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #25D366;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-icon i {
    color: #d4af37;
    font-size: 1rem;
}

.contact-item:hover .contact-icon {
    background: #d4af37;
}

.contact-item:hover .contact-icon i {
    color: #0a0a0f;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-text span, .contact-text a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-text a:hover {
    color: #d4af37;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.socials a i {
    color: #d4af37;
    font-size: 1.1rem;
}

.socials a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.socials a:hover i {
    color: #0a0a0f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: #777;
    font-size: 0.75rem;
}

/* AOS Override - Pastikan animasi tetap jalan di HP */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* HP tetap dapat animasi */
@media screen {
    [data-aos] {
        transition-timing-function: ease;
    }
}