/* --- CORE DESIGN DESIGN ARCHITECTURE SYSTEM --- */
:root {
    /* Color Variables System */
    --rose-gold: #b76e79;
    --ivory-white: #fffdfa;
    --soft-pink: #f4e1e3;
    --deep-maroon: #4a0404;
    --gold-accent: #d4af37;
    --dark-bg: #120101;
    --light-card-bg: rgba(255, 253, 250, 0.75);
    --dark-card-bg: rgba(18, 1, 1, 0.7);
    --text-dark: #2c1a1c;
    --text-light: #fbeee0;
    
    /* Default Active Theme Setup (Dark/Luxury Base) */
    --bg-main: var(--dark-bg);
    --text-main: var(--text-light);
    --card-bg: var(--dark-card-bg);
    --glass-border: rgba(212, 175, 55, 0.2);
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Light Theme Variable Overrides */
[data-theme="light"] {
    --bg-main: var(--ivory-white);
    --text-main: var(--text-dark);
    --card-bg: var(--light-card-bg);
    --glass-border: rgba(183, 110, 121, 0.25);
}

/* Base Body Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    transition: var(--transition-smooth);
    overflow-x: hidden;
}

h1, h2, h3, .nav-logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* --- PREMIUM FULLSCREEN LOADER --- */
.loader-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

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

.loader-logo {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    animation: fadePulse 2s infinite ease-in-out;
}

.loader-line-wrapper {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.loader-line {
    width: 60%;
    height: 100%;
    background: var(--gold-accent);
    position: absolute;
    left: -100%;
    animation: loadingSlide 1.5s infinite ease-in-out;
}

.loader-subtitle {
    font-family: 'Great Vibes', cursive;
    color: var(--rose-gold);
    font-size: 1.5rem;
}

/* --- INTERACTIVE DYNAMIC CUSTOM CURSOR --- */
.custom-cursor-glow {
    position: fixed;
    top: 0; left: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.1s ease;
}

.custom-cursor-dot {
    position: fixed;
    top: 0; left: 0; width: 8px; height: 8px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Canvas Element Overlay Setup */
#petalCanvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 999;
}

/* --- UTILITY CONTROL INTERFACES --- */
.utility-controls {
    position: fixed;
    top: 2.5rem; right: 0.5rem;
    display: flex; gap: 0.5rem;
    z-index: 1002;
}

.utility-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--gold-accent);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
}

.utility-btn:hover {
    background: var(--gold-accent);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* --- GLASSMORPHISM NAVBAR LAYOUT --- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.navbar.sticky {
    padding: 0.8rem 0;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    width: 200px;
}
.nav-logo img {
 max-width: 100%;
}

.nav-links {
    display: flex; list-style: none; gap: 2rem;
}

.nav-link {
    text-decoration: none; color: var(--text-main);
    font-size: 0.95rem; font-weight: 400; position: relative;
    padding: 0.5rem 0; transition: var(--transition-smooth);
}

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

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

.hamburger {
    display: none; cursor: pointer; flex-direction: column; gap: 6px;
}

.hamburger .bar {
    width: 25px; height: 2px; background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* --- CINEMATIC HERO SECTION --- */
.hero-section {
    height: 100vh; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}

.hero-slider {
    position: absolute; top:0; left:0; width:100%; height:100%; z-index: 1;
}

.hero-slider .slide {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative; z-index: 2; max-width: 800px; padding: 0 1rem;
}

.hero-accent-text {
    font-family: 'Great Vibes', cursive; color: var(--gold-accent);
    font-size: 2.5rem; margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.5rem; color: #fff; margin-bottom: 1.5rem; min-height: 5rem;
}

.hero-tagline {
    font-size: 1.2rem; color: var(--soft-pink); margin-bottom: 2.5rem;
    font-weight: 300;
}

/* --- REUSABLE COMPONENT STYLE BUTTONS --- */
.btn {
    display: inline-block; padding: 0.8rem 2.2rem; border-radius: 0;
    text-decoration: none; font-size: 0.9rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--deep-maroon); color: #fff;
    border: 1px solid var(--gold-accent);
}

.btn-primary:hover {
    background-color: var(--gold-accent); color: var(--dark-bg);
    transform: translateY(-3px); box-shadow: 0 10px 20px rgba(214,175,55,0.2);
}

.btn-secondary {
    background: transparent; color: #fff; border: 1px solid #fff;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #fff; color: var(--dark-bg); transform: translateY(-3px);
}

.btn-block {
    width: 100%; text-align: center;
}

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

.mouse-wheel {
    width: 24px; height: 40px; border: 2px solid #fff; border-radius: 12px;
    position: relative;
}

.mouse-wheel::before {
    content: ''; width: 4px; height: 8px; background: var(--gold-accent);
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    border-radius: 2px; animation: scrollDrop 1.5s infinite ease-in-out;
}

/* --- ABOUT SECTION & DYNAMIC COUNTERS --- */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.about-images {
    position: relative; min-height: 450px;
}

.collage-main {
    width: 75%; height: 400px; overflow: hidden;
}

.collage-sub {
    position: absolute; bottom: 0; right: 0; width: 50%; height: 250px;
    overflow: hidden;
}

.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.section-subtitle {
    font-family: 'Great Vibes', cursive; color: var(--gold-accent);
    font-size: 2rem; display: block; margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 400;
}

.gold-divider {
    width: 80px; height: 1px; background-color: var(--gold-accent);
    margin: 1rem auto 3rem; position: relative;
}

.gold-divider::after {
    content: '✦'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); background: var(--bg-main);
    padding: 0 0.5rem; color: var(--gold-accent); font-size: 0.8rem;
}

