/* ==================================
   YLG Salon Website Stylesheet
   Brand Guidelines Compliant
   Fonts: Playfair Display (Titles), Lato (Body)
   Colors: Per YLG Brand Guidelines 2023
   ================================== */

/* ===== CSS Variables ===== */
:root {
    /* YLG Official Brand Colors (Brand Guidelines 2023) */
    --ylg-yellow: #F5C518;
    --ylg-green: #7AC142;
    --ylg-purple: #7B3F95;
    
    /* Primary Usage */
    --primary-color: #333333;
    --secondary-color: #7B3F95;
    --tertiary-color: #FFFFFF;
    --accent-yellow: #F5C518;
    --accent-green: #7AC142;
    
    /* Neutral Palette */
    --bg-light: #FFFFFF;
    --bg-grey: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    
    /* Typography - YLG Brand Guidelines */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-alt: 'Raleway', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Shadows - Clean & Minimal */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Top Contact Banner ===== */
.top-contact-banner {
    background: linear-gradient(135deg, #7B3F95 0%, #FF6B9D 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: 40px; /* Prevent layout shift */
    display: flex;
    align-items: center;
}

.top-contact-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-item .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.top-contact-item a {
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-contact-banner {
        padding: 10px 0;
    }
    
    .top-contact-list {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-contact-item {
        font-size: 0.85rem;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
    min-height: 70px; /* Prevent layout shift */
}

.navbar.scrolled {
    background: #fff;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    min-height: 70px; /* Prevent layout shift */
}

.logo-img {
    height: 50px;
    width: 50px; /* Fixed width prevents shift */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* Active state - background highlight only */
.nav-link.active {
    color: var(--secondary-color);
    background: var(--tertiary-color);
}

/* Hover state - just color change */
.nav-link:hover {
    color: var(--secondary-color);
}

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(123, 63, 149, 0.1) 0%, transparent 100%);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
    padding-left: 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    color: inherit;
}

/* 2025 Trend: Button shine effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--ylg-purple);
    color: #FFFFFF !important;
    border-color: var(--ylg-purple);
    box-shadow: 0 12px 24px rgba(123, 63, 149, 0.18);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-primary,
.btn-primary:visited,
.btn-primary:link,
.btn-primary:active {
    color: #FFFFFF !important;
}

.btn-primary svg,
.btn-primary .btn-icon {
    fill: #FFFFFF !important;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background: #6A3582;
    border-color: #6A3582;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 63, 149, 0.3);
    color: #FFFFFF !important;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--ylg-purple);
    border-color: var(--ylg-purple);
    box-shadow: 0 12px 24px rgba(123, 63, 149, 0.12);
}

.btn-secondary,
.btn-secondary:visited {
    color: var(--ylg-purple);
}

.btn-secondary:hover {
    background: var(--ylg-purple);
    color: #FFFFFF;
    border-color: var(--ylg-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 63, 149, 0.25);
}

.btn:active {
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 800;
}

.btn-block {
    width: 100%;
}

.btn-primary-nav {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* WhatsApp Button Extra Prominence */
.hero-ctas .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 12px 24px rgba(123, 63, 149, 0.18);
    }
    50% {
        box-shadow: 0 12px 32px rgba(123, 63, 149, 0.28);
    }
}

/* ===== Hero Section - Light & Professional ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F5F5F5 100%);
    color: var(--text-dark);
    padding: var(--spacing-xl) 0;
    overflow: visible;
}

/* Clean accent bar */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ylg-yellow) 0%, var(--ylg-green) 50%, var(--ylg-purple) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

/* Hero Badge - Clean & Simple */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 2px solid var(--ylg-purple);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--ylg-purple);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--ylg-yellow);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--text-dark);
}

/* Clean accent text - NO gradients, NO effects */
.gradient-text {
    color: var(--ylg-purple);
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ylg-yellow);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Hero Features - Clean Pills */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.hero-feature-item:hover {
    border-color: var(--ylg-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--ylg-green);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 2;
    margin-bottom: var(--spacing-xl);
}

