/* ============================================
   BLUSH & BOUNCE SALON - PREMIUM STYLESHEET
   Designed for SEO, Speed & Luxury Experience
   ============================================ */

/* CSS Variables */
:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #A0843C;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-card: #121212;
    --white: #FFFFFF;
    --cream: #FAF7F2;
    --blush: #E8B4B8;
    --blush-dark: #D4959A;
    --text-dark: #2C2C2C;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --border: rgba(201, 169, 98, 0.2);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
    filter: brightness(1.1);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header.light { color: var(--white); }
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
}
.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto 0;
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::after { background: var(--gold-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header.light .section-title { color: var(--white); }
.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}
.logo-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-cta {
    margin-left: 8px;
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
    .mobile-toggle { display: flex; }
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--black-soft);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }
    .nav-menu.active { right: 0; }
    .nav-link { width: 100%; padding: 12px 0; font-size: 1rem; }
    .nav-link.active::after { left: 0; transform: none; }
    .nav-cta { margin-left: 0; margin-top: 16px; width: 100%; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
    max-width: 650px;
    padding-top: 100px;
    animation: fadeInUp 1s ease forwards;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* ============================================
   SERVICES CATEGORIES
   ============================================ */
.services-categories {
    padding: 100px 0;
    background: var(--cream);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.category-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover .category-img img { transform: scale(1.1); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}
.category-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}
.category-body {
    padding: 28px;
    text-align: center;
}
.category-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}
.category-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.category-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.category-link:hover { color: var(--black); gap: 10px; }

/* ============================================
   FIND YOUR LOOK
   ============================================ */
.find-look {
    padding: 100px 0;
    background: var(--black-soft);
    color: var(--white);
}
.look-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.look-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.2;
}
.look-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.look-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}
.look-btn span:first-child { font-size: 1.5rem; }
.look-btn:hover, .look-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.look-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.look-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
}
.look-recommend {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
}
.look-recommend h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}
.look-recommend p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .look-grid { grid-template-columns: 1fr; }
    .look-image { max-width: 500px; margin: 0 auto; }
    .look-recommend { text-align: center; }
}

/* ============================================
   DETAILED SERVICES
   ============================================ */
.detailed-services {
    padding: 100px 0;
    background: var(--white);
}
.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--cream);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}
.tab-btn:hover { color: var(--gold-dark); }
.tab-btn.active {
    background: var(--black);
    color: var(--gold);
    border-color: var(--gold);
}
.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.service-card.wide { grid-column: 1 / -1; max-width: 800px; margin: 0 auto; }
.service-img {
    height: 200px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    padding: 24px 24px 12px;
    color: var(--black);
}
.service-card ul {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}
.service-card ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
}
.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.service-card ul.makeup-list { grid-template-columns: 1fr; }
.service-card ul.makeup-list li { padding-left: 0; }
.service-card ul.makeup-list li::before { display: none; }
.service-card ul.makeup-list li strong { color: var(--black); display: block; margin-bottom: 4px; }
.service-note {
    padding: 0 24px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: -8px;
}

/* ============================================
   POPULAR SERVICES
   ============================================ */
.popular-services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.popular-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.popular-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.25);
}
.popular-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--black);
}
.popular-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.popular-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--black-soft);
}
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item.is-hiding {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}
.gallery-item.is-showing {
    opacity: 1;
    transform: scale(1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item figcaption span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}
.gallery-item figcaption strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}
.gallery-item.hidden { 
    opacity: 0; 
    transform: scale(0.92); 
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 85%;
}
.about-img-sub {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.2;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img-sub { display: none; }
    .about-img-main { width: 100%; }
	
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    transform: translateY(-5px);
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.2);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFEBEF 30%, #FDF2F4 60%, #FFF8F9 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(232, 180, 184, 0.3);
}
.stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.testimonial-card > p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
}
.author-info { text-align: left; }
.author-info strong { display: block; color: var(--black); font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.dot.active {
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-dark) 100%);
    position: relative;
    overflow: hidden;
}
.booking-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 80px;
    opacity: 0.5;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-content > p {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 28px;
}
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.cta-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}
.cta-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
}
.cta-image:hover { transform: rotate(0deg) scale(1.02); }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .cta-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-features { align-items: center; }
    .cta-image { max-width: 400px; margin: 0 auto; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}
