:root {
    --primary: #E89204;
    --primary-hover: #D48400;
    --primary-light: #FFF4E6;
    --primary-dark: #B87500;
    --primary-glow: rgba(232, 146, 4, 0.25);
    
    --success: #10B981;
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
    
    --bg-body: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-light: #FFF9F0;
    --bg-section: #FFF5EB;
    
    --text-main: #2D2D2D;
    --text-muted: #757575;
    --text-light: #999999;
    --text-white: #FFFFFF;
    
    --border: #FFE5C0;
    --border-light: rgba(232, 146, 4, 0.15);
    --border-dark: rgba(232, 146, 4, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(232, 146, 4, 0.08);
    --shadow-md: 0 8px 24px rgba(232, 146, 4, 0.15);
    --shadow-lg: 0 16px 40px rgba(232, 146, 4, 0.2);
    --shadow-xl: 0 24px 60px rgba(232, 146, 4, 0.25);
    --shadow-orange: 0 8px 24px rgba(232, 146, 4, 0.3);
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ============================================ BUTTONS ============================================ */
.btn {
    padding: 12px 24px; border: none; border-radius: var(--radius-md);
    font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer;
    transition: var(--transition); text-decoration: none; display: inline-flex;
    align-items: center; justify-content: center; gap: 8px; white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }

.btn-primary { background: var(--primary); color: var(--text-white); box-shadow: var(--shadow-orange); font-weight: 700; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232, 146, 4, 0.4); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--text-white); transform: translateY(-2px); }

.btn-ghost { background: rgba(232, 146, 4, 0.1); color: var(--primary); border: 1px solid var(--border-dark); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--primary); color: var(--text-white); border-color: var(--primary); transform: translateY(-2px); }

.btn-white { background: var(--text-white); color: var(--primary); box-shadow: var(--shadow-md); font-weight: 700; }
.btn-white:hover { background: var(--primary); color: var(--text-white); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-ghost-white { background: transparent; color: var(--text-white); border: 1px solid rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: var(--text-white); color: var(--primary); border-color: var(--text-white); transform: translateY(-2px); }

/* ============================================ NAVBAR ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000; padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.99); box-shadow: var(--shadow-md); padding: 12px 0; }

.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo img { height: 36px; width: auto; object-fit: contain; }

.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a {
    color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 14px;
    transition: var(--transition); position: relative; padding: 4px 0;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--primary); border-radius: var(--radius-full); transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active-link { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active-link::after { width: 100%; }

.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-user { display: flex; align-items: center; gap: 10px; padding-right: 12px; border-right: 1px solid var(--border-light); margin-right: 4px; }
.nav-user-avatar { width: 32px; height: 32px; background: var(--primary); color: var(--text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.nav-user-name { font-size: 14px; font-weight: 600; color: var(--text-main); }

.btn-mobile { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; padding: 4px; }

/* ============================================ HERO ============================================ */
.hero {
    margin-top: 70px; padding: 100px 24px 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-body) 50%, var(--primary-light) 100%);
    position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232, 146, 4, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 146, 4, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}
.hero-bg-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle { position: absolute; border-radius: 50%; background: rgba(232, 146, 4, 0.08); animation: float 20s infinite ease-in-out; }
.hero-circle.circle-1 { width: 600px; height: 600px; top: -250px; right: -150px; }
.hero-circle.circle-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; animation-delay: 5s; }
.hero-circle.circle-3 { width: 250px; height: 250px; top: 40%; left: 40%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 1; width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--primary); color: var(--text-white); border: 2px solid var(--primary); border-radius: var(--radius-full); font-size: 13px; font-weight: 700; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.hero-content h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; color: var(--text-main); }
.text-highlight { color: var(--primary); position: relative; display: inline-block; text-shadow: 0 2px 20px rgba(232, 146, 4, 0.3); }
.text-highlight::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 12px; background: rgba(232, 146, 4, 0.15); border-radius: 4px; z-index: -1; }

