/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
    --bg-dark: #FFF8F3;
    /* Ivory Background */
    --bg-surface: #ffffff;
    --bg-surface-hover: #F8EFE6;
    --text-main: #3B2C2C;
    /* Dark Brown */
    --text-muted: #5C4A4A;

    /* Gold & Burgundy Accents */
    --accent-blue: #D4AF37;
    /* Gold */
    --accent-purple: #7A0F1D;
    /* Burgundy */
    --gradient-primary: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));

    /* Borders & Glassmorphism */
    --border-glass: rgba(122, 15, 29, 0.1);
    --glass-blur: blur(12px);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
}

/* Typography Base */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.highlight {
    color: var(--accent-blue);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ==========================================
   Background Pattern
   ========================================== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M54.627 0l.83.83v58.34l-.83.83H5.373l-.83-.83V.83l.83-.83h49.254zM53.5 2H6.5v56h47V2zm-2.028 32c-.93 0-1.74-.537-2.13-1.32l-1.636-3.272a4.485 4.485 0 00-4.008-2.408H30.5h-5.264a4.484 4.484 0 00-4.008 2.408l-1.636 3.27A2.38 2.38 0 0117.464 34c-1.316 0-2.38-1.064-2.38-2.38 0-.93.537-1.74 1.32-2.13l3.272-1.636a4.485 4.485 0 002.408-4.008V11.5c0-2.48 2.02-4.5 4.5-4.5h5.5l.5-1.5h1l.5 1.5h1l.5-1.5h1l.5 1.5h5.5c2.48 0 4.5 2.02 4.5 4.5v12.344a4.485 4.485 0 002.408 4.008l3.27 1.636c.783.39 1.32 1.2 1.32 2.13 0 1.316-1.064 2.38-2.38 2.38zm-11.583-3.833V11.5c0-.987-.802-1.788-1.789-1.788H26.5A1.788 1.788 0 0024.71 11.5v16.667a7.203 7.203 0 01-3.864 6.43l-3.27 1.635c-.173.086-.285.26-.285.451 0 .285.23.516.516.516.19 0 .365-.112.451-.285l1.636-3.27a7.203 7.203 0 016.43-3.864h13.292a7.203 7.203 0 016.43 3.864l1.635 3.27c.086.173.26.285.451.285.285 0 .516-.23.516-.516 0-.19-.112-.365-.285-.451l-3.272-1.636a7.203 7.203 0 01-3.864-6.43zM32 25.5h-4v-1h4v1zm0-3h-4v-1h4v1zm0-3h-4v-1h4v1zm0-3h-4v-1h4v1zm0-3h-4v-1h4v1zM24.5 54v-1h4v2h-4v-1zm4 0v-1h4v2h-4v-1zm4 0v-1h4v2h-4v-1zm4 0v-1h2.51l.5-1.5h1l.5 1.5H41V56h-4.5zM22.5 54v-1h-2.5l-.5-1.5h-1l-.5 1.5H19V56h4.5z" fill="%23d4af37" fill-opacity="0.03" fill-rule="evenodd"/%3E%3C/svg%3E');
    z-index: -1;
    pointer-events: none;
}



/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    /* Reduced padding to make header much smaller */
    transition: var(--transition-smooth);
    background: var(--accent-purple);
    /* Mehandi color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    /* Reduced back slightly to make header smaller */
    color: var(--bg-dark);
    /* Ivory color for contrast against burgundy */
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* Light color for burgundy background */
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #ffffff;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

.btn-primary:hover {
    background: transparent;
    color: #FFF8F3;
    /* Changed to ivory for better readability against dark backgrounds */
    border-color: var(--accent-purple);
}

.btn-secondary {
    background: transparent;
    color: #FFF8F3;
    border: 1px solid #FFF8F3;
}

.btn-secondary:hover {
    background: #FFF8F3;
    color: var(--text-main);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 44, 44, 0.6);
    /* Dark overlay */
    z-index: -1;
}