.hero-ctas .btn {
    min-width: 210px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.hero-scroll-indicator span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ylg-purple);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(123, 63, 149, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

/* ===== Section Styles ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ylg-purple);
    margin-bottom: var(--spacing-xs);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* All Sections - Light & Clean */
section {
    background: var(--bg-light);
}

section:nth-child(even) {
    background: var(--bg-grey);
}

/* ===== Society of Smooth Highlight ===== */
.sos-highlight-section {
    background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
    color: var(--text-dark);
    border-top: 4px solid var(--ylg-yellow);
    border-bottom: 4px solid var(--ylg-green);
    padding: var(--spacing-xl) 0;
}

.sos-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sos-highlight-section .section-label {
    color: var(--ylg-purple);
}

.sos-highlight-section .section-title {
    color: var(--text-dark);
}

.sos-text .lead {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.sos-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.sos-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.sos-feature {
    background: #FFFFFF;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    border: 2px solid var(--ylg-purple);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* ===== Offers Section ===== */
.offers-section {
    background: var(--tertiary-color);
    padding: var(--spacing-md) 0;
}

.offers-carousel {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.offers-carousel::-webkit-scrollbar {
    display: none;
}

.offer-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-gold);
    border-radius: 12px;
    padding: var(--spacing-lg);
    color: #fff;
    text-align: center;
    scroll-snap-align: center;
    box-shadow: var(--shadow-lg);
}

.offer-card h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.offer-card p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-md);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--tertiary-color);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    color: var(--ylg-purple);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 700;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ylg-yellow);
}

.stat-label {
    font-size: 0.9rem;
    color: #FFFFFF;
    opacity: 0.95;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--ylg-purple);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--spacing-md);
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--ylg-purple);
    font-weight: 700;
}

.service-description {
    color: #666;
    margin-bottom: var(--spacing-md);
}

.service-list {
    display: grid;
    gap: var(--spacing-xs);
}

.service-list li {
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===== Brands Section ===== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.brand-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brands-commitment {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--tertiary-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.brand-text {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--tertiary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-sm);
}

/* Base gallery-item removed - using only Swiper-specific styles below to avoid conflicts */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    color: #fff;
}

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

.gallery-loading, .reviews-loading {
    text-align: center;
    padding: var(--spacing-lg);
    color: #666;
    font-style: italic;
}

/* ===== Reviews Section ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.reviewsSwiper .reviews-grid {
    display: flex;
}

.reviewsSwiper .review-card {
    height: auto;
    flex: 0 0 auto;
    width: min(360px, 90vw);
}

.reviewsSwiper .swiper-pagination {
    position: relative;
    margin-top: var(--spacing-md);
}

.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    color: var(--ylg-purple);
}

.gallerySwiper {
    width: 100%;
    overflow: visible;
    padding: 10px 0; /* Add vertical padding */
}

.gallerySwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    padding-bottom: 20px; /* Space for pagination */
}

.gallerySwiper .swiper-slide {
    height: 500px; /* LARGE images - consistent with gallery-item */
    display: flex;
    width: auto;
    min-width: 400px; /* Ensure minimum width */
}

@media (max-width: 768px) {
    .gallerySwiper .swiper-slide {
        height: 350px; /* Smaller on mobile */
        min-width: 300px;
    }
}

/* Gallery item styles - CONSOLIDATED (no duplicate) */
.gallerySwiper .gallery-item,
.gallery-item {
    width: 100%;
    height: 100%; /* Inherits from parent .swiper-slide */
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Consistent border radius */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallerySwiper .gallery-item:hover,
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.gallerySwiper .gallery-item img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover zoom effect on images */
.gallerySwiper .gallery-item:hover img,
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: var(--ylg-purple) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(123, 63, 149, 0.3);
    transform: scale(1.1);
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold !important;
    color: var(--ylg-purple) !important;
}

/* FORCE both buttons to work - override everything */
.gallery-button-next,
.gallery-button-prev {
    z-index: 1000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.gallery-button-prev {
    left: 10px !important;
}

.gallery-button-next {
    right: 10px !important;
}

.gallerySwiper .swiper-pagination {
    position: relative;
    margin-top: var(--spacing-md);
}

.gallerySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--ylg-purple);
    opacity: 0.3;
}

.gallerySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--ylg-purple);
}

.review-card {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review-author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tertiary-color);
    overflow: hidden;
}

.review-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 4px;
    color: var(--secondary-color);
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.review-likes {
    font-size: 0.9rem;
    color: #999;
}

.reviews-cta {
    text-align: center;
}

/* ===== Blog Section ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: #999;
    margin-bottom: var(--spacing-sm);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--ylg-purple);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.blog-read-more {
    color: var(--ylg-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 8px;
}

/* ===== Individual Blog Post Pages ===== */
.blog-post-page {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.blog-post-page .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-lg);
}

.blog-back-link {
    color: var(--ylg-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.blog-back-link:hover {
    text-decoration: underline;
}

.blog-category {
    display: inline-block;
    background: var(--ylg-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: var(--spacing-md);
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.blog-post-image {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    grid-column: 1;
}

.blog-post-content h2 {
    color: var(--ylg-purple);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.blog-post-content h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.blog-post-content h4 {
    color: var(--ylg-green);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.blog-post-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-light);
}

.blog-post-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.blog-post-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.blog-post-cta {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.blog-post-sidebar {
    grid-column: 2;
}

.sidebar-widget {
    background: var(--bg-grey);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.sidebar-widget h4 {
    color: var(--ylg-purple);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.sidebar-widget p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: var(--spacing-sm);
}

.related-links a {
    color: var(--ylg-purple);
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: var(--spacing-xs);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.related-links a:hover {
    background: #FFFFFF;
    padding-left: var(--spacing-sm);
}

@media (max-width: 768px) {
    .blog-post-page .container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-sidebar {
        grid-column: 1;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--tertiary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-details p, .contact-details a {
    color: #666;
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #FFFFFF;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ylg-yellow);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--ylg-purple);
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: #E0E0E0;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--ylg-yellow);
}

.footer-links a:hover {
    color: var(--ylg-yellow);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--ylg-purple);
}

.footer-social {
    text-align: center;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* ===== Animations - 2025 UX Trends ===== */

/* Smooth fade in up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2025 Trend: Magnetic hover effect for cards */
.service-card, .blog-card, .review-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover, .blog-card:hover, .review-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* 2025 Trend: Smooth icon bounce on hover */
.hero-feature-item:hover svg,
.value-icon:hover svg {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* 2025 Trend: Ripple effect on click */
.btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Subtle fade-in for content (no layout shift) */
section {
    animation: gentleFadeIn 0.4s ease-out;
}

@keyframes gentleFadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* sectionFadeIn removed - caused layout shifts */

/* 2025 Trend: Image zoom on hover */
.service-image img,
.blog-image img,
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img,
.blog-card:hover .blog-image img,
.gallery-item:hover img {
    transform: scale(1.08);
}

/* 2025 Trend: Underline slide animation for links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ylg-yellow);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only active page gets the underline, not hover */
.nav-link.active::after {
    width: 100%;
}

/* ===== All Services Page Styles ===== */
.all-services-section {
    padding: 60px 0;
}

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

.service-item-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    will-change: transform;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(123, 63, 149, 0.2);
    border-color: #7B3F95;
}

.service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7B3F95 0%, #FF6B9D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-category-badge {
    display: inline-block;
    background: #f0e6f6;
    color: #7B3F95;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-item-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    gap: 10px;
}

.btn-book-service {
    flex: 1;
    background: linear-gradient(135deg, #7B3F95 0%, #FF6B9D 100%);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book-service:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(123, 63, 149, 0.4);
}

.btn-learn-more {
    flex: 1;
    background: white;
    color: #7B3F95;
    border: 2px solid #7B3F95;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background: #7B3F95;
    color: white;
}

.services-filter-section {
    background: #f8f9fa;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.services-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-filter-btn {
    padding: 10px 20px;
    border: 2px solid #7B3F95;
    background: white;
    color: #7B3F95;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.category-filter-btn.active {
    background: #7B3F95;
    color: white;
}

.category-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 63, 149, 0.3);
}

@media (max-width: 768px) {
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== Services CTA Section ===== */
.services-cta-section {
    background: linear-gradient(135deg, #7B3F95 0%, #FF6B9D 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #7B3F95;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #7B3F95;
}

/* ===== Scroll Spy Navigation (Right Side) ===== */
.scroll-spy {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: none; /* Hidden on mobile by default */
}

@media (min-width: 1200px) {
    .scroll-spy {
        display: block;
    }
}

.scroll-spy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scroll-spy-item {
    margin: 12px 0;
}

.scroll-spy-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-spy-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    margin-left: 8px;
}

.scroll-spy-label {
    font-size: 0.75rem;
    color: transparent;
    font-weight: 600;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Active state */
.scroll-spy-link.active .scroll-spy-dot {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 4px rgba(123, 63, 149, 0.2);
}

.scroll-spy-link.active .scroll-spy-label {
    color: var(--secondary-color);
    max-width: 150px;
    opacity: 1;
}

/* Hover state */
.scroll-spy-link:hover .scroll-spy-dot {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.scroll-spy-link:hover .scroll-spy-label {
    color: var(--text-dark);
    max-width: 150px;
    opacity: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 32px;
        --spacing-xl: 48px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Dropdown Menu Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-grey);
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 12px 24px;
        font-size: 0.95rem;
        border-left: none;
    }
    
    .nav-dropdown .dropdown-menu a:hover {
        padding-left: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .gallery-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 40px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* ===== Services Page Styles ===== */
.services-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/assets/images/services-hero.jpg') center/cover no-repeat;
    color: #fff;
    margin-top: 70px;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-lg) var(--spacing-md);
}

.services-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
}

.services-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.services-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-quick-nav {
    background: var(--tertiary-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.quick-nav-grid {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
    scrollbar-width: thin;
}

.quick-nav-grid::-webkit-scrollbar {
    height: 4px;
}

.quick-nav-grid::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.quick-nav-item {
    flex: 0 0 auto;
    padding: 12px 24px;
    background: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.quick-nav-item:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-detail-section {
    padding: var(--spacing-xl) 0;
}

.service-detail-section.alternate-bg {
    background: var(--tertiary-color);
}

.service-detail-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-category-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.service-detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.service-detail-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-detail-card {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.service-detail-name {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.service-detail-description {
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-features-list strong {
    color: var(--primary-color);
}

.service-benefits {
    background: var(--tertiary-color);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.service-benefits strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.service-benefits p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 1px solid #e0e0e0;
}

.service-duration,
.service-price-note {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Bridal Packages */
.bridal-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.bridal-package-card {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.bridal-package-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.bridal-package-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.bridal-package-card.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-name {
    font-size: 1.75rem;
    margin: var(--spacing-md) 0 var(--spacing-sm);
    color: var(--primary-color);
}

.package-description {
    color: #666;
    margin-bottom: var(--spacing-md);
}

.package-includes {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.package-includes li {
    padding: var(--spacing-xs) 0;
    color: #555;
    line-height: 1.6;
}

.package-cta {
    text-align: center;
}

.bridal-additional-services {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.bridal-additional-services h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.additional-service-item {
    padding: var(--spacing-md);
    background: var(--tertiary-color);
    border-radius: 8px;
}

.additional-service-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.05rem;
}

.additional-service-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    color: #fff;
}

.why-choose-section .section-title {
    color: #fff;
    margin-bottom: var(--spacing-lg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.why-choose-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.why-choose-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
}

/* Services CTA Section */
.services-cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--tertiary-color);
    text-align: center;
}

.services-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.services-cta-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.services-cta-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* ===== Service Mini-Page Styles ===== */
.service-page-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/assets/images/service-hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    margin-top: 70px;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb span {
    margin: 0 8px;
}

.service-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
}

.service-page-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.service-hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.service-content-section {
    padding: var(--spacing-xl) 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-xl);
}

.service-main-content {
    max-width: 800px;
}

.content-heading {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.benefit-item {
    padding: var(--spacing-md);
    background: var(--tertiary-color);
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

.process-list {
    margin: var(--spacing-md) 0 var(--spacing-md) 24px;
    line-height: 1.8;
}

.process-list li {
    margin-bottom: var(--spacing-sm);
    color: #555;
}

.process-list strong {
    color: var(--primary-color);
}

.care-tips-list {
    margin: var(--spacing-md) 0 var(--spacing-md) 24px;
    line-height: 1.8;
}

.care-tips-list li {
    margin-bottom: var(--spacing-xs);
    color: #555;
}

.cta-box {
    background: var(--gradient-gold);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    color: #fff;
    margin: var(--spacing-xl) 0;
}

.cta-box h3 {
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.cta-box p {
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.faq-heading {
    font-size: 1.75rem;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--primary-color);
}

.faq-container {
    margin-bottom: var(--spacing-xl);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--tertiary-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.related-services {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid #e0e0e0;
}

.related-services h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.related-card {
    padding: var(--spacing-md);
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.related-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.related-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-card {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    color: #555;
    line-height: 1.6;
}

.contact-info a {
    color: var(--secondary-color);
    font-weight: 600;
}

.highlights-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.highlights-list li {
    padding: var(--spacing-xs) 0;
    color: #555;
    font-size: 0.95rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin: 0;
}

.brands-list p {
    padding: var(--spacing-xs) 0;
    color: #555;
    margin: 0;
}

.location-context {
    background: var(--tertiary-color);
    padding: var(--spacing-lg) 0;
}

.location-context h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.location-context p {
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        min-height: 350px;
    }
    
    .service-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .service-hero-ctas .btn {
        width: 100%;
    }
    
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

/* ===== Services Page Styles ===== */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.page-hero.services-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--ylg-purple, #7B3F95) 100%);
}

.hero-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: underline;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-family: var(--font-body);
}

.services-nav-section {
    background: white;
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.service-nav-link {
    padding: 10px 20px;
    background: var(--bg-grey);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.service-nav-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.service-category-section {
    padding: var(--spacing-xl) 0;
}

.service-category-section.bg-light {
    background: var(--bg-grey);
}

.service-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.service-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    flex: 1;
}

.service-badge {
    background: linear-gradient(135deg, var(--ylg-yellow, #F5C518) 0%, #FFA500 100%);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: var(--spacing-sm);
}

.service-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    color: var(--ylg-green, #7AC142);
    font-weight: bold;
    margin-right: 8px;
}

.service-pricing {
    background: var(--bg-grey);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin: var(--spacing-md) 0;
}

.service-pricing h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span {
    font-weight: 700;
    color: var(--secondary-color);
}

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

.service-subsection {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-radius: 12px;
}

.service-subsection h3 {
    margin-bottom: var(--spacing-md);
}

.quick-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.quick-service-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm);
    background: var(--bg-grey);
    border-radius: 8px;
    align-items: center;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
}

.service-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-grey);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-display);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--ylg-purple, #7B3F95) 100%);
    text-align: center;
    color: white;
}

.services-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.services-cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.bridal-card {
    border-top: 4px solid var(--ylg-yellow, #F5C518);
}

@media (max-width: 768px) {
    .services-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 var(--spacing-sm);
    }
    
    .service-nav-link {
        white-space: nowrap;
    }
    
    .service-card-header {
        flex-direction: column;
    }
    
    .service-badge {
        margin-left: 0;
        margin-top: var(--spacing-xs);
        align-self: flex-start;
    }
    
    .quick-service-list {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== Blog Listing Page Styles ===== */
.blog-listing-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.blog-category {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ===== Special Offers Section - Image Poster Based ===== */
.special-offers-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Weekly Offers - Poster Grid */
.offers-posters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

/* When special offer is active, show 4 columns on large screens */
.offers-posters-grid[data-special-offer="active"] {
    grid-template-columns: repeat(4, 1fr);
}

/* Special offer card gets a subtle glow effect */
.offer-poster-special .offer-poster-image {
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}

@media (max-width: 1200px) {
    .offers-posters-grid,
    .offers-posters-grid[data-special-offer="active"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.offer-poster-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.offer-poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.offer-poster-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.offer-poster-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-poster-card:hover .offer-poster-image {
    transform: scale(1.05);
}

.offer-poster-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-poster-card:hover .offer-poster-cta {
    opacity: 1;
}

.cta-icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

/* Current Special Offers Poster Section */
.current-offers-poster-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px dashed var(--border-color);
}

.section-subtitle-small {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* No Offers Message */
.no-offers-message {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: none;
}

.current-offers-poster-section[data-offer-status="no-offers"] .no-offers-message {
    display: block;
}

.current-offers-poster-section[data-offer-status="has-offers"] .no-offers-message {
    display: none;
}

.no-offers-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.no-offers-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.no-offers-subtext {
    font-size: 1rem;
    color: var(--text-light);
}

/* Special Offers Poster */
.special-offers-poster {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: none;
}

.current-offers-poster-section[data-offer-status="has-offers"] .special-offers-poster {
    display: block;
}

.current-offers-poster-section[data-offer-status="no-offers"] .special-offers-poster {
    display: none;
}

.special-poster-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
}

.special-poster-image:hover {
    transform: scale(1.02);
}

.special-offer-book-btn {
    font-size: 1.1rem;
    padding: 16px 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Upload Reminder Badge */
.upload-reminder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 193, 7, 0.95);
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 5;
    border: 2px solid #fff;
}

/* Offer Disclaimer */
.offer-disclaimer {
    text-align: center;
    margin-top: var(--spacing-lg);
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATION ===== */

/* Mobile: Base Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 6px;
        --spacing-sm: 12px;
        --spacing-md: 20px;
        --spacing-lg: 32px;
        --spacing-xl: 48px;
    }
    
    html {
        font-size: 14px;
    }
    
    body {
        padding-top: 70px; /* Account for fixed navbar */
    }
    
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }
}

/* Mobile: Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
    
    .nav-wrapper {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg) var(--spacing-md);
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--spacing-sm);
        font-size: 1.1rem;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Mobile: Hero Section */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile: Buttons */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-icon {
        padding: 10px 20px;
    }
}

/* Mobile: Section Spacing */
@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Mobile: Service Cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Mobile: Features Section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

/* Mobile: Testimonials */
@media (max-width: 768px) {
    .review-card {
        padding: var(--spacing-md);
        min-height: auto;
    }
    
    .review-author-image {
        width: 50px;
        height: 50px;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .reviewsSwiper .swiper-button-next,
    .reviewsSwiper .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .reviewsSwiper .swiper-button-next:after,
    .reviewsSwiper .swiper-button-prev:after {
        font-size: 18px !important;
    }
}

/* Mobile: Gallery */
@media (max-width: 768px) {
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 18px !important;
    }
}

/* Mobile: Offers Section - Poster Based */
@media (max-width: 768px) {
    .offers-posters-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .offer-poster-card {
        border-radius: 12px;
    }
    
    .offer-poster-cta {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
        padding: var(--spacing-sm);
        font-size: 1rem;
    }
    
    .section-subtitle-small {
        font-size: 1.5rem;
    }
    
    .no-offers-icon {
        font-size: 3rem;
    }
    
    .no-offers-text {
        font-size: 1.1rem;
    }
    
    .no-offers-subtext {
        font-size: 0.9rem;
    }
    
    .special-offer-book-btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 32px;
    }
}

/* Mobile: Blog Cards */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        height: 200px;
        width: 100%;
    }
    
    .blog-content {
        padding: var(--spacing-md);
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
}

/* Mobile: Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-item {
        padding: var(--spacing-sm);
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* Mobile: Footer */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Mobile: Service Details Page */
@media (max-width: 768px) {
    .service-detail-card {
        padding: var(--spacing-md);
    }
    
    .price-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }
    
    .price-list li span {
        font-size: 1.1rem;
    }
}

/* Mobile: Stats/Numbers Section */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-card {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Mobile: Forms */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: var(--spacing-sm);
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* Mobile: Tables (if any) */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    th, td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Mobile: Utility Classes */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
    
    .text-center-mobile {
        text-align: center !important;
    }
    
    .full-width-mobile {
        width: 100% !important;
    }
}

/* Mobile: Smooth Scrolling and Touch */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    a, button {
        touch-action: manipulation;
    }
}

/* Mobile: Accessibility - Larger Touch Targets */
@media (max-width: 768px) {
    a, button, .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Extra Small Devices (< 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

