:root {
    --primary-bg: #0a0015;
    --primary-dark: #1a0a2e;
    --accent-gold: #FFD700;
    --accent-gold-dim: #d4af37;
    --accent-magenta: #ff006e;
    --accent-magenta-dark: #b800ff;
    --accent-cyan: #00f5ff;
    --text-light: #ffffff;
    --text-white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.6);
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.6);
}

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

html {
    min-height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    background-image:
        radial-gradient(circle at top left, rgba(225, 0, 255, 0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.18), transparent 55%),
        linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for mobile sticky bar */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.text-gradient {
    background: linear-gradient(to right, var(--accent-gold), var(--accent-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold { color: var(--accent-gold); }
.text-magenta { color: var(--accent-magenta); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-magenta), var(--accent-magenta-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(225, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 0, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-white {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    background: var(--accent-magenta);
    color: white;
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(225, 0, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(225, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 0, 255, 0); }
}

/* Navbar */
.navbar {
    padding: 5px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(42, 14, 69, 0.8); /* Semi-transparent */
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.logo-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(243, 229, 245, 0.7);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-magenta);
}

.nav-links a.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--accent-gold) !important;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(10, 2, 25, 0.3), rgba(10, 2, 25, 0.9)),
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.32;
    filter: saturate(1.4);
    z-index: -3;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(225, 0, 255, 0.32), transparent 60%),
                radial-gradient(circle at 90% 100%, rgba(212, 175, 55, 0.22), transparent 55%),
                linear-gradient(135deg, rgba(7, 2, 20, 0.92), rgba(17, 3, 40, 0.98));
    z-index: -2;
}

.subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.headline {
    font-size: 3.4rem;
    margin-bottom: 14px;
    line-height: 1.1;
    text-shadow: 0 0 16px rgba(225, 0, 255, 0.25);
}

.description {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 0 26px;
    opacity: 0.9;
}

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

.decoration {
    position: absolute;
    font-size: 10rem;
    color: rgba(255, 215, 0, 0.05);
    z-index: -1;
}

.lamp-left { top: 20%; left: -5%; transform: rotate(15deg); }
.lamp-right { bottom: 10%; right: -5%; transform: rotate(-15deg); }

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 215, 0, 0.8);
    margin-bottom: 12px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.chip {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 2, 20, 0.78);
    font-size: 0.75rem;
    color: rgba(243, 229, 245, 0.9);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
    font-size: 0.85rem;
}

.meta-item {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    color: rgba(243, 229, 245, 0.6);
}

.meta-value {
    font-weight: 500;
}

.hero-card {
    position: relative;
    background: rgba(15, 5, 35, 0.9);
    border-radius: 24px;
    padding: 26px 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.24) 0, transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(225, 0, 255, 0.25) 0, transparent 55%);
    opacity: 0.25;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0, transparent 55%);
    opacity: 0;
    animation: hero-glow 4s ease-in-out infinite;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-card h2 {
    font-size: 1.9rem;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: rgba(243, 229, 245, 0.85);
}

.hero-offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.hero-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    font-size: 0.9rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

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

/* Bridal Card Enhancements */
.bridal-mega-badge {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 105, 180, 0.25) 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.2), transparent 70%),
        radial-gradient(ellipse at bottom, rgba(255, 105, 180, 0.2), transparent 70%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 16px;
    padding: 14px 12px;
    margin: 8px 0 10px;
    text-align: center;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 105, 180, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 2px 2px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: pulse-rich 3s ease-in-out infinite;
}

@keyframes pulse-rich {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 105, 180, 0.3),
            inset 0 0 30px rgba(255, 215, 0, 0.15),
            inset 0 2px 2px rgba(255, 255, 255, 0.2),
            inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.7),
            0 0 80px rgba(255, 105, 180, 0.5),
            inset 0 0 40px rgba(255, 215, 0, 0.25),
            inset 0 2px 2px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    }
}

.bridal-mega-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 215, 0, 0.2) 100%);
    pointer-events: none;
}

.mega-offer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.mega-flat {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.mega-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 40%, #FF69B4 80%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.85;
    filter: 
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) 
        drop-shadow(0 0 40px rgba(255, 215, 0, 0.6))
        drop-shadow(0 0 60px rgba(255, 105, 180, 0.4));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.percent {
    font-size: 1.5rem;
    margin-left: -2px;
}

.mega-text {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    filter: 
        drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) 
        drop-shadow(0 0 30px rgba(255, 215, 0, 0.5))
        drop-shadow(0 0 45px rgba(255, 105, 180, 0.3));
}

.bridal-title {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
    font-weight: 700;
    margin-top: 0 !important;
}

.bridal-features {
    margin-bottom: 14px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
}

.bridal-features li {
    padding: 5px 0;
    font-size: 0.85rem;
}

.bridal-features li:last-child {
    padding-bottom: 0;
}

.bridal-features i {
    font-size: 1rem;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0, #ffd700 40%, transparent 70%);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: sparkle 6s linear infinite;
}

