/* ===========================================
   SFNAIL ART - PREMIUM NAIL ART SALON
   Design System & Styles
   =========================================== */

/* --- CSS RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF9FB;
    color: #1A1A2E;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- DESIGN TOKENS / CSS VARIABLES --- */
:root {
    /* Primary Colors */
    --color-white: #FFFFFF;
    --color-soft-pink: #F8BBD0;
    --color-rose-pink: #EC4899;
    --color-bg: #FFF9FB;
    --color-card: #FFFFFF;
    
    /* Text Colors */
    --color-text: #1A1A2E;
    --color-text-light: #6B7280;
    --color-text-lighter: #9CA3AF;
    
    /* Accent Variations */
    --color-rose-light: #FDF2F8;
    --color-rose-dark: #BE185D;
    --color-pink-light: #FCE7F3;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(236, 72, 153, 0.08);
    --shadow-lg: 0 10px 40px rgba(236, 72, 153, 0.12);
    --shadow-xl: 0 20px 60px rgba(236, 72, 153, 0.15);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(236, 72, 153, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.text-accent {
    color: var(--color-rose-pink);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- SECTION STYLES --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--color-rose-light);
    color: var(--color-rose-pink);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-rose-pink), #DB2777);
    color: var(--color-white);
    border-color: var(--color-rose-pink);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #DB2777, var(--color-rose-dark));
    border-color: #DB2777;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-rose-pink);
    border-color: var(--color-rose-pink);
}

.btn-outline:hover {
    background: var(--color-rose-light);
    border-color: var(--color-rose-dark);
    color: var(--color-rose-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text {
    color: var(--color-rose-pink);
}

.logo-text-alt {
    color: var(--color-text);
    font-weight: 400;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-rose-pink);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-rose-pink);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 4px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #FFF9FB 0%, #FDF2F8 50%, #FFF9FB 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.1);
    color: var(--color-rose-pink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-rose-pink);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    font-weight: 400;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: var(--transition-slow);
}

.hero-img-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.hero-img-decor {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-soft-pink);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

