/* Glamour Studio Web - Luxe Theme */
:root {
    --primary-color: #ec4899;
    --secondary-color: #f59e0b;
    --purple-accent: #8b5cf6;
    --cyan-accent: #06b6d4;
    --bg-dark: #080c14;
    --bg-darker: #05080e;
    --bg-card: rgba(18, 24, 38, 0.85);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-light: #f9fafb;
    --text-muted: #9ca3af;
    --font-main: 'Outfit', sans-serif;
    --font-title: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul { list-style: none; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-card);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon { -webkit-text-fill-color: initial; }

.navbar nav ul { display: flex; gap: 30px; }
.navbar nav a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.navbar nav a:hover { color: #ffffff; }

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 6%;
    position: relative;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(5, 8, 14, 0.95) 30%, rgba(5, 8, 14, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--purple-accent));
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary:hover, .btn-secondary:hover { transform: translateY(-3px); }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-card);
}

.stat-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--secondary-color); }
.stat-desc { font-size: 0.85rem; color: var(--text-muted); }

/* SECTIONS COMMON */
.services, .products, .booking { padding: 100px 6%; }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-header p { color: var(--text-muted); }

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-img { height: 200px; position: relative; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }

.service-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(245, 158, 11, 0.9);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-body { padding: 25px; }
.service-icon { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 15px; }
.service-body h3 { font-size: 1.25rem; margin-bottom: 10px; }

.service-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-card);
}

.price { font-weight: 700; color: var(--secondary-color); }

.btn-book { color: var(--primary-color); font-weight: 600; font-size: 0.9rem; }

/* PRODUCTS GRID */
.products { background: var(--bg-darker); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.4);
}

.product-img { height: 220px; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }

.tag-sale {
    position: absolute;
    top: 15px; left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-accent));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-info { padding: 25px; }
.product-info h4 { font-size: 1.1rem; margin-bottom: 8px; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }

.product-price-row { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1.2rem; font-weight: 700; color: var(--secondary-color); }

.btn-buy {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-buy:hover { background: rgba(37, 211, 102, 0.3); }

/* BOOKING SECTION */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 30px;
    padding: 50px;
}

.booking-info h2 { font-family: var(--font-title); font-size: 2.6rem; margin-bottom: 20px; }

.booking-features { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }

.b-feat { display: flex; align-items: center; gap: 20px; }

.b-feat i {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(236, 72, 153, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.booking-form-card {
    background: rgba(10, 15, 25, 0.8);
    border: 1px solid var(--border-card);
    padding: 35px;
    border-radius: 24px;
}

.booking-form-card h3 { margin-bottom: 25px; font-size: 1.3rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.form-group select option { background: #1a2236; color: #ffffff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.btn-submit-booking {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

.btn-submit-booking:hover { transform: translateY(-2px); }

/* FOOTER */
.footer {
    background: var(--bg-darker);
    padding: 80px 6% 30px;
    border-top: 1px solid var(--border-card);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.footer-info h3, .footer-hours h3 { font-size: 1rem; margin-bottom: 15px; color: #fff; }
.footer-info p, .footer-hours p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-info i, .footer-hours i { color: var(--primary-color); margin-right: 8px; }
.highlight-hours { color: var(--secondary-color) !important; font-weight: 700; font-size: 1rem !important; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.social-links a:hover { background: var(--primary-color); border-color: var(--primary-color); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-card);
}

/* FLOATING WA BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@media (max-width: 900px) {
    .booking-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .navbar nav { display: none; }
}
