/* CSS Variables for Modern Design System */
:root {
    --primary-color: #d4a5a5;
    --primary-dark: #c38b8b;
    --primary-darker: #a56464;
    --primary-light: #e8c4c4;
    --accent-color: #f5e6e6;
    --text-dark: #1f2933;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gradient: linear-gradient(135deg, #f5e6e6 0%, #ffffff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #d4a5a5 0%, #c38b8b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(212, 165, 165, 0.95) 0%, rgba(195, 139, 139, 0.9) 100%);
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #c38b8b;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #c38b8b;
    outline-offset: 2px;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Container Padding */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Header Styles - Modern Glass Morphism */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    will-change: box-shadow, background;
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 165, 165, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 968px) {
    .header-container {
        padding: 1rem 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 12px;
    }
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-icon {
    height: 50px;
    width: 50px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(195, 139, 139, 0.1);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #1f2933;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    display: block;
}

@media (max-width: 968px) {
    .main-nav a {
        padding: 0.75rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-nav a:hover {
        padding-left: 1rem;
        background-color: rgba(195, 139, 139, 0.05);
    }
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c38b8b;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #c38b8b;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .header-actions {
        width: 100%;
        order: 3;
        justify-content: flex-start;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .header-actions a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

.call-link {
    text-decoration: none;
    color: #1f2933;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .call-link {
        font-size: 0.9rem;
        justify-content: center;
    }
}

.directions-btn {
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    border: 2px solid #c38b8b;
    color: #c38b8b;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .directions-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

.directions-btn:hover {
    background-color: #c38b8b;
    color: #ffffff;
}

.book-online-btn {
    padding: 0.625rem 1.25rem;
    background-color: #c38b8b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .book-online-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

.book-online-btn:hover {
    background-color: #a56464;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 5px;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2933;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Enhanced with Modern Effects */
.hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(195, 139, 139, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 968px) {
    .hero {
        min-height: 550px;
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding: 3rem 0;
    }
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 230, 230, 0.6) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(212, 165, 165, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(0.5px);
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.95), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1f2933 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
    .hero h1 {
        line-height: 1.4;
        margin-bottom: 2rem;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        margin-bottom: 1.5rem;
    }
}

.hero-button {
    margin-top: 2rem;
}

.hero-button .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(195, 139, 139, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #c38b8b 0%, #a56464 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 139, 139, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(195, 139, 139, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c38b8b;
    border: 2px solid #c38b8b;
}

.btn-secondary:hover {
    background-color: #c38b8b;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #1f2933;
    border: 2px solid #1f2933;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(31, 41, 51, 0.1);
}

.btn-outline:hover {
    background-color: #1f2933;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 51, 0.2);
}

/* Section Styles */
section {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    position: relative;
}

@media (max-width: 968px) {
    section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .health-safety .container,
    .team-section > .container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, #1f2933 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    section h2 {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(195, 139, 139, 0.3);
}

.section-intro {
    text-align: center;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.9;
    padding: 0 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-intro {
        margin-bottom: 2rem;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .section-intro {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Overview */
.services-overview {
    background-color: #ffffff;
}

/* Nail Gallery Section - Modern Grid with Hover Effects */
.nail-gallery-section {
    background: var(--bg-gradient);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nail-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .nail-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nail-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .nail-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.nail-gallery .gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-white);
    border: 2px solid transparent;
}

.nail-gallery .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.nail-gallery .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.nail-gallery .gallery-item:hover::before {
    opacity: 0.1;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 41, 51, 0.95) 0%, rgba(31, 41, 51, 0.7) 50%, transparent 100%);
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.nail-gallery .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-description {
    font-size: 1.375rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 3.5rem;
    line-height: 1.9;
    text-align: center;
    font-weight: 500;
    padding: 0 2rem;
}

.services-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .services-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .services-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-buttons {
        gap: 0.75rem;
    }
}

.services-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* About Section - Enhanced Background */
.about-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 139, 139, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 1.5rem;
    }
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
    width: 100px;
}

.subheading {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 500;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mission-list li {
    padding-left: 3rem;
    position: relative;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-light);
}

.mission-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-dark);
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    background: var(--accent-color);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(195, 139, 139, 0.2);
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid rgba(212, 165, 165, 0.2);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Health & Safety Section */
.health-safety {
    background: var(--bg-white);
    position: relative;
    padding: 6rem 0;
}

.health-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.health-safety .container {
    max-width: 900px;
    background: var(--bg-gradient);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 165, 165, 0.2);
    position: relative;
    overflow: hidden;
}

.health-safety .container::before {
    content: '🛡️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

.health-safety p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 100%;
    margin: 0;
    line-height: 1.9;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team-section {
    background: var(--bg-white);
    position: relative;
    padding: 6rem 0;
}

.team-section > .container {
    max-width: 900px;
    background: var(--bg-gradient);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 165, 165, 0.2);
    position: relative;
    overflow: hidden;
}