.about-description {
    line-height: 1.8; margin-bottom: 2rem; font-weight: 300; opacity: 0.9;
}

.counters-container {
    display: flex; gap: 2rem; margin-top: 3rem;
}

.counter-card {
    flex: 1; text-align: center;
}

.counter-number {
    font-size: 2.5rem; color: var(--rose-gold); font-family: 'Playfair Display', serif;
}

.counter-label {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem;
}

/* --- PREMIUM GLASSMORPHISM SYSTEM LAYOUT CARDS --- */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 15px 30px rgba(212,175,55,0.1);
}

/* --- SERVICES CONFIGURATION --- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}

.service-card {
    display: flex; flex-direction: column; overflow: hidden;
}

.service-img-wrapper {
    overflow: hidden; position: relative;
}

.service-info {
    padding: 2rem; flex-grow: 1; display: flex; flex-direction: column;
}

.service-info h3 {
    font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--gold-accent);
}

.service-info p {
    font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; font-weight: 300;
}

.read-more-link {
    margin-top: auto; text-decoration: none; color: var(--text-main);
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .read-more-link {
    color: var(--gold-accent); transform: translateX(5px);
}

/* --- MASONRY GALLERY SYSTEM --- */
.portfolio-filters {
    display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem;
}

.filter-btn {
    background: transparent; border: 1px solid var(--glass-border);
    padding: 0.6rem 1.8rem; color: var(--text-main); cursor: pointer;
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold-accent); color: var(--dark-bg); border-color: var(--gold-accent);
}

.portfolio-grid {
    display: columns; columns: 3 300px; column-gap: 1.5rem; width: 100%;
}

.portfolio-item {
    break-inside: avoid; margin-bottom: 1.5rem; position: relative;
    overflow: hidden; cursor: pointer; border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.portfolio-item img {
    width: 100%; height: auto; transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(74, 4, 4, 0.85); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition-smooth);
}

.portfolio-overlay span {
    color: #fff; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.85rem; border-bottom: 1px solid var(--gold-accent); padding-bottom: 4px;
}

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

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styling System */
.lightbox {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(18,1,1,0.95); z-index: 2000; display: none;
    align-items: center; justify-content: center; opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex; opacity: 1;
}

.lightbox-content {
    max-width: 85%; max-height: 85%; object-fit: contain;
    border: 1px solid var(--gold-accent);
}

.lightbox-close {
    position: absolute; top: 2.5rem; right: 2.5rem; color: #fff;
    font-size: 3rem; cursor: pointer; transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--gold-accent);
}

/* --- BEFORE/AFTER INTERACTIVE SLIDER COMPONENT --- */
.before-after-container {
    position: relative; width: 100%; height: 450px; overflow: hidden;
    border: 1px solid var(--glass-border);
}

.image-before, .image-after {
    position: absolute; top:0; left:0; width:100%; height:100%;
    pointer-events: none;
}

.image-before img, .image-after img {
    width: 100%; height: 100%; object-fit: cover;
}

.image-after {
    width: 50%; overflow: hidden; z-index: 2;
}

.slider-handle {
    position: absolute; top:0; left:50%; width:2px; height:100%;
    background: var(--gold-accent); z-index: 3; cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 42px; height: 42px; background: var(--deep-maroon);
    border: 1px solid var(--gold-accent); border-radius: 50%;
    color: var(--gold-accent); display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; pointer-events: none;
}

.slider-wrapper {
    position: relative;
}