.sparkle.s1 { top: 18%; right: 16%; animation-delay: 0s; }
.sparkle.s2 { top: 32%; right: 8%;  animation-delay: 1.2s; }
.sparkle.s3 { top: 46%; right: 22%; animation-delay: 2.4s; }
.sparkle.s4 { top: 60%; right: 12%; animation-delay: 3.6s; }
.sparkle.s5 { top: 72%; right: 20%; animation-delay: 4.8s; }

@keyframes sparkle {
    0% { transform: scale(0.4); opacity: 0; }
    10% { transform: scale(1); opacity: 1; }
    40% { transform: scale(1.4); opacity: 0.85; }
    60% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(0.3); opacity: 0; }
}

@keyframes hero-glow {
    0%, 100% { opacity: 0; }
    40% { opacity: 0.12; }
    60% { opacity: 0.05; }
}

/* Sections General */
.section {
    padding: 72px 0;
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-magenta);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    margin-top: 18px;
    font-size: 0.95rem;
    color: rgba(243, 229, 245, 0.75);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ddd;
}

.price {
    font-weight: 700;
    color: var(--accent-magenta);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: linear-gradient(135deg, #5a1c86 0%, #3a0e55 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card.highlight {
    background: linear-gradient(135deg, var(--accent-magenta) 0%, #9900cc 100%);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.discount-badge {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.offer-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.offer-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
}

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

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

/* Booking Section */
.booking-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info .section-title::after {
    margin: 15px 0 0; /* Align left */
}

.contact-details {
    margin: 30px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--accent-gold);
    width: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.booking-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-magenta);
}

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

/* Modern Footer */
.footer-modern {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-dark) 100%);
    border-top: 1px solid rgba(255, 0, 110, 0.2);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand-col {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: contain;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-magenta);
    border-color: var(--accent-magenta);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-magenta);
    margin-top: 2px;
    font-size: 1rem;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

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

.footer-bottom-links .separator {
    opacity: 0.3;
}

/* Asymmetric Service Grid (2025 Trend) */
.services-asymmetric {
    padding: 60px 0;
}
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.service-tile.spa-wide {
    grid-column: span 2;
}

.service-tile {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 5, 35, 0.95) 0%, rgba(42, 14, 69, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 105, 180, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-tile .service-media {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-shrink: 0;
}

.service-tile .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(15, 5, 35, 0.3) 60%,
        rgba(15, 5, 35, 0.85) 100%);
    transition: all 0.4s ease;
}

.service-tile:hover .media-overlay {
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(15, 5, 35, 0.2) 60%,
        rgba(15, 5, 35, 0.75) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.service-content {
    padding: 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 105, 180, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.95rem;
    color: rgba(243, 229, 245, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.services-grid-asymmetric {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 400px);
    gap: 24px;
}
.service-card-large {
    grid-row: span 2;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.15);
    transition: all 0.4s ease;
}
.service-card-small {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.15);
    transition: all 0.4s ease;
}
.service-card-large:hover,
.service-card-small:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 110, 0.4);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}
.service-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.media-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 0, 21, 0.9) 100%);
}
.service-info {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}
.tag-minimal {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 0, 110, 0.2);
    border: 1px solid var(--accent-magenta);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
    color: var(--accent-cyan);
}
.service-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}
.service-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}
.link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.link-modern:hover {
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

/* Clean Testimonials Section */
.testimonials-clean {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(10, 0, 21, 0.5) 0%, transparent 100%);
}
.testimonials-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card-clean {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 110, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
}
.testimonial-card-clean:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 110, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.15);
}
.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}
.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}
.author-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Page Header & Breadcrumbs */
.page-header {
    padding-top: 140px;
    padding-bottom: 20px;
}

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

.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(243, 229, 245, 0.75);
}

.breadcrumbs a {
    color: var(--accent-gold);
}

.breadcrumbs .sep {
    opacity: 0.6;
}

/* 2025 Modern Design System */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Clean Section Headers */
.section-header-clean {
    text-align: center;
    margin-bottom: 40px;
}
.title-elegant {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.7), 0 0 40px rgba(255, 0, 110, 0.4);
}
.subtitle-refined {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Sleek Minimal Why Choose Section */
.why-choose-sleek {
    padding: 50px 0;
}

/* Compact Stats Row */
.stats-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 35px;
    padding: 24px 40px;
    background: rgba(75,27,116,0.15);
    border-radius: 50px;
    border: 1px solid rgba(225,0,255,0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.stat-mini {
    text-align: center;
    padding: 0 32px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8), 0 0 30px rgba(0, 245, 255, 0.4);
    margin-bottom: 4px;
}
.stat-text {
    font-size: 0.85rem;
    color: rgba(243,229,245,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(225,0,255,0.3), transparent);
}

/* Sleek Feature Cards */
.features-sleek {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-sleek {
    text-align: center;
    padding: 30px 20px;
    background: rgba(15,5,35,0.3);
    border: 1px solid rgba(225,0,255,0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.feature-sleek:hover {
    transform: translateY(-4px);
    border-color: rgba(225,0,255,0.4);
    background: rgba(75,27,116,0.2);
    box-shadow: 0 10px 30px rgba(225,0,255,0.15);
}
.feature-sleek i {
    font-size: 2.2rem;
    color: var(--accent-magenta);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8), 0 0 30px rgba(255, 0, 110, 0.4);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.8));
}
.feature-sleek h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.feature-sleek p {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.6);
    line-height: 1.5;
}