.hero-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.hero-floating-badge i {
    color: var(--color-rose-pink);
    font-size: 1.2rem;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===========================================
   KEUNGGULAN SECTION
   =========================================== */
.keunggulan {
    background: var(--color-white);
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.keunggulan-card {
    background: var(--color-card);
    border: 1px solid rgba(236, 72, 153, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.keunggulan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(236, 72, 153, 0.15);
}

.keunggulan-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.keunggulan-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.keunggulan-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===========================================
   LAYANAN SECTION
   =========================================== */
.layanan {
    background: var(--color-bg);
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.layanan-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    border: 1px solid rgba(236, 72, 153, 0.04);
}

.layanan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.layanan-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.layanan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.layanan-card:hover .layanan-img img {
    transform: scale(1.08);
}

.layanan-info {
    padding: 24px;
}

.layanan-info h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.layanan-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.layanan-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

.layanan-meta i {
    color: var(--color-rose-pink);
    margin-right: 4px;
}

/* ===========================================
   GALERI SECTION
   =========================================== */
.galeri {
    background: var(--color-white);
}

.galeri-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(236, 72, 153, 0.15);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--color-rose-pink), #DB2777);
    color: var(--color-white);
    border-color: var(--color-rose-pink);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeri-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-category {
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
}

.galeri-expand {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeri-expand:hover {
    background: var(--color-rose-pink);
}

.galeri-cta {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===========================================
   HARGA SECTION
   =========================================== */
.harga {
    background: var(--color-bg);
}

.harga-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.harga-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(236, 72, 153, 0.06);
    transition: var(--transition-base);
    position: relative;
}

.harga-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.harga-card.featured {
    border: 2px solid var(--color-rose-pink);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.harga-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.harga-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-rose-pink), #DB2777);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.harga-icon {
    font-size: 2rem;
    color: var(--color-rose-pink);
    margin-bottom: 20px;
}

.harga-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.harga-price {
    margin-bottom: 24px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-rose-pink);
    display: block;
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

.harga-list {
    text-align: left;
    margin-bottom: 28px;
}

.harga-list li {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.harga-list li i {
    color: var(--color-rose-pink);
    font-size: 0.8rem;
}

.harga-note {
    text-align: center;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-lighter);
}

.harga-note i {
    color: var(--color-rose-pink);
}

/* ===========================================
   TESTIMONI SECTION
   =========================================== */
.testimoni {
    background: var(--color-white);
}

.testimoni-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimoni-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimoni-card {
    min-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.testimoni-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimoni-review {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.testimoni-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimoni-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-soft-pink), var(--color-rose-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimoni-name {
    text-align: left;
}

.testimoni-name strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
}

.testimoni-name span {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

.testimoni-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testimoni-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-soft-pink);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimoni-dot.active {
    background: var(--color-rose-pink);
    width: 28px;
    border-radius: 4px;
}
/* ===========================================
   INSTAGRAM SECTION
   =========================================== */
.instagram {
    background: var(--color-bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.instagram-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(236, 72, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: white;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq {
    background: var(--color-white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
    padding: 8px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-rose-pink);
}

.faq-question i {
    transition: var(--transition-base);
    color: var(--color-rose-pink);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===========================================
   BOOKING SECTION
   =========================================== */
.booking {
    background: linear-gradient(180deg, var(--color-bg) 0%, #FDF2F8 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-form-container {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(236, 72, 153, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(236, 72, 153, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: #FCF9FA;
    transition: var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-rose-pink);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
    background: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Booking Info Sidebar */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-info-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(236, 72, 153, 0.04);
    transition: var(--transition-base);
}

.booking-info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.booking-info-card i {
    font-size: 1.5rem;
    color: var(--color-rose-pink);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-rose-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.booking-info-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.booking-info-card p {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    line-height: 1.5;
}

/* ===========================================
   LOKASI / MAPS SECTION
   =========================================== */
.lokasi {
    background: var(--color-white);
}

.lokasi-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.lokasi-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.lokasi-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.lokasi-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
}

.lokasi-card {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition-base);
    border: 1px solid rgba(236, 72, 153, 0.04);
}

.lokasi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lokasi-card i {
    font-size: 1.2rem;
    color: var(--color-rose-pink);
    margin-top: 2px;
    flex-shrink: 0;
}

.lokasi-card h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.lokasi-card p,
.lokasi-card a {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    line-height: 1.5;
}

.lokasi-card a:hover {
    color: var(--color-rose-pink);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: #1A1A2E;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text-alt {
    color: rgba(255, 255, 255, 0.9);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-rose-pink);
    color: white;
    transform: translateY(-3px);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-contact ul li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.footer-nav ul li a:hover {
    color: var(--color-rose-pink);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact ul li i {
    color: var(--color-rose-pink);
    font-size: 0.85rem;
    width: 20px;
}

.footer-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===========================================
   FLOATING WHATSAPP
   =========================================== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ===========================================
   STICKY BOOKING BUTTON
   =========================================== */
.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 998;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-booking.visible {
    transform: translateY(0);
}

.btn-sticky {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

/* ===========================================
   LOADING ANIMATION
   =========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-rose-pink);
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--color-soft-pink);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-soft-pink), var(--color-rose-pink));
    animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ===========================================
   AOS CUSTOM OVERRIDES
   =========================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
/* ===========================================
   TRENDING SECTION
   =========================================== */
.trending { background: var(--color-bg); }

.trending-carousel {
    position: relative;
    overflow: hidden;
}

.trending-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 8px 0;
}

.trending-card {
    min-width: 260px;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(236,72,153,0.04);
    transition: var(--transition-base);
    position: relative;
    flex-shrink: 0;
}

.trending-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    color: white;
    z-index: 2;
    letter-spacing: 0.5px;
}

.trending-img {
    height: 200px;
    overflow: hidden;
}

.trending-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.trending-card:hover .trending-img img {
    transform: scale(1.08);
}

.trending-info {
    padding: 20px;
}

.trending-info h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.trending-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    margin-bottom: 12px;
}

.trending-meta span i {
    margin-right: 4px;
}

.trending-price {
    margin-bottom: 16px;
}

.trending-price .price {
    font-size: 1.3rem;
}

.trending-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.trending-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(236,72,153,0.15);
    background: var(--color-white);
    color: var(--color-rose-pink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.trending-arrow:hover {
    background: var(--color-rose-pink);
    color: white;
    border-color: var(--color-rose-pink);
}

@media (max-width: 600px) {
    .trending-card { min-width: 220px; }
    .trending-img { height: 160px; }
}

/* ===========================================
   VIDEO SHOWCASE
   =========================================== */
.video-showcase { background: var(--color-white); }

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 9/16;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-wrapper:hover video {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition-base);
    opacity: 0;
}

.video-wrapper:hover .video-play-btn {
    opacity: 1;
}

.video-wrapper.playing .video-play-btn {
    opacity: 0;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .video-play-btn { width: 44px; height: 44px; font-size: 1rem; }
}