/* ----------------------------------------------------
   GLAMOUR BEAUTY ZONE & ACADEMY - STYLESHEET
   Luxury Design System & Responsive Framework
   ---------------------------------------------------- */

/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS DESIGN TOKENS (Variables) */
:root {
    /* Color Palette */
    --primary-purple: #3A1248;
    --secondary-purple: #5A2D6C;
    --dark-purple: #240B2E;
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --ivory-white: #FFF9F2;
    --cream: #F7F1E8;
    --charcoal: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #E8E2DA;
    --gray-dark: #7E7870;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Layout & Spacing */
    --header-height: 85px;
    --header-shrink-height: 70px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --box-shadow-luxury: 0 15px 35px rgba(58, 18, 72, 0.08);
}

/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--ivory-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-purple);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.align-center { align-items: center; }

.font-gold { color: var(--gold) !important; }
.font-purple { color: var(--primary-purple) !important; }

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 12px auto 0;
}

.text-left .section-title::after {
    margin-left: 0;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

/* GRIDS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

.btn-whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp-btn:hover {
    background-color: transparent;
    color: #25D366;
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.btn-text::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition-smooth);
}

.btn-text:hover {
    color: var(--gold);
}

.btn-text:hover::after {
    width: 100%;
}

.svg-icon-wa {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* STICKY HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 249, 242, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: var(--header-shrink-height);
    background-color: rgba(36, 11, 46, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--ivory-white);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 249, 242, 0.85);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--ivory-white);
    transition: var(--transition-smooth);
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-cta-mobile {
    display: none;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 11, 46, 0.92) 0%, rgba(58, 18, 72, 0.6) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 75%;
}

.hero-text-content {
    max-width: 750px;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 249, 242, 0.85);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-badges {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.badge-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.badge-info p {
    font-size: 0.75rem;
    color: rgba(255, 249, 242, 0.7);
    margin: 0;
}

/* ABOUT SECTION */
.about-section {
    padding: 120px 0;
    background-color: var(--ivory-white);
}

.about-images {
    position: relative;
    padding-right: 30px;
    align-self: start;
}

.about-img-frame {
    border: 10px solid var(--cream);
    box-shadow: var(--box-shadow-luxury);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-frame:hover .about-main-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(58, 18, 72, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 4px solid var(--gold);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.4;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-lead {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    line-height: 1.7;
    color: var(--secondary-purple);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-row-container {
    width: 100%;
    margin-top: 50px;
}

.stat-card {
    background-color: var(--cream);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--box-shadow-luxury);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-suffix {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-left: 2px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.stat-card p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-dark);
    margin-bottom: 0;
    font-weight: 500;
}

/* SERVICES SECTION */
.services-section {
    padding: 120px 0;
    background-color: var(--cream);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 40px 30px;
    box-shadow: var(--box-shadow-luxury);
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-10px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(58, 18, 72, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.service-sublist {
    margin-bottom: 25px;
    width: 100%;
}

.service-sublist li {
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px dashed var(--cream);
    color: var(--charcoal);
    position: relative;
    padding-left: 18px;
}

.service-sublist li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 4px;
    font-size: 1.1rem;
}

.service-card .btn-text {
    margin-top: auto;
}

/* WHY CHOOSE US */
.why-choose-us-section {
    padding: 120px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--cream);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-purple);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

/* ACADEMY SECTION */
.academy-section {
    padding: 120px 0;
    background-color: var(--cream);
}

.academy-text {
    padding-right: 20px;
}

.academy-lead {
    font-size: 1.15rem;
    color: var(--gray-dark);
    margin-bottom: 35px;
}

.courses-list {
    margin-bottom: 40px;
}

.course-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.course-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.course-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.course-details h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.course-details p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}.academy-features-container {
    margin-top: 60px;
    width: 100%;
}

.academy-features-section-title {
    margin-bottom: 35px;
}

.academy-features-section-title h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--dark-purple);
    position: relative;
    display: inline-block;
}