/* Why Choose Section with Background Image */
.why-choose-bg {
    background-image: url('../images/hair-transformation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-choose-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,0,21,0.65) 0%, rgba(10,0,21,0.75) 100%);
    z-index: 1;
}

.why-choose-bg .container-narrow {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 30px;
}

/* Stats in Why Feminas - Less Transparent */
.why-choose-bg .stats-minimal {
    background: rgba(75,27,116,0.35);
    border: 1px solid rgba(225,0,255,0.3);
    backdrop-filter: blur(15px);
}

/* Image-Based Feature Cards */
.features-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-image-card {
    background: rgba(26,10,46,0.4);
    border-radius: 0;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(255,0,110,0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.feature-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-magenta), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-image-card:hover::before {
    opacity: 1;
}
.feature-image-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,110,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-image-card:hover::after {
    opacity: 1;
}
.feature-image-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 0 12px 40px rgba(255, 0, 110, 0.25);
    background: rgba(26,10,46,0.6);
}
.feature-image-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.feature-image-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
}
.feature-image-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}
.feature-image-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Modern CTA Section */
.cta-modern {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(15,5,35,1) 0%, rgba(42,14,69,1) 50%, rgba(15,5,35,1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.15) 0%, transparent 40%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
}

.cta-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255,105,180,0.1) 0%, transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(255,165,0,0.1) 0%, transparent 25%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-background-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255,215,0,0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255,105,180,0.08) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
}

.cta-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: float-drift 15s ease-in-out infinite;
}

.float-element.element-1 {
    top: 20%;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    left: 85%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.float-element.element-3 {
    top: 40%;
    left: 15%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.float-element.element-4 {
    top: 70%;
    left: 75%;
    animation-duration: 16s;
    animation-delay: 1s;
}

.float-element.element-5 {
    top: 15%;
    left: 80%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.float-element.element-6 {
    top: 80%;
    left: 20%;
    animation-duration: 17s;
    animation-delay: 5s;
}

.float-element.element-7 {
    top: 35%;
    left: 90%;
    animation-duration: 15s;
    animation-delay: 2.5s;
}

.float-element.element-8 {
    top: 55%;
    left: 5%;
    animation-duration: 19s;
    animation-delay: 4.5s;
}

.float-element.element-9 {
    top: 25%;
    left: 50%;
    animation-duration: 14s;
    animation-delay: 1.5s;
}

.float-element.element-10 {
    top: 65%;
    left: 45%;
    animation-duration: 16s;
    animation-delay: 3.5s;
}

@keyframes float-drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-15px, -50px) rotate(180deg) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg) scale(1.1);
        opacity: 0.4;
    }
}

.cta-content-modern {
    position: relative;
    z-index: 1;
}

.cta-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,105,180,0.15) 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 1rem;
}

.cta-heading-modern {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.text-gradient-shine {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF69B4 60%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine-gradient 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.4));
}

@keyframes shine-gradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.cta-subtext-modern {
    font-size: 1.1rem;
    color: rgba(243,229,245,0.8);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-actions-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 42px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255,215,0,0.4);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF69B4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-primary:hover::before {
    opacity: 1;
}

.btn-cta-primary .btn-text,
.btn-cta-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,215,0,0.6);
}

.btn-cta-primary .btn-icon {
    transition: transform 0.4s ease;
}

.btn-cta-primary:hover .btn-icon {
    transform: translateX(6px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255,215,0,0.4);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255,215,0,0.3);
}

.cta-stats-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(42,14,69,0.6) 0%, rgba(25,10,45,0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 100px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 26px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(243,229,245,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.3) 50%, transparent 100%);
}