.hero-content > p { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 2px solid var(--border-light); }
.stat-item { display: flex; align-items: center; gap: 14px; }
.stat-icon { width: 52px; height: 52px; background: var(--primary); color: var(--text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-md); }
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 26px; font-weight: 800; line-height: 1; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper { position: relative; }
.hero-logo-container {
    width: 320px; height: 320px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px rgba(232, 146, 4, 0.3), 0 0 0 8px rgba(232, 146, 4, 0.15);
    animation: float-logo 6s ease-in-out infinite; position: relative; z-index: 1; overflow: hidden;
}
.hero-main-logo { width: 75%; height: 75%; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
.hero-main-icon { font-size: 120px; color: var(--text-white); filter: drop-shadow(0 10px 20px rgba(232, 146, 4, 0.3)); }
@keyframes float-logo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.floating-badge {
    position: absolute; background: var(--primary); color: var(--text-white);
    padding: 10px 18px; border-radius: var(--radius-md); font-size: 13px; font-weight: 700;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px;
    animation: float-badge 4s infinite ease-in-out; z-index: 2;
}
.badge-1 { top: 10%; left: -10%; animation-delay: 0s; }
.badge-2 { top: 0%; right: -5%; animation-delay: 1s; }
.badge-3 { bottom: 10%; right: -10%; animation-delay: 2s; }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--primary); font-size: 12px; font-weight: 600;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: bounce-scroll 2s infinite; letter-spacing: 2px; text-transform: uppercase;
}
@keyframes bounce-scroll { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================ SECTIONS GENERAL ============================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { 
    display: inline-block; padding: 8px 20px; background: var(--primary); color: var(--text-white);
    border: 2px solid var(--primary); border-radius: var(--radius-full); font-size: 12px; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--text-main); margin-bottom: 16px; letter-spacing: -0.5px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ============================================ ABOUT ============================================ */
.about-section { background: var(--bg-light); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; }
.about-content p { margin-bottom: 24px; }
.about-content strong { color: var(--text-main); }
.about-highlight {
    display: inline-block; margin-top: 32px; padding: 16px 32px;
    background: var(--primary-light); border-left: 4px solid var(--primary);
    border-radius: var(--radius-md); font-weight: 600; color: var(--text-main); font-size: 1.15rem;
}

/* ============================================ LAYANAN ============================================ */
.layanan-section { background: var(--bg-body); }
.layanan-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 20px; background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border);
    border-radius: var(--radius-full); font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.filter-btn:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--text-white); box-shadow: var(--shadow-md); border-color: var(--primary); }

.layanan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.layanan-card {
    background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light);
    display: flex; flex-direction: column; height: 100%;
}
.layanan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.layanan-image {
    height: 140px; 
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-section) 100%);
    display: flex; align-items: center; justify-content: center; 
    font-size: 48px; color: var(--primary);
    position: relative; transition: var(--transition);
}
.layanan-card:hover .layanan-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-white);
}
.layanan-image i { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.layanan-card:hover .layanan-image i { transform: scale(1.15) rotate(-5deg); }

.layanan-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.layanan-category { 
    display: inline-block; padding: 4px 12px; background: var(--primary-light); color: var(--primary); 
    border-radius: var(--radius-full); font-size: 11px; font-weight: 700; margin-bottom: 12px; 
    text-transform: uppercase; letter-spacing: 0.5px; width: fit-content;
}
.layanan-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); line-height: 1.3; }
.layanan-content p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.6; flex: 1; }

.layanan-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.layanan-duration { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.layanan-duration i { color: var(--primary); }

.layanan-price {
    font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; letter-spacing: -0.5px;
}

.layanan-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-light);
}

.btn-wa {
    background: var(--whatsapp); color: var(--text-white); border: 1px solid var(--whatsapp);
}
.btn-wa:hover { background: var(--whatsapp-hover); border-color: var(--whatsapp-hover); color: var(--text-white); transform: translateY(-2px); }

.btn-wa-outline {
    background: transparent; color: var(--whatsapp); border: 1px solid var(--whatsapp);
}
.btn-wa-outline:hover { background: var(--whatsapp); color: var(--text-white); transform: translateY(-2px); }

/* ============================================ PREMIUM CARE ============================================ */
.premium-care-section { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white); position: relative; overflow: hidden;
}
.premium-care-section::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: rgba(255, 255, 255, 0.05); border-radius: 50%; pointer-events: none;
}
.premium-care-section .section-header h2 { color: var(--text-white); }
.premium-care-section .section-header p { color: rgba(255,255,255,0.9); }
.premium-care-section .section-tag { background: rgba(255,255,255,0.15); color: var(--text-white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px); }