.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.info-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--black);
}
.info-body p, .info-body a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.info-body a:hover { color: var(--gold-dark); }
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    color: white;
}
.social-links a svg {
    width: 16px;
    height: 16px;
}
.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer social button colors */
.social-links .social-wa {
    background: #25D366;
}
.social-links .social-wa:hover {
    background: #128C7E;
}
.social-links .social-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-links .social-insta:hover {
    filter: brightness(1.15);
}
.social-links .social-fb {
    background: #1877F2;
}
.social-links .social-fb:hover {
    background: #166fe5;
}
.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(20%);
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}
.footer-links h4, .footer-services h4, .footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}
.footer-links a, .footer-services a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover, .footer-services a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SOCIAL FLOATING BUTTONS (Bottom Left)
   ============================================ */
.social-float-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}
.social-float-btn svg {
    width: 24px;
    height: 24px;
}
.social-float-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* WhatsApp */
.social-wa {
    background: #25D366;
    animation: pulse-wa 2s infinite;
}
.social-wa:hover {
    background: #128C7E;
}

/* Instagram */
.social-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-insta:hover {
    filter: brightness(1.15);
}

/* Facebook */
.social-fb {
    background: #1877F2;
}
.social-fb:hover {
    background: #166fe5;
}

/* Tooltip on hover */
.social-float-btn::after {
    content: attr(aria-label);
    position: absolute;
    left: 64px;
    background: var(--black);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.social-float-btn:hover::after {
    opacity: 1;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pageup-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
.pageup-float.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.pageup-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content { padding-top: 120px; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-cta { justify-content: center; }
    .scroll-indicator { display: none; }
    .section-header { margin-bottom: 40px; }
    .popular-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: 1fr; }
    .service-card ul { grid-template-columns: 1fr; }
    .about-stats { gap: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .social-float-bar { bottom: 20px; left: 16px; gap: 10px; }
    .social-float-btn { width: 46px; height: 46px; }
    .social-float-btn svg { width: 20px; height: 20px; }
    .social-float-btn::after { display: none; }
    .pageup-float { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}


/* ============================================
   CALL NOW BUTTON
   ============================================ */
.btn-call {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    font-weight: 600;
}
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
    color: var(--white);
}

/* ============================================
   SOCIAL BUTTON COLORS
   ============================================ */
.social-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
}
.social-wa:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}
.social-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: var(--white) !important;
}
.social-insta:hover {
    filter: brightness(1.15);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Mobile menu close fix */
@media (max-width: 900px) {
    .nav-menu.active {
        right: 0;
        z-index: 1000;
    }
    .nav-menu {
        z-index: 999;
    }
    .mobile-toggle {
        z-index: 1001;
    }
}


/* ============================================
   MAP OPEN BUTTON
   ============================================ */
.map-open-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.map-open-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.contact-map {
    position: relative;
}


/* ============================================
   LIGHTBOX / GALLERY MODAL
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 60px 20px;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    margin-top: 16px;
    text-align: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
}
.lightbox-caption span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}
.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Counter */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Touch swipe hint on mobile */
.lightbox::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    display: none;
}

/* ============================================
   LIGHTBOX MOBILE
   ============================================ */
@media (max-width: 768px) {
    .lightbox {
        padding: 50px 10px;
    }
    .lightbox-content img {
        max-height: 70vh;
        border-radius: 8px;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-caption {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    .lightbox::after {
        display: block;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
}


/* ============================================
   SALON AMBIENCE SECTION
   ============================================ */
.salon-ambience {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a1218 50%, var(--black-soft) 100%);
    position: relative;
    overflow: hidden;
}
.salon-ambience::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.salon-ambience::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ambience-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ambience-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.ambience-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ambience-main:hover img {
    transform: scale(1.05);
}
.ambience-main .ambience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}
.ambience-main .ambience-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    margin-top: 8px;
}

.ambience-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ambience-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1;
    min-height: 0;
}
.ambience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ambience-card:hover img {
    transform: scale(1.08);
}
.ambience-card .ambience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.ambience-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    align-self: flex-start;
    width: fit-content;
    white-space: nowrap;
}

.ambience-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.ambience-feature {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: var(--transition);
}
.ambience-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    transform: translateY(-5px);
}
.ambience-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.ambience-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
}
.ambience-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .ambience-grid {
        grid-template-columns: 1fr;
    }
    .ambience-main {
        aspect-ratio: 16/10;
    }
    .ambience-side {
        flex-direction: row;
    }
    .ambience-card {
        min-height: 200px;
    }
    .ambience-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ambience-side {
        flex-direction: column;
    }
    .ambience-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .ambience-feature {
        padding: 20px 12px;
    }
    .ambience-feature h4 {
        font-size: 0.95rem;
    }
    .ambience-main .ambience-overlay h3 {
        font-size: 1.3rem;
    }
}