/* Minimal CTA Section */
.cta-minimal {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(75,27,116,0.4) 0%, rgba(90,28,134,0.3) 100%);
    border-top: 1px solid rgba(255, 0, 110, 0.15);
}
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.cta-text {
    font-size: 1.25rem;
    color: rgba(243,229,245,0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 64px;
}
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-gold));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(225,0,255,0.4);
}
.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(225,0,255,0.6);
}
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
}
.btn-secondary-large:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.4);
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 64px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}
.trust-label {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Luxe Testimonials Section */
.testimonials-luxe {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(15,5,35,1) 0%, rgba(25,10,45,1) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,105,180,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-luxe {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.title-luxe {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-luxe {
    font-size: 1.15rem;
    color: rgba(243,229,245,0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid-luxe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-card-luxe {
    background: linear-gradient(145deg, rgba(42,14,69,0.6) 0%, rgba(25,10,45,0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card-luxe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.03) 0%, rgba(255,105,180,0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-luxe:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 20px 60px rgba(255,215,0,0.2);
}

.testimonial-card-luxe:hover::before {
    opacity: 1;
}

.testimonial-card-luxe.featured {
    grid-column: span 1;
    border: 2px solid rgba(255,215,0,0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-card-luxe:hover .card-glow {
    opacity: 1;
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(255,215,0,0.3);
    margin-bottom: 20px;
}

.rating-stars-luxe {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.rating-stars-luxe i {
    color: #FFD700;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(243,229,245,0.9);
    margin-bottom: 32px;
    font-style: italic;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,215,0,0.15);
}

.client-avatar-luxe {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255,215,0,0.4);
    box-shadow: 0 4px 20px rgba(255,215,0,0.2);
}

.client-details {
    flex: 1;
}

.client-name-luxe {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.client-service-luxe {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-service-luxe i {
    color: var(--accent-gold);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #4CAF50;
    background: rgba(76,175,80,0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(76,175,80,0.3);
}

.verified-badge i {
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: whatsapp-wiggle 1s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes whatsapp-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 14, 69, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid var(--glass-border);
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.sticky-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #ccc;
    gap: 5px;
}

.sticky-action i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.sticky-action.highlight {
    color: var(--accent-magenta);
}

.sticky-action.highlight i {
    color: var(--accent-magenta);
}

/* Responsive Media Queries */
@media (min-width: 769px) {
    .mobile-sticky-bar {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .headline {
        font-size: 2.35rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .offer-card.highlight {
        transform: scale(1);
    }
    
    .booking-wrapper {
        flex-direction: column;
    }

    .testimonials-grid-luxe {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .title-luxe {
        font-size: 2.2rem;
    }

    .testimonials-luxe {
        padding: 80px 0;
    }

    .section-header-luxe {
        margin-bottom: 50px;
    }

    .cta-heading-modern {
        font-size: 2.5rem;
    }

    .cta-modern {
        padding: 60px 0;
    }

    .cta-subtext-modern {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .cta-actions-modern {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 40px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-stats-modern {
        flex-direction: column;
        gap: 24px;
        border-radius: 24px;
        padding: 24px 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.3) 50%, transparent 100%);
    }

    .stat-card {
        padding: 0;
        justify-content: center;
    }
    
    .booking-info .section-title {
        text-align: center;
    }
    
    .booking-info .section-title::after {
        margin: 15px auto 0;
    }
    
    .booking-info {
        text-align: center;
    }
    
    .detail-item {
        justify-content: center;
    }

    /* 2025 Modern Design Mobile Styles */
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

    .title-elegant {
        font-size: 2.4rem;
    }

    .cta-heading {
        font-size: 2.8rem;
    }

    /* Why Choose Image Grid Mobile */
    /* Sleek Why Choose Mobile */
    .stats-minimal {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 20px;
    }
    .stat-mini {
        padding: 0;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(225,0,255,0.3), transparent);
    }
    .stat-num {
        font-size: 1.8rem;
    }
    .features-sleek {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-sleek {
        padding: 28px 20px;
    }
    .feature-sleek i {
        font-size: 1.6rem;
    }
    .feature-sleek h3 {
        font-size: 1.1rem;
    }
    
    /* Image Features Mobile */
    .features-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-image-card {
        padding: 36px 28px;
    }
    .feature-image-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .feature-image-content h3 {
        font-size: 1.2rem;
    }
    .feature-image-content p {
        font-size: 0.9rem;
    }

    /* Asymmetric Services Mobile */
    .services-grid-asymmetric {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    .service-card-large {
        grid-row: span 1;
        height: 450px;
    }
    .service-card-small {
        height: 380px;
    }
    .service-info h3 {
        font-size: 1.6rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid-clean {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .testimonial-card-clean {
        padding: 32px 24px;
    }

    /* CTA Mobile */
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    /* Section padding mobile */
    .section {
        padding: 60px 0;
    }
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    .cta-trust {
        gap: 40px;
    }
    .trust-number {
        font-size: 2rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }

    .why-choose-bento,
    .services-asymmetric,
    .testimonials-clean,
    .cta-minimal {
        padding: 80px 0;
    }

    /* Services Grid Modern Mobile */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-tile {
        min-height: 400px;
    }

    .service-tile.spa-wide {
        grid-column: span 1;
    }

    .service-tile h3 {
        font-size: 1.6rem;
    }

    .service-tile p {
        font-size: 0.95rem;
    }

    /* Hero Section Mobile */
    .hero-inner {
        padding: 40px 0;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
    }

    .headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 1rem;
    }

    .hero-card {
        padding: 28px 20px;
    }

    .bridal-mega-badge {
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
    }

    .mega-flat {
        font-size: 0.9rem;
    }

    .mega-number {
        font-size: 3rem;
    }

    .mega-text {
        font-size: 1rem;
    }

    .bridal-title {
        font-size: 1.4rem;
    }

    .bridal-features {
        grid-template-columns: 1fr;
        gap: 10px;
        font-size: 0.9rem;
    }

    .hero-list li {
        font-size: 0.9rem;
    }

    .btn-white {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Navbar Mobile */
    .logo-img {
        height: 60px;
    }

    .navbar {
        padding: 8px 0;
    }

    /* Floating Elements Mobile - Reduce Density */
    .float-element {
        font-size: 1.5rem;
    }

    .float-element.element-7,
    .float-element.element-8,
    .float-element.element-9,
    .float-element.element-10 {
        display: none;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 90px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* Additional Mobile Optimization for smaller screens */
@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
    }

    .cta-heading-modern {
        font-size: 2rem;
    }

    .title-luxe {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .service-tile {
        min-height: 350px;
    }

    .bridal-mega-badge {
        width: 120px;
        height: 120px;
    }

    .mega-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero */
.services-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(15,5,35,1) 0%, rgba(42,14,69,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,105,180,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.breadcrumbs-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumbs-modern a {
    color: rgba(255,215,0,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs-modern a:hover {
    color: var(--accent-gold);
}

.breadcrumbs-modern .sep {
    color: rgba(243,229,245,0.4);
}

.breadcrumbs-modern span:last-child {
    color: var(--text-light);
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(243,229,245,0.7);
    max-width: 700px;
}

/* Service Categories */
.services-main {
    background: linear-gradient(180deg, rgba(15,5,35,1) 0%, rgba(25,10,45,1) 100%);
}

.service-category {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.service-category:last-of-type {
    border-bottom: none;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent-gold);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: rgba(243,229,245,0.7);
}

/* Hair Services Grid */
.hair-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hair-column {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hair-column::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hair-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.column-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,215,0,0.2);
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,215,0,0.08);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.service-item p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    white-space: nowrap;
}

/* Makeup Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    color: rgba(243,229,245,0.7);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.tab-btn:hover {
    border-color: rgba(255,215,0,0.6);
    color: var(--accent-gold);
}

.tab-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: transparent;
    color: #0F0523;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.makeup-card {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.makeup-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
}

.makeup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.makeup-card h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.makeup-card p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.addon-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.1) 100%);
    border-color: rgba(255,215,0,0.3);
}

.addon-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.addon-list li {
    color: rgba(243,229,245,0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Bridal Showcase */
.bridal-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.bridal-main {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 40px;
}

.bridal-main h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bridal-main h3 i {
    color: var(--accent-gold);
}

.bridal-services {
    margin-bottom: 30px;
}

.bridal-service-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,215,0,0.08);
}

.bridal-service-item:last-child {
    border-bottom: none;
}

.bridal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.bridal-details h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.bridal-details p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bridal-cta {
    text-align: center;
    padding-top: 20px;
}

.btn-bridal-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}

.btn-bridal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,215,0,0.6);
}

.bridal-looks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bridal-looks h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.look-card {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 24px;
}

.look-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.look-card h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.look-card p {
    color: rgba(243,229,245,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Facial Groups */
.facial-group {
    margin-bottom: 50px;
}

.facial-group:last-child {
    margin-bottom: 0;
}

.group-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.group-title i {
    color: var(--accent-gold);
}

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

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

.facial-card {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.facial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.facial-card.advanced {
    border-color: rgba(255,165,0,0.3);
}

.facial-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.facial-badge.advanced-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border: none;
}

.facial-card h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-right: 60px;
}

.facial-card p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.grooming-card {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.grooming-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.grooming-card.highlighted {
    background: linear-gradient(145deg, rgba(255,215,0,0.08) 0%, rgba(255,165,0,0.08) 100%);
    border-color: rgba(255,215,0,0.3);
}

.grooming-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.grooming-card h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.grooming-card p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.enhancement-tags {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.nail-card {
    background: linear-gradient(145deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.nail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 15px 40px rgba(255,215,0,0.3);
}

.nail-card.featured {
    border-color: rgba(255,215,0,0.3);
}

.nail-card.bridal-special {
    border-color: rgba(255,165,0,0.4);
}

.nail-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.nail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.8) 100%);
}

.nail-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.nail-badge.bridal-badge {
    background: linear-gradient(135deg, #FF69B4 0%, #FFD700 100%);
}

.nail-content {
    padding: 24px;
}

.nail-content h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.nail-content p {
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.nail-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.nail-duration i {
    font-size: 0.9rem;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42,14,69,0.8) 0%, rgba(15,5,35,1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,215,0,0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(255,105,180,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content-services {
    position: relative;
    z-index: 1;
}

.cta-content-services h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content-services p {
    font-size: 1.15rem;
    color: rgba(243,229,245,0.7);
    margin-bottom: 40px;
}

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

.btn-services-primary,
.btn-services-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-services-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    box-shadow: 0 10px 40px rgba(255,215,0,0.4);
}

.btn-services-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255,215,0,0.6);
}

.btn-services-secondary {
    background: transparent;
    border: 2px solid rgba(255,215,0,0.4);
    color: var(--accent-gold);
}

.btn-services-secondary:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 2.2rem;
    }

    .hair-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .makeup-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
    }

    .bridal-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .facial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grooming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nails-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-content-services h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-services-primary,
    .btn-services-secondary {
        width: 100%;
        justify-content: center;
    }

    .service-category {
        padding: 60px 0;
    }
}

/* ========================================
   NEW SERVICES PAGE - COMPLETE REDESIGN
   ======================================== */

/* Hero Section */
.services-hero-new {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,5,35,0.93) 0%,
        rgba(42,14,69,0.90) 50%,
        rgba(15,5,35,0.94) 100%
    );
    backdrop-filter: blur(3px);
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(42,14,69,0.9) 0%, rgba(255,215,0,0.3) 50%, rgba(255,105,180,0.3) 100%);
    border: 1.5px solid rgba(255,215,0,0.6);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255,215,0,0.3), 0 0 20px rgba(42,14,69,0.5);
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(42,14,69,0.4) 0%, rgba(25,10,45,0.5) 100%);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-subtitle-new {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(243,229,245,0.85);
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin: 0;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF69B4 100%);
    color: #0F0523;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255,215,0,0.5);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,14,69,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255,215,0,0.7), 0 5px 30px rgba(255,105,180,0.4);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 34px;
    background: linear-gradient(135deg, rgba(42,14,69,0.4) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, rgba(42,14,69,0.8) 0%, rgba(255,215,0,0.6) 50%, rgba(255,105,180,0.5) 100%);
    border-image-slice: 1;
    color: var(--accent-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.btn-hero-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(42,14,69,0.8) 0%, rgba(255,215,0,0.6) 50%, rgba(255,105,180,0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.btn-hero-outline:hover {
    background: linear-gradient(135deg, rgba(42,14,69,0.6) 0%, rgba(255,215,0,0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255,215,0,0.3), 0 4px 20px rgba(42,14,69,0.4);
}

.gradient-text-animated {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF69B4 60%, #FFD700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Quick Navigation Section */
.quick-nav-section {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, rgba(15,5,35,0.5) 0%, rgba(25,10,45,0.8) 100%);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    position: relative;
}

.quick-nav-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(184, 0, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: glow-pulse-soft 4s ease-in-out infinite;
}

@keyframes glow-pulse-soft {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.quick-nav-tile {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(184,0,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.3),
        0 0 0 rgba(184,0,255,0);
}

.quick-nav-tile::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(184,0,255,0.25), rgba(255,0,110,0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-nav-tile:hover::before {
    opacity: 1;
}

.quick-nav-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(184,0,255,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-nav-tile:hover::after {
    opacity: 1;
}

.quick-nav-tile:hover {
    transform: translateY(-10px);
    border-color: rgba(184,0,255,0.4);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(184,0,255,0.3),
        0 0 60px rgba(184,0,255,0.15),
        inset 0 0 20px rgba(184,0,255,0.1);
}

.nav-tile-image {
    position: absolute;
    inset: 0;
}

.nav-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.quick-nav-tile:hover .nav-tile-image img {
    transform: scale(1.1);
}

.nav-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(15,5,35,0.5) 0%, 
        rgba(15,5,35,0.85) 60%, 
        rgba(15,5,35,0.98) 100%);
    transition: background 0.4s ease;
}

.quick-nav-tile:hover .nav-tile-overlay {
    background: linear-gradient(180deg, 
        rgba(15,5,35,0.3) 0%, 
        rgba(42,14,69,0.7) 60%, 
        rgba(42,14,69,0.95) 100%);
}

.nav-tile-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 15px;
    z-index: 2;
}

.nav-tile-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 0 rgba(184,0,255,0));
}

.quick-nav-tile:hover .nav-tile-icon {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(0 0 15px rgba(184,0,255,0.6));
}

.nav-tile-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.quick-nav-tile:hover .nav-tile-content h3 {
    background: linear-gradient(135deg, #B800FF 0%, #FF006E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(184,0,255,0.5));
}

.nav-tile-content p {
    font-size: 0.85rem;
    color: rgba(243,229,245,0.7);
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
}

.quick-nav-tile:hover .nav-tile-content p {
    color: rgba(184,0,255,0.85);
    text-shadow: 0 0 8px rgba(184,0,255,0.25);
}

/* Main Services Container */
.services-main-new {
    background: linear-gradient(180deg, rgba(15,5,35,1) 0%, rgba(25,10,45,1) 100%);
    position: relative;
}

.service-section-new {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,215,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-subtle 6s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

.service-section-new:last-child {
    border-bottom: none;
}

.section-header-new {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.section-header-new::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-badge-new {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,105,180,0.15) 100%);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 18px;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
}

.section-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-desc-new {
    font-size: 1.1rem;
    color: rgba(243,229,245,0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================
   HAIR SERVICES
   ================== */

.hair-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.hair-column {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 20px;
    padding: 24px;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 15px 25px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(42, 14, 69, 0) 100%);
    border-left: 5px solid #FFD700;
    border-radius: 0 100px 100px 0;
    position: relative;
    backdrop-filter: blur(5px);
}

.column-header::before {
    display: none;
}

.column-icon {
    font-size: 1.6rem;
    margin-bottom: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 105, 180, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.column-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: none;
    -webkit-text-fill-color: initial;
}

.hair-service-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: rgba(15, 5, 35, 0.3);
    border: 1px solid rgba(255,215,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hair-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.hair-service-card:hover::before {
    left: 100%;
}

.hair-service-card:hover {
    background: rgba(42, 14, 69, 0.3);
    border-color: rgba(255,215,0,0.25);
    transform: translateX(8px);
    box-shadow: -5px 5px 20px rgba(255, 215, 0, 0.1);
}

.hair-service-card:last-child {
    margin-bottom: 0;
}

.hair-service-img {
    width: 110px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hair-service-img::after {
    content: '✨';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.hair-service-card:hover .hair-service-img::after {
    opacity: 1;
}

.hair-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hair-service-card:hover .hair-service-img img {
    transform: scale(1.15) rotate(2deg);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(15,5,35,0.6) 100%);
    mix-blend-mode: multiply;
}

.hair-service-content {
    flex: 1;
}

.hair-service-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 215, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hair-service-content p {
    font-size: 0.92rem;
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 300;
}

.hair-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hair-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(255,215,0,0.12) 0%, rgba(255,105,180,0.12) 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hair-tag:hover {
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,105,180,0.2) 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* ==================
   MAKEUP & BRIDAL
   ================== */

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

.tab-btn-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(255,215,0,0.25);
    color: rgba(243,229,245,0.7);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn-new:hover {
    border-color: rgba(255,215,0,0.5);
    color: var(--accent-gold);
}

.tab-btn-new.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: transparent;
    color: #0F0523;
    box-shadow: 0 8px 25px rgba(255,215,0,0.35);
}

.tab-content-new {
    display: none;
}

.tab-content-new.active {
    display: block;
}

.makeup-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.makeup-card-new {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.makeup-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 15px 35px rgba(255,215,0,0.2);
}

.makeup-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.makeup-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.makeup-card-new:hover .makeup-img-box img {
    transform: scale(1.08);
}

.makeup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.7) 100%);
}

.makeup-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.makeup-content-box {
    padding: 18px;
}

.makeup-content-box h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.makeup-content-box p {
    font-size: 0.85rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.5;
}

/* Add-ons */
.addons-section-new {
    padding: 40px 0;
    text-align: center;
}

.addons-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
}

.addons-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.addon-card-new {
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,215,0,0.08) 0%, rgba(255,165,0,0.08) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.addon-card-new:hover {
    transform: translateY(-4px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 8px 20px rgba(255,215,0,0.15);
}

.addon-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.addon-card-new h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Bridal Services */
.bridal-services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bridal-card-new {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bridal-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 18px 40px rgba(255,215,0,0.25);
}

.bridal-card-new.featured {
    border-color: rgba(255,215,0,0.25);
}

.bridal-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.bridal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bridal-card-new:hover .bridal-img-wrapper img {
    transform: scale(1.08);
}

.bridal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.75) 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.bridal-card-content {
    padding: 22px;
}

.bridal-card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.bridal-card-content p {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.6;
}

/* Signature Looks */
.signature-looks-section-new {
    padding: 50px 0;
    text-align: center;
}

.signature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 35px;
}

.signature-looks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.signature-look-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.signature-look-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.signature-look-card:hover img {
    transform: scale(1.1);
}

.signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.3s ease;
}

.signature-look-card:hover .signature-overlay {
    background: linear-gradient(to bottom, rgba(15,5,35,0.3) 0%, rgba(15,5,35,0.9) 100%);
}

.look-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
}

.look-info p {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.8);
}

.signature-cta {
    margin-top: 30px;
}

.btn-bridal-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255,215,0,0.35);
}

.btn-bridal-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,215,0,0.5);
}

/* ==================
   FACIALS & SKINCARE
   ================== */

.facial-category-new {
    margin-bottom: 60px;
}

.facial-category-new:last-child {
    margin-bottom: 0;
}

.category-heading-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 35px;
}

.category-heading-new i {
    font-size: 2rem;
    color: var(--accent-gold);
}

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

.facial-card-new {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.facial-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 12px 30px rgba(255,215,0,0.2);
}

.facial-card-new.advanced {
    border-color: rgba(255,165,0,0.2);
}

.facial-img-wrapper {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.facial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facial-card-new:hover .facial-img-wrapper img {
    transform: scale(1.08);
}

.facial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.65) 100%);
}