.academy-features-section-title h3::after {
    content: '';
    display: block;
    width: 55px;
    height: 2px;
    background-color: var(--gold);
    margin: 8px auto 0;
}

.academy-features-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.academy-feature-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-luxury);
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.academy-feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary-purple);
    box-shadow: 0 12px 24px rgba(58, 18, 72, 0.1);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.academy-feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-purple);
    color: var(--white);
}

.feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.academy-feature-card p {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0;
    line-height: 1.5;
}

.academy-media {
    position: relative;
    padding-left: 20px;
    align-self: start;
}

.academy-img-frame {
    border: 10px solid var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-luxury);
}

.academy-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.academy-card-overlay {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    max-width: 320px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.academy-card-overlay h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.academy-card-overlay p {
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 120px 0;
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-dark);
    padding: 8px 20px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--primary-purple);
}

.filter-btn.active::after {
    width: 60%;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    height: 280px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item.width-2 {
    grid-column: span 2;
    height: 380px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(36, 11, 46, 0.95) 0%, rgba(58, 18, 72, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-zoom-icon {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

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

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 6, 26, 0.98);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--ivory-white);
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-content-wrapper {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85%;
    max-width: 900px;
    padding: 20px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85%;
    border-radius: var(--border-radius-sm);
    border: 3px solid rgba(212, 175, 55, 0.3);
    animation: zoomLightbox 0.4s ease;
}

.lightbox-caption {
    margin-top: 15px;
    text-align: center;
    color: var(--ivory-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(58, 18, 72, 0.8);
    color: var(--gold);
}

@keyframes zoomLightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--cream);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-luxury);
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.client-info {
    border-top: 1px solid var(--cream);
    padding-top: 20px;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.client-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.cta-overlay-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 11, 46, 0.9);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.cta-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-container h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.cta-container p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 249, 242, 0.85);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CONTACT & BOOKING FORM */
.contact-section {
    padding: 120px 0;
    background-color: var(--ivory-white);
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

.link-hover:hover {
    color: var(--gold);
}

.google-map-wrapper {
    margin-top: 15px;
    border: 8px solid var(--cream);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-luxury);
}

/* APPOINTMENT FORM */
.appointment-form-panel {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: var(--white);
    padding: 48px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-luxury);
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-card p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.beauty-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--ivory-white);
    color: var(--charcoal);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(58, 18, 72, 0.05);
}

.form-feedback {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

.form-feedback.success {
    background-color: rgba(37, 211, 102, 0.1);
    color: #1e7e34;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-feedback.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #bd2130;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.hidden {
    display: none;
}

/* FOOTER */
.footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 80px 0 0;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 30px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.footer-logo .logo-title {
    color: var(--white);
}

.footer-brand .tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    color: var(--dark-purple);
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact-info strong {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.seo-footer-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    word-spacing: 2px;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* KEYFRAMES */
@keyframes zoomBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES (Breakpoints)
   ---------------------------------------------------- */

@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    .footer-links:nth-child(4) {
        display: none; /* Hide academy links in simple layout */
    }
}

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .gallery-item.width-2 {
        grid-column: span 1;
        height: 280px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-images {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row-container {
        margin-top: 30px;
    }
    
    .academy-media {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .academy-main-img {
        height: 450px;
    }
    
    .academy-features-container {
        margin-top: 45px;
    }
    
    .academy-features-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .appointment-form-panel {
        justify-content: center;
    }
    
    .form-card {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* MOBILE NAVIGATION */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-purple);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        color: var(--ivory-white);
        font-size: 1.1rem;
        margin-bottom: 20px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }
    
    .header-ctas {
        display: none; /* Hide desktop CTAs on mobile */
    }
    
    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }

    .nav-cta-mobile .btn {
        width: 100%;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item, .gallery-item.width-2 {
        height: 240px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
    
    .academy-features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-badge {
        padding: 20px 30px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .academy-features-row {
        grid-template-columns: 1fr;
    }
}