.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; margin-top: 48px; }
.care-card { 
    background: rgba(255, 255, 255, 0.95); border-radius: var(--radius-lg); padding: 36px 32px; 
    box-shadow: var(--shadow-xl); transition: var(--transition); border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(10px);
}
.care-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); background: #ffffff; }
.care-icon { 
    width: 64px; height: 64px; background: var(--primary-light); color: var(--primary);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 24px; 
}
.care-card h3 { color: var(--text-main); font-size: 1.35rem; margin-bottom: 20px; font-weight: 700; }
.care-list { list-style: none; padding: 0; margin: 0; color: var(--text-muted); line-height: 1.7; }
.care-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.care-list li i { color: var(--success); margin-top: 4px; flex-shrink: 0; }

/* ============================================ BARBER (DESAIN PREMIUM MODERN) ============================================ */
.barber-section { 
    background: var(--bg-light); 
    position: relative;
    overflow: hidden;
}
.barber-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
}
.barber-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.barber-section .section-container {
    position: relative;
    z-index: 1;
}
.barber-section .section-header h2 {
    color: var(--text-white);
}
.barber-section .section-header p {
    color: rgba(255,255,255,0.9);
}
.barber-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.barber-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 32px; 
}

.barber-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.barber-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.barber-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-section) 100%);
}
.barber-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Wajah di posisi atas-tengah, tidak ke bawah */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.barber-card:hover .barber-image-wrapper img {
    transform: scale(1.1);
}

.barber-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    pointer-events: none;
    transition: var(--transition);
}
.barber-card:hover .barber-image-overlay {
    height: 70%;
    background: linear-gradient(to top, rgba(232, 146, 4, 0.8) 0%, rgba(232, 146, 4, 0.4) 50%, transparent 100%);
}

/* Rating Badge di pojok kanan atas foto */
.barber-rating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 2;
    transition: var(--transition);
}
.barber-rating-badge i {
    color: #FBBF24;
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}
.barber-rating-badge span {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
}
.barber-card:hover .barber-rating-badge {
    background: var(--primary);
    transform: scale(1.1);
}
.barber-card:hover .barber-rating-badge i {
    color: var(--text-white);
}
.barber-card:hover .barber-rating-badge span {
    color: var(--text-white);
}

.barber-info {
    padding: 28px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.barber-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}
.barber-specialty {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.barber-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
    margin-bottom: 20px;
}

.barber-reviews-info,
.barber-cabang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.barber-reviews-info i,
.barber-cabang i {
    color: var(--primary);
    font-size: 16px;
}

/* Tombol Booking Barber */
.btn-book-barber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(232, 146, 4, 0.3);
    margin-top: auto;
}
.btn-book-barber:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 146, 4, 0.5);
}
.btn-book-barber i {
    font-size: 18px;
}

/* Fallback Avatar */
.barber-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    font-size: 120px;
    font-weight: 800;
    letter-spacing: -4px;
}