.hero-container.center-content {
    justify-content: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content.text-center {
    text-align: center;
    color: #FFF8F3;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--accent-blue);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #FFF8F3;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.hero-cta.justify-center {
    justify-content: center;
}





@keyframes floatCards {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   Sections General
   ========================================== */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

/* ==========================================
   About Section
   ========================================== */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mt-4 {
    margin-top: 2rem;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* ==========================================
   About Image Flip Card
   ========================================== */
.flip-container {
    background-color: transparent;
    width: 100%;
    max-width: 450px;
    height: 550px;
    /* Set a fixed height matching the image approx */
    perspective: 1000px;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-container:hover {
    transform: scale(1.03) translateY(-5px);
}

.flip-container::after {
    content: '👆 Click to Reveal';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-surface);
    color: var(--accent-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.flip-container:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.flip-container.is-flipped .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    top: 0;
    left: 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(122, 15, 29, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-blue);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.flip-back {
    background-color: var(--accent-purple);
    color: var(--bg-dark);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(122, 15, 29, 0.3);
    border: 3px solid var(--accent-blue);
}

.flip-back-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.flip-back-content h3 {
    text-align: center;
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.flip-back-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.flip-back-content .highlight-text {
    text-align: center;
    color: var(--accent-blue);
    font-style: italic;
    margin-top: 10px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    background-color: var(--bg-surface-hover);
}

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

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(122, 15, 29, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--bg-surface-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent-purple);
    color: white;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-us-wrapper {
    display: flex;
    justify-content: center;
}

.why-us-category {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(122, 15, 29, 0.05);
}

.why-us-category h3 {
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-surface-hover);
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.why-us-item:hover {
    background: var(--bg-surface);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(122, 15, 29, 0.1);
}

.why-us-item i {
    font-size: 2.2rem;
    color: var(--accent-purple);
}

.why-us-item span {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-main);
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-filters.text-center {
    text-align: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    border: 1px solid var(--border-glass);
    cursor: pointer;
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(122, 15, 29, 0.6);
    /* Burgundy tint */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: white;
    font-size: 3rem;
}

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

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 20px;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-blue);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

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

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    opacity: 0.5;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-purple);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-blue);
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

/* ==========================================
   Stain Reveal Slider
   ========================================== */
.stain-reveal {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(212, 175, 55, 0.05), var(--bg-dark));
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-fg {
    width: 50%;
    /* Initial split at 50% */
    z-index: 2;
    border-right: 3px solid var(--accent-blue);
    overflow: hidden;
}

.slider-fg img {
    /* Magic trick: keeping the img matching the container width */
    width: 800px;
    /* Must equal max-width of container or use JS */
    max-width: none;
}

@media (max-width: 840px) {
    .slider-fg img {
        width: 100vw;
        /* Fallback for responsive */
    }
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    /* Initial split at 50% */
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.slider-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.slider-handle:hover .slider-icon {
    transform: scale(1.1);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    position: relative;
    z-index: 10;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--accent-blue);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.faq-question i {
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Instagram Feed Grid
   ========================================== */
.instagram-section {
    padding-bottom: 0;
    /* Connects smoothly to footer */
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.insta-stats {
    display: flex;
    gap: 20px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.insta-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-stats i {
    color: var(--text-main);
}

/* Hover effects */
.insta-item:hover img {
    transform: scale(1.1);
}

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

.insta-item:hover .insta-stats {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns still look good on mobile for insta grid */
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.highlighted-contact {
    background: rgba(212, 175, 55, 0.05);
    /* very subtle gold background */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.highlighted-contact h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlighted-contact p {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlighted-contact i {
    color: var(--accent-blue);
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .artist-photo-container {
        width: 260px;
        height: 260px;
    }

    /* About Section Mobile Reorder */
    .about-container {
        flex-direction: column;
    }

    .about-content {
        display: contents;
    }

    .about-content .section-title {
        order: 0;
        text-align: center;
    }

    .about-text-part1 {
        order: 1;
    }

    .about-image-wrapper {
        order: 2;
        margin: 30px 0;
    }

    .about-text-part2 {
        order: 3;
    }

    /* Flip Card Mobile Adjustments */
    .flip-container {
        height: 650px;
        /* Allow more height on mobile for vertical stacking if needed */
    }

    .flip-back {
        padding: 20px;
    }

    .flip-back-content h3 {
        font-size: 1.15rem;
    }

    .flip-back-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .flip-back-content .highlight-text {
        font-size: 0.95rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        /* simple mobile hide for now */
        position: fixed;
        top: 76px;
        /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--accent-purple);
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        font-size: 1.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle.tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .hide-on-mobile {
        display: none !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 85px;
        right: 20px;
    }
}

/* ==========================================
   Instagram Section
   ========================================== */
.instagram-section {
    background-color: var(--bg-surface);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.instagram-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.instagram-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(122, 15, 29, 0.15);
}

.insta-handle-wrapper {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
}

.insta-handle-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-purple);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 8px;
    /* Slightly rounded corners for a modern look */
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(122, 15, 29, 0.2);
}

.insta-handle-badge i {
    font-size: 1.3rem;
}

.insta-handle-badge:hover {
    background-color: #5c0b16;
    /* Darker burgundy on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 15, 29, 0.3);
    color: white;
}

/* ==========================================
   Booking Section
   ========================================== */
.booking-section {
    background-color: var(--bg-surface-hover);
}

.booking-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.booking-content {
    flex: 1;
}

.booking-form-wrapper {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(122, 15, 29, 0.05);
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 20px;
    }
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--bg-surface);
}

.booking-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.booking-form select option {
    background: var(--bg-surface);
    color: var(--text-main);
}

.price-estimate {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--accent-blue);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: -5px;
}

.price-estimate span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-estimate h4 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 5px;
}

.btn-full {
    width: 100%;
    padding: 16px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Official WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    background-color: #1ebe57;
}

/* Instagram Floating Button */
.instagram-float {
    position: fixed;
    bottom: 100px;
    /* Positioned above WhatsApp */
    right: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.instagram-float:hover {
    transform: scale(1.1) rotate(-10deg);
    color: white;
}

@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
    }
}