.time-badge,
.advanced-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    z-index: 2;
}

.advanced-badge {
    background: linear-gradient(135deg, #FF69B4 0%, #FFA500 100%);
    border: none;
    color: #fff;
}

.facial-card-content {
    padding: 16px;
}

.facial-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.facial-card-content p {
    font-size: 0.85rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.4;
}

/* Specialized Treatments */
.specialized-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.specialized-card-new {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.4s ease;
}

.specialized-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 15px 35px rgba(255,215,0,0.25);
}

.specialized-img {
    width: 40%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.specialized-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialized-card-new:hover .specialized-img img {
    transform: scale(1.08);
}

.specialized-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(15,5,35,0.5) 100%);
}

.specialized-content {
    flex: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialized-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.specialized-content p {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.6;
}

/* Waxing & Grooming */
.waxing-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.waxing-card-new {
    position: relative;
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.waxing-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 12px 30px rgba(255,215,0,0.2);
}

.waxing-card-new.premium {
    border-color: rgba(255,215,0,0.25);
}

.waxing-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.premium-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.waxing-card-new h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.waxing-card-new p {
    font-size: 0.9rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.5;
}

/* ==================
   NAILS
   ================== */

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

.nail-card-lg {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nail-card-lg:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 20px 45px rgba(255,215,0,0.3);
}

.nail-img-lg {
    height: 65%;
    position: relative;
    overflow: hidden;
}

.nail-img-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nail-card-lg:hover .nail-img-lg img {
    transform: scale(1.08);
}

.nail-overlay-lg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.75) 100%);
}