.badge-label {
    position: absolute; top: 1rem; left: 1rem; background: var(--deep-maroon);
    color: var(--gold-accent); font-size: 0.75rem; text-transform: uppercase;
    padding: 0.3rem 0.8rem; z-index: 4; border: 1px solid var(--gold-accent);
    letter-spacing: 1px;
}

.makeup-text {
    padding-left: 2rem;
}

.makeup-features {
    margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem;
}

.m-feat {
    display: flex; align-items: center; gap: 1rem; font-size: 0.95rem;
}

.m-feat i {
    color: var(--gold-accent);
}

/* --- MEHENDI GRAPHIC DISPLAY SECTION --- */
.mehendi-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.svg-mandala {
    width: 140px; height: 140px; margin-top: 2rem; display: block;
}

.svg-mandala path, .svg-mandala circle {
    stroke-dasharray: 1000; stroke-dashoffset: 1000;
    animation: drawLine 6s linear infinite forwards;
}

.mehendi-gallery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

.mehendi-gallery img {
    height: 350px; border: 1px solid var(--glass-border);
}

/* --- TIMELINE TESTIMONIALS SLIDER --- */
.testimonial-carousel-container {
    max-width: 750px; margin: 0 auto; overflow: hidden; position: relative;
}

.testimonial-track {
    display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%; padding: 3rem; text-align: center; position: relative;
    box-sizing: border-box;
}

.quote-icon {
    font-size: 2.5rem; color: var(--rose-gold); opacity: 0.3; margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem; line-height: 1.8; font-style: italic; margin-bottom: 2rem;
    font-weight: 300;
}

.client-info {
    display: flex; align-items: center; justify-content: center; gap: 1.2rem;
}

.client-info img {
    width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--gold-accent);
}

.client-info h4 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-accent);
}

.client-date {
    font-size: 0.75rem; opacity: 0.7; text-transform: uppercase;
}

.carousel-dots {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem;
}

.dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2);
    cursor: pointer; transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-accent); width: 24px; border-radius: 4px;
}

/* --- INSTAGRAM INTEGRATION DESIGN --- */
.insta-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}

.insta-item {
    position: relative; overflow: hidden; height: 260px; border: 1px solid var(--glass-border);
}

.insta-item img {
    width:100%; height:100%; transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(18,1,1,0.6); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition-smooth);
    color: #fff; font-size: 1.5rem;
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-item:hover img { transform: scale(1.05); }

/* --- INVESTMENT PRICING STRUCTURAL GRIDS --- */
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2rem; display: flex; flex-direction: column; text-align: center;
    position: relative;
}

.premium-package {
    border-color: var(--gold-accent); background: linear-gradient(rgba(74, 4, 4, 0.4), rgba(18, 1, 1, 0.8));
}

.popular-badge {
    position: absolute; top:0; left: 50%; transform: translate(-50%, -50%);
    background: var(--gold-accent); color: var(--dark-bg); font-size: 0.75rem;
    text-transform: uppercase; font-weight: 600; padding: 0.4rem 1.2rem;
    letter-spacing: 1px;
}

.price-header h3 {
    font-size: 1.6rem; margin-bottom: 1rem;
}

.price-value {
    font-size: 2.5rem; font-family: 'Playfair Display', serif; color: var(--gold-accent);
    margin-bottom: 2.5rem;
}

.price-features {
    list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem;
    text-align: left; padding-left: 1rem;
}

.price-features li {
    font-size: 0.95rem; font-weight: 300; display: flex; align-items: center; gap: 0.8rem;
}

.price-features li i {
    color: var(--gold-accent); font-size: 0.85rem;
}

.price-features li i.cross {
    color: rgba(255,255,255,0.2);
}

/* --- BOOKING COMPONENT LAYOUT FORM & ENTRIES --- */
.booking-grid-layout {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem;
}

.booking-form-wrapper {
    padding: 3.5rem;
}

.form-title {
    font-size: 2rem; margin-bottom: 2.5rem; font-weight: 400;
}

.form-group {
    position: relative; margin-bottom: 2.5rem;
}

.form-control {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid var(--glass-border); padding: 0.6rem 0;
    color: #000; font-family: inherit; font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none; border-bottom-color: var(--gold-accent);
}

.floating-label {
    position: absolute; top: 0.6rem; left: 0; color: var(--text-main);
    opacity: 0.6; pointer-events: none; transition: var(--transition-smooth);
    font-size: 0.95rem; font-weight: 300;
}

/* Float logic targeting placeholder states */
.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label,
.form-control:-webkit-autofill ~ .floating-label {
    top: -1.2rem; font-size: 0.8rem; color: var(--gold-accent); opacity: 1;
}

select.form-control {
    cursor: pointer;
}