@media (max-width: 768px) {
    .barber-section::before {
        height: 300px;
    }
    .barber-image-wrapper {
        height: 320px;
    }
    .barber-image-wrapper img {
        object-position: center 15%; /* Adjust untuk mobile */
    }
}
/* ============================================ TESTIMONI ============================================ */
.testimoni-section { background: var(--bg-body); }
.testimoni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimoni-card {
    background: var(--bg-card); padding: 28px; border-radius: var(--radius-lg);
    border: 2px solid var(--border-light); transition: var(--transition); position: relative;
}
.testimoni-card::before { content: '"'; position: absolute; top: 20px; right: 24px; font-size: 80px; color: var(--primary); font-family: Georgia, serif; line-height: 1; opacity: 0.15; }
.testimoni-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.testimoni-rating { margin-bottom: 16px; display: flex; gap: 3px; }
.testimoni-rating .fa-star { color: #E5E5E5; font-size: 16px; }
.testimoni-rating .fa-star.active { color: var(--primary); }
.testimoni-text { font-size: 15px; line-height: 1.8; color: var(--text-main); margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.testimoni-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 2px solid var(--border-light); }
.author-avatar { width: 48px; height: 48px; background: var(--primary); color: var(--text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 15px; color: var(--text-main); font-weight: 700; }
.author-info span { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================ LOCATIONS ============================================ */
.locations-section { background: var(--bg-light); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.location-card {
    background: var(--bg-card); padding: 24px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); display: flex; gap: 20px; align-items: flex-start;
    transition: var(--transition); border: 2px solid var(--border-light);
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.location-icon {
    width: 56px; height: 56px; background: var(--primary); color: var(--text-white);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0; transition: var(--transition); box-shadow: var(--shadow-md);
}
.location-card:hover .location-icon { background: var(--primary-hover); box-shadow: var(--shadow-lg); }

.location-info { flex: 1; min-width: 0; }
.location-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.location-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.location-info p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; width: 16px; }

.location-info a:not(.btn-location) { 
    color: var(--primary); text-decoration: none; font-weight: 600; transition: var(--transition); 
}
.location-info a:not(.btn-location):hover { 
    color: var(--primary-hover); text-decoration: underline; 
}

.location-info a.btn-location { color: var(--text-white) !important; }
.location-info a.btn-location:hover { color: var(--text-white) !important; text-decoration: none; }

.btn-location {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 18px;
    background: var(--primary); border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 700; text-decoration: none; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.btn-location:hover { 
    background: var(--primary-hover); 
    box-shadow: var(--shadow-md); 
    transform: translateY(-2px);
}

/* ============================================ CTA ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-white); text-align: center; padding: 100px 24px; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; color: var(--text-white); }
.cta-content p { font-size: 18px; margin-bottom: 36px; line-height: 1.6; color: rgba(255,255,255,0.95); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================ FOOTER ============================================ */
footer { background: var(--primary); color: var(--text-white); padding: 60px 24px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--text-white); }
.footer-brand p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; background: rgba(255,255,255,0.2); color: var(--text-white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none;
    transition: var(--transition); font-size: 18px;
}
.footer-social a:hover { background: var(--text-white); color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.footer-links h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 14px; }
.footer-links li i { color: var(--text-white); font-size: 14px; width: 16px; }
.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--text-white); padding-left: 4px; }
.footer-bottom { padding-top: 32px; border-top: 2px solid rgba(255,255,255,0.2); text-align: center; color: rgba(255,255,255,0.9); font-size: 13px; }
.footer-dev { margin-top: 8px; font-size: 12px; opacity: 0.9; }

/* ============================================ UTILITIES & ANIMATIONS ============================================ */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px;
    background: var(--primary); color: var(--text-white); border: 3px solid var(--text-white); border-radius: 50%;
    cursor: pointer; font-size: 20px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999;
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(232, 146, 4, 0.5); }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 48px; opacity: 0.2; margin-bottom: 16px; display: block; color: var(--primary); }

.floating-wa {
    position: fixed; bottom: 32px; left: 32px; z-index: 998;
    width: 60px; height: 60px; background: var(--whatsapp); color: var(--text-white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition); text-decoration: none;
    animation: pulse-wa 2s infinite;
}
.floating-wa:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-content > p { margin: 0 auto 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-container { padding: 0 16px; }
    section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    
    .nav-menu {
        display: none; position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.99); backdrop-filter: blur(16px);
        flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-xl);
        border-top: 2px solid var(--border-light); z-index: 999;
        transform: translateY(-150%); transition: transform 0.3s ease;
    }
    .nav-menu.active { display: flex; transform: translateY(0); }
    .nav-menu li { width: 100%; border-bottom: 1px solid var(--border-light); }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a { display: block; padding: 16px 0; font-size: 16px; color: var(--text-main); }
    .nav-menu a:hover { color: var(--primary); }
    .btn-mobile { display: block; z-index: 1001; }
    
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-content h1 { font-size: 32px; }
    .hero-content > p { font-size: 16px; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .stat-item { width: 100%; max-width: 280px; justify-content: flex-start; }
    
    .layanan-grid, .barber-grid, .testimoni-grid, .locations-grid, .care-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .barber-image-wrapper { height: 300px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand p { margin: 0 auto 24px; }
    .footer-social { justify-content: center; }
    .footer-links li { justify-content: center; }
    .hero-scroll-indicator { display: none; }
    
    .floating-wa { bottom: 24px; left: 24px; width: 56px; height: 56px; font-size: 28px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .hero-buttons, .cta-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .btn-lg { padding: 14px 24px; font-size: 15px; }
    .layanan-filter { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .back-to-top { bottom: 20px; right: 20px; width: 48px; height: 48px; }
    .nav-user { display: none; }
}