/* ===== CSS Variables & Reset ===== */
:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a6872e;
    --white: #ffffff;
    --white-soft: #f5f5f0;
    --gray: #888888;
    --gray-dark: #333333;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(201, 168, 76, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.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 ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.7) 0%,
        rgba(10,10,10,0.5) 40%,
        rgba(10,10,10,0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-top {
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.hero-title span {
    display: block;
    font-weight: 400;
    font-size: 0.5em;
    color: var(--gold-light);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.82rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-header h2 .highlight {
    color: var(--gold);
    font-weight: 400;
    font-size: 0.7em;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-section { background: var(--black); }
.services-women { background: var(--black-light); }
.bridal-section { background: var(--black); }
.facial-section { background: var(--black-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transition: height 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before { height: 100%; }

.service-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-soft);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

/* ===== Combos ===== */
.combos-section { background: var(--black); }

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.combo-card {
    background: linear-gradient(145deg, var(--black-card), #111);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.combo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
    transition: var(--transition);
}

.combo-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.combo-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.combo-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.combo-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.combo-item {
    background: rgba(201,168,76,0.08);
    color: var(--gray);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 400;
    border: 1px solid rgba(201,168,76,0.06);
}

/* ===== Gallery ===== */
.gallery-section { background: var(--black-light); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Feature: first two items span larger */
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2/1; }

/* ===== Testimonials ===== */
.testimonials-section { background: var(--black); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.author-role {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===== Contact ===== */
.contact-section { background: var(--black-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    transition: color var(--transition);
}

.contact-card a:hover { color: var(--gold); }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.12);
    min-height: 380px;
}

.map-container iframe { display: block; min-height: 380px; }

/* ===== Footer ===== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 40px 0;
}

.footer-content { text-align: center; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo span { color: var(--gold); font-weight: 400; }

.footer-content p {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .combos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201,168,76,0.1);
    }

    .nav-links.open { right: 0; }

    .nav-links li a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hamburger { display: flex; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }

    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-card { padding: 20px 16px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 220px; justify-content: center; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .combos-grid { grid-template-columns: 1fr; }
    .hero-subtitle-top { font-size: 0.8rem; letter-spacing: 4px; }
    .nav-container { padding: 0 16px; }
    .container { padding: 0 16px; }
}