/* Target select with valid value selected */
select.form-control:focus ~ .floating-label,
select.form-control:valid ~ .floating-label {
    top: -1.2rem; font-size: 0.8rem; color: var(--gold-accent); opacity: 1;
}

.error-msg {
    position: absolute; bottom: -1.2rem; left: 0; font-size: 0.75rem;
    color: #ff4d4d; display: none;
}

.form-group.invalid .form-control {
    border-bottom-color: #ff4d4d;
}

.form-group.invalid .error-msg {
    display: block;
}

.info-details-list {
    margin: 2rem 0; display: flex; flex-direction: column; gap: 1.2rem;
}

.info-details-list p {
    display: flex; align-items: center; gap: 1rem; font-weight: 300;
}

.info-details-list i {
    color: var(--gold-accent);
}

.map-embed-container {
    border: 1px solid var(--glass-border); overflow: hidden; margin-top: 2rem;
}

/* --- DYNAMIC APP NOTIFICATION ALERTS & MODALS --- */
.success-popup-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(18,1,1,0.85); z-index: 3000; display: none;
    align-items: center; justify-content: center; opacity: 0;
    transition: opacity 0.4s ease; padding: 1rem;
}

.success-popup-overlay.active {
    display: flex; opacity: 1;
}

.success-popup-card {
    max-width: 450px; width: 100%; padding: 3rem; text-align: center;
}

.success-icon-circle {
    width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--gold-accent);
    color: var(--gold-accent); display: flex; align-items: center;
    justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem;
}

.success-popup-card h2 {
    font-size: 1.8rem; margin-bottom: 1rem;
}

.success-popup-card p {
    font-size: 0.95rem; opacity: 0.8; line-height: 1.6; margin-bottom: 2rem;
    font-weight: 300;
}

/* --- FLOATING INSTANT COMMUNICATIONS INTERACTION TRIGGER --- */
.whatsapp-floating-trigger {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 55px; height: 55px; background-color: #25d366;
    color: #fff; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.8rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3); z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-floating-trigger:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- LUXURY FOOTER STRUCTURE --- */
.footer {
    background-color: var(--dark-bg); color: var(--text-light);
    border-top: 1px solid var(--glass-border); padding: 5rem 0 2rem;
    transition: background-color var(--transition-smooth);
}

.text-center-wrapper {
    text-align: center;
}

.footer-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.6rem; margin-bottom: 1rem; color: var(--gold-accent);
}

.footer-column h4 {
    font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 400;
    letter-spacing: 1px; color: var(--rose-gold);
}

.footer-column p {
    font-size: 0.9rem; line-height: 1.6; font-weight: 300; opacity: 0.8;
}

.footer-links-list {
    list-style: none; display: flex; flex-direction: column; gap: 0.8rem;
}

.footer-links-list a {
    color: var(--text-light); text-decoration: none; font-size: 0.9rem;
    font-weight: 300; opacity: 0.8; transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--gold-accent); padding-left: 4px; opacity: 1;
}

.footer-socials {
    display: flex; gap: 1rem;
}

.footer-socials a {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); text-decoration: none; transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--gold-accent); color: var(--dark-bg); border-color: var(--gold-accent);
}

.footer-bottom-line {
    text-align: center; font-size: 0.8rem; opacity: 0.6; font-weight: 300;
}

.animated-gold-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin-bottom: 2rem;
}

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

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

/* --- KEYFRAME ANIMATION PLATFORM BUILD --- */
@keyframes loadingSlide {
    0% { left: -100%; }
    50% { left: 40%; }
    100% { left: 100%; }
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scrollDrop {
    0% { top: 6px; opacity: 1; height: 8px; }
    50% { top: 18px; opacity: 0.4; height: 12px; }
    100% { top: 6px; opacity: 0; height: 8px; }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* --- ADAPTIVE RESPONSIVE GRID OVERRIDES --- */
@media(max-width: 992px) {
    html { font-size: 15px; }
    .about-grid, .booking-grid-layout, .mehendi-layout {
        grid-template-columns: 1fr; gap: 3rem;
    }
    .about-images { min-height: 400px; }
    .makeup-text { padding-left: 0; }
}

@media(max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: var(--card-bg); backdrop-filter: blur(25px);
        flex-direction: column; align-items: center; justify-content: center;
        transition: 0.5s ease; z-index: 999; box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; z-index: 1000; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-title { font-size: 2.6rem; }
    .booking-form-wrapper { padding: 2rem; }
    .portfolio-grid { columns: 2 250px; }
    .utility-controls { top: 3.5rem; right: 5.5rem; }
    .nav-logo img { max-width: 80%; }
}