.team-section > .container::before {
    content: '👥';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.team-section > .container > p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 100%;
    margin: 0;
    text-align: center;
    line-height: 1.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 139, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition);
    border: 2px solid rgba(212, 165, 165, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
    font-weight: 700;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::after {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.9;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.testimonial-author h5 {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
}

.testimonial-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
}

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

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        gap: 1rem;
    }
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(212, 165, 165, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2933;
}

.contact-card p {
    color: #4a5568;
}

.contact-card a {
    color: #c38b8b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #a56464;
}

.contact-form-container {
    max-width: 600px;
    margin: 3rem auto;
}

.contact-form {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 165, 165, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1f2933;
}

.required {
    color: #c38b8b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
    min-height: 44px;
}

@media (max-width: 480px) {
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.15);
    transform: translateY(-2px);
    background: var(--bg-white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e53e3e;
    background-color: #fff5f5;
}

.error-message {
    display: none;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
    border: 1px solid #f5c6cb;
}

/* Loading state for buttons */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Loading Animation */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img.error {
    opacity: 0.5;
    background-color: #f0f0f0;
}

/* Skeleton loading for images */
img:not(.loaded):not(.error) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.map-container {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Business Hours Section */
.hours-section {
    background-color: #f9fafb;
}

.hours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 2rem auto;
}

.hours-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 165, 165, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hours-card:hover::before {
    transform: scaleX(1);
}

.hours-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.hours-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 0.75rem;
}

.hours-time {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
}

.hours-note {
    text-align: center;
    color: #4a5568;
    font-size: 0.95rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Footer - Modern Dark Design */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1f2933 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(195, 139, 139, 0.5);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #c38b8b;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c38b8b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.875rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #c38b8b 0%, #a56464 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(195, 139, 139, 0.5);
}

/* Floating Mobile CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    z-index: 998;
    display: none;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta:hover {
    background: linear-gradient(135deg, #c38b8b 0%, #a56464 100%);
    transform: translateX(-50%) translateY(-4px) scale(1.05);
    box-shadow: 0 8px 35px rgba(195, 139, 139, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(195, 139, 139, 0.4);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(195, 139, 139, 0.6);
        transform: translateX(-50%) scale(1.02);
    }
}

/* Services Menu Styles */
.services-menu-section {
    background-color: #ffffff;
}

/* Menu PDF Section */
.menu-pdf-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 1rem;
}

.menu-pdf-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.menu-pdf-container h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 1rem;
}

.menu-pdf-container > p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pdf-viewer-container {
    margin: 2rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.pdf-viewer-container object,
.pdf-viewer-container embed {
    width: 100%;
    min-height: 600px;
    display: block;
    border: none;
}

.pdf-download-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pdf-download-links .btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
}

.menu-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(195, 139, 139, 0.3);
}

.category-description {
    text-align: center;
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid rgba(212, 165, 165, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(195, 139, 139, 0.2);
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2933;
    flex: 1;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.menu-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(195, 139, 139, 0.2);
}

.menu-note p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

.menu-note a {
    color: #c38b8b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-note a:hover {
    color: #a56464;
}

.services-cta {
    background-color: #f9fafb;
    padding: 4rem 0;
    text-align: center;
}

.cta-note {
    margin-top: 1rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.cta-note a {
    color: #c38b8b;
    text-decoration: none;
    font-weight: 600;
}

.cta-note a:hover {
    color: #a56464;
    text-decoration: underline;
}

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(195, 139, 139, 0.1) 0%, rgba(165, 100, 100, 0.05) 100%);
    padding: 4rem 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2933;
}

.services-intro {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.pedicures-section {
    background-color: #ffffff;
}

.pedicures-section p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.pedicure-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pedicure-tier {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pedicure-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

.pedicure-tier h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2933;
}

.pedicure-tier p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-gallery {
    background-color: #f9fafb;
}

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

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.additional-services {
    background-color: #ffffff;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2933;
}

.service-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        background-color: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        padding-top: 1rem;
        animation: slideDown 0.3s ease;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-icon {
        height: 45px;
        width: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }
    
    .hero-slideshow::after {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .menu-item-price {
        margin-left: 0;
    }
    
    .hours-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .floating-cta {
        display: flex;
    }
    
    .back-to-top {
        bottom: 90px;
    }
    
    .nail-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .pdf-viewer-container iframe {
        min-height: 500px;
    }
    
    .pdf-download-links {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-download-links .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .service-cards,
    .testimonials,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0;
    }
    
    .menu-intro {
        font-size: 1rem;
        padding: 0;
    }
    
    .menu-category h3 {
        font-size: 1.75rem;
    }
    
    .menu-item {
        padding: 1.25rem;
    }
    
    .menu-item-name {
        font-size: 1.125rem;
    }
    
    .menu-item-price {
        font-size: 1.125rem;
    }
    
    .hours-card {
        padding: 1.5rem;
    }
    
    .hours-time {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 12px;
    }

    .logo-icon {
        height: 40px;
        width: 40px;
    }
    
    .logo-text {
        font-size: 1.35rem;
    }
    
    .logo-link {
        gap: 0.5rem;
    }

    .hero {
        padding: 2.5rem 0;
        min-height: 400px;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .hero-button .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        margin-top: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.125rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 20px;
    }
    
    .floating-cta {
        bottom: 15px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