.nail-badge-featured {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.nail-content-lg {
    padding: 28px;
}

.nail-content-lg h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.nail-content-lg p {
    font-size: 1rem;
    color: rgba(243,229,245,0.7);
    line-height: 1.6;
}

.nail-card-reg {
    background: linear-gradient(145deg, rgba(42,14,69,0.35) 0%, rgba(25,10,45,0.5) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nail-card-reg:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 12px 30px rgba(255,215,0,0.2);
}

.nail-card-reg.bridal-special {
    border-color: rgba(255,105,180,0.25);
}

.nail-img-reg {
    height: 150px;
    position: relative;
    overflow: hidden;
}

.nail-img-reg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nail-card-reg:hover .nail-img-reg img {
    transform: scale(1.08);
}

.nail-overlay-reg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15,5,35,0.65) 100%);
}

.bridal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #FF69B4 0%, #FFD700 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.nail-content-reg {
    padding: 16px;
}

.nail-content-reg h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.nail-content-reg p {
    font-size: 0.85rem;
    color: rgba(243,229,245,0.65);
    line-height: 1.4;
}

/* ==================
   CTA SECTION
   ================== */

.services-cta-new {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(42,14,69,0.9) 0%, rgba(15,5,35,0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-cta-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate-glow 30s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.services-cta-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content-new {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content-new h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.cta-content-new p {
    font-size: 1.2rem;
    color: rgba(243,229,245,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F0523;
    box-shadow: 0 10px 40px rgba(255,215,0,0.5);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF69B4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-primary span,
.btn-cta-primary i {
    position: relative;
    z-index: 1;
}

.btn-cta-primary:hover::before {
    opacity: 1;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255,215,0,0.7);
}

.btn-cta-secondary {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 2px solid rgba(37, 211, 102, 0.5);
    color: #25D366;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.btn-cta-secondary i {
    font-size: 1.3rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    z-index: 999;
    transition: all 0.4s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37,211,102,0.7);
}

/* ==================
   RESPONSIVE
   ================== */

@media (max-width: 992px) {
    .quick-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hair-two-col-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

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

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

    .nail-card-lg {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .quick-nav-tile {
        height: 160px;
    }

    .nav-tile-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .nav-tile-content h3 {
        font-size: 0.95rem;
    }

    .nav-tile-content p {
        font-size: 0.75rem;
    }

    .services-hero-new {
        min-height: auto;
        padding: 90px 0 50px;
    }

    .hero-content-centered {
        max-width: 100%;
        gap: 12px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 18px;
    }

    .hero-title-new {
        font-size: 2.2rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 10px;
        margin-top: 8px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .section-title-new {
        font-size: 2.2rem;
    }

    .service-tabs-new {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn-new {
        width: 100%;
        justify-content: center;
    }

    .makeup-grid-new {
        grid-template-columns: 1fr;
    }

    .bridal-services-grid-new {
        grid-template-columns: 1fr;
    }

    .signature-looks-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid-new {
        grid-template-columns: 1fr;
    }

    .facials-grid-new {
        grid-template-columns: 1fr;
    }

    .specialized-grid-new {
        grid-template-columns: 1fr;
    }

    .specialized-card-new {
        flex-direction: column;
    }

    .specialized-img {
        width: 100%;
        height: 200px;
    }

    .waxing-grid-new {
        grid-template-columns: 1fr;
    }

    .nails-showcase-grid {
        grid-template-columns: 1fr;
    }

    .nail-card-lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .nail-img-lg {
        height: 250px;
    }

    .cta-content-new h2 {
        font-size: 2rem;
    }

    .cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


