/*
Theme Name: Nail Boss UI/UX Pro Max
Version: 8.0 (Soft UI Evolution + Signature Gold)
*/

:root {
    /* Core Palette */
    --brand-dark: #1a1a1a;
    --brand-text: #4b5563; /* Softer, highly readable slate gray */
    --brand-light: #ffffff;
    --brand-soft-bg: #fdfbf7; /* Luxury warm cream */
    --brand-accent: #d4af37; /* Signature Gold */
    --brand-accent-hover: #b5952f;
    --brand-green: #25D366;
    
    /* Pro Max Design Tokens */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.01);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
    --transition-smooth: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-text);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- GLASSMORPHIC HEADER --- */
.normal-header {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm); border-bottom: 1px solid rgba(255,255,255,0.3);
}
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 80px; }
.logo-link { text-decoration: none; }
.custom-logo { max-height: 50px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; letter-spacing: 1px; color: var(--brand-dark); }
.logo-text span { color: var(--brand-accent); }

.top-nav-menu ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.top-nav-menu a { color: var(--brand-text); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: var(--transition-smooth); letter-spacing: 1px; }
.top-nav-menu a:hover { color: var(--brand-accent); transform: translateY(-1px); display: inline-block; }

/* --- BUTTONS (Micro-Interactions) --- */
.btn-primary {
    display: inline-block; padding: 16px 36px;
    background: var(--brand-accent); color: #fff;
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; border: none; border-radius: 8px; cursor: pointer; 
    transition: var(--transition-smooth); box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-primary:active { transform: scale(0.98); box-shadow: var(--shadow-sm); } /* Satisfying click feel */

/* --- FLOATING WHATSAPP --- */
.floating-wa {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 8px;
    background: var(--brand-green); color: #fff; padding: 14px 24px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); transition: var(--transition-smooth);
}
.floating-wa:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); color: #fff; }
.floating-wa i { font-size: 1.3rem; }

/* --- HERO SECTION --- */
.hero-luxury { min-height: 80vh; width: 100%; position: relative; background-size: cover; background-position: center right; display: flex; align-items: center; }
.hero-soft-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(253,251,247,0.95) 0%, rgba(253,251,247,0.7) 50%, rgba(253,251,247,0.1) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.hero-text-content { max-width: 650px; }
.accredited-badge { display: inline-block; background: #fff; color: var(--brand-dark); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.accredited-badge i { color: var(--brand-accent); margin-right: 6px; }
.hero-text-content h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 400; line-height: 1.1; color: var(--brand-dark); margin-bottom: 24px; }
.hero-text-content h1 span, #dynamic-word { color: var(--brand-accent); font-style: italic; display: inline-block; transition: all 0.4s ease; }
.hero-text-content .subhead { font-size: 1.15rem; line-height: 1.8; color: var(--brand-text); margin-bottom: 32px; }

/* --- FEATURES & COURSE CARDS (Soft UI Evolution) --- */
.features-section { padding: 120px 0; background: var(--brand-soft-bg); }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--brand-dark); margin-bottom: 60px; text-align: center; letter-spacing: 1px; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card {
    background: #fff; padding: 40px 30px; text-align: center;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth); border: 1px solid rgba(0,0,0,0.02);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.5rem; color: var(--brand-accent); margin-bottom: 24px; transition: var(--transition-smooth); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--brand-dark); margin-bottom: 16px; }
.feature-card p { font-size: 0.95rem; line-height: 1.6; color: var(--brand-text); }

/* Pricing Cards Specifics */
.pricing-card { position: relative; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--brand-accent); }
.price-box { margin-top: 20px; padding-top: 20px; border-top: 1px dashed rgba(0,0,0,0.08); }
.strike-price { display: block; color: #9ca3af; text-decoration: line-through; font-size: 0.95rem; margin-bottom: 4px; font-weight: 500; }
.new-price { display: block; color: var(--brand-dark); font-size: 1.75rem; font-weight: 800; }

/* --- SYLLABUS & SCHEDULE SECTION --- */
.syllabus-section { padding: 100px 0; background: #fff; }
.syllabus-col h2, .schedule-col h2 { font-family: 'Playfair Display', serif; color: var(--brand-dark); margin-bottom: 24px; font-size: 2rem; }
.gold-checklist { list-style: none; padding: 0; }
.gold-checklist li { margin-bottom: 14px; color: var(--brand-text); font-size: 1rem; display: flex; align-items: center; }
.gold-checklist i { color: var(--brand-accent); margin-right: 14px; font-size: 1rem; }
.bonus-box { background: var(--brand-soft-bg); border: 1px solid rgba(212, 175, 55, 0.2); padding: 24px; border-radius: var(--radius-md); margin-top: 32px; box-shadow: var(--shadow-sm); }
.schedule-box { background: #fff; padding: 24px; border-radius: var(--radius-md); margin-bottom: 24px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--brand-dark); transition: var(--transition-smooth); }
.schedule-box:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.schedule-box h4 { color: var(--brand-accent); margin-bottom: 8px; font-size: 1.1rem; }
.schedule-box p { color: var(--brand-text); font-size: 0.95rem; margin-bottom: 4px; }

/* --- ENROLLMENT FORMS (Premium Inputs) --- */
.enroll-section { padding: 100px 0; background: var(--brand-soft-bg); }
.enroll-header { margin-bottom: 48px; }
.enroll-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--brand-dark); margin-bottom: 12px; }
.scarcity-pill { display: inline-block; background: #fff; color: var(--brand-dark); padding: 10px 24px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; margin-top: 20px; box-shadow: var(--shadow-sm); border: 1px solid rgba(212, 175, 55, 0.3); }
.scarcity-pill strong { color: var(--brand-accent); font-size: 1.1rem; }

.white-form-container { background: #ffffff; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); padding: 48px; max-width: 800px; margin: 0 auto; border: 1px solid rgba(0,0,0,0.03); }
.nailboss-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: span 2; }
.nailboss-form input, .nailboss-form textarea, .nailboss-form select {
    width: 100%; padding: 16px; background: #f9fafb; border: 1px solid #e5e7eb;
    border-radius: 8px; color: var(--brand-dark); font-size: 1rem; font-family: inherit; transition: var(--transition-smooth);
}
.nailboss-form input:focus, .nailboss-form textarea:focus, .nailboss-form select:focus {
    border-color: var(--brand-accent); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.nailboss-form select { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 16px top 50%; background-size: 12px auto; }
.nailboss-form button { margin-top: 16px; }

/* --- FOOTER --- */
.site-footer { background: var(--brand-dark); color: #9ca3af; padding: 80px 0 40px; }
.footer-info { text-align: center; margin-bottom: 48px; }
.footer-info .logo-text { color: #fff; }
.footer-info p { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 12px; }
.footer-info i { color: var(--brand-accent); font-size: 1.1rem; }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; text-align: center; font-size: 0.85rem; color: #6b7280; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .hero-text-content h1 { font-size: 3.5rem; } }
@media (max-width: 768px) {
    .header-container { flex-direction: column; height: auto; padding: 16px; gap: 16px; }
    .top-nav-menu ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hero-luxury { text-align: center; }
    .hero-text-content { margin: 0 auto; padding-top: 60px; padding-bottom: 60px; }
    .features-grid { grid-template-columns: 1fr; }
    .nailboss-form { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .floating-wa span { display: none; }
    .floating-wa { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
    .floating-wa i { font-size: 1.5rem; margin: 0; }
}