:root {
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-pale: #f0e6c8;
    --dark: #1a1a2e;
    --dark-secondary: #16213e;
    --cream: #faf9f5;
    --cream-dark: #f0ece3;
    --text: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* TOP BAR */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left i { color: var(--gold); margin-right: 5px; }
.top-bar-right { display: flex; gap: 15px; }
.top-bar-right a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.top-bar-right a:hover { color: var(--gold); }

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    padding-top: 33px;
}
.main-header.scrolled {
    padding-top: 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}
.main-header.scrolled .header-inner { height: 65px; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}
.logo-text:hover { color: var(--gold); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(184,134,11,0.15) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23grain)" width="100" height="100"/></svg>');
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}
.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    color: var(--gold);
    font-size: 30px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(184,134,11,0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184,134,11,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-small { padding: 10px 22px; font-size: 12px; }
.btn-large { padding: 18px 45px; font-size: 15px; }

/* SECTIONS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-script {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--dark);
    font-weight: 700;
}
.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-line { background: var(--white); }

/* ABOUT */
.about {
    padding: 120px 0;
    background: var(--cream);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 30px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.stat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}
.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SERVICES */
.services {
    padding: 120px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-short {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 15px;
}
.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* PROMOTIONS */
.promotions {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
}
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.promo-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--white);
    position: relative;
    transition: var(--transition);
}
.promo-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}
.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}
.promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}
.promo-card p { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 15px; }
.promo-date { font-size: 12px; opacity: 0.6; }

/* SCHEDULE */
.schedule {
    padding: 120px 0;
    background: var(--cream);
}
.schedule-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}
.schedule-table th {
    background: var(--dark);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.schedule-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
}
.schedule-table tr:hover { background: var(--cream); }
.schedule-table tr.full { opacity: 0.6; }
.slots-available {
    color: #27ae60;
    font-weight: 600;
}
.slots-full {
    color: #e74c3c;
    font-weight: 600;
}

/* TEAM */
.team {
    padding: 120px 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--gold-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--gold);
}
.team-card-body {
    padding: 30px 25px;
}
.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 5px;
}
.team-role {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}
.team-bio {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}
.team-insta {
    color: var(--gold);
    font-size: 22px;
    transition: var(--transition);
    display: inline-block;
}
.team-insta:hover { color: var(--dark); transform: translateY(-2px); }

/* TESTIMONIALS */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testimonial-quote {
    font-size: 40px;
    color: var(--gold-pale);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; }

/* CONTACT */
.contact {
    padding: 120px 0;
    background: var(--white);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.contact-item i {
    font-size: 28px;
    color: var(--gold);
    margin-top: 3px;
}
.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}
.contact-item span, .contact-item a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
}
.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}
.whatsapp-box {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}
.whatsapp-box i { font-size: 60px; margin-bottom: 20px; display: block; }
.whatsapp-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
}
.whatsapp-box p { opacity: 0.9; margin-bottom: 25px; font-size: 14px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 25px rgba(37,211,102,0.6), 0 0 0 15px rgba(37,211,102,0.1); }
}

/* FOOTER */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-links h4, .footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-social-links { display: flex; gap: 12px; }
.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}
.footer-social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 998;
    }
    .main-nav.active a {
        font-size: 20px;
    }
    .menu-toggle { display: flex; z-index: 999; }
    .about-content { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar-left span:last-child { display: none; }
    .hero-title { font-size: 36px; }
    .section-header h2 { font-size: 30px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .stat-number { font-size: 28px; }
}
