/* Tyca Beaute - Custom CSS V2 (Improved Design) */
/* Insert this in WPCode as "CSS Snippet" */
/* This is the enhanced version 2 CSS for the improved homepage design */

/* ============================================
   VERSION 2 - ENHANCED HOMEPAGE STYLES
   ============================================ */

/* Hero Section V2 - Modern & Impactful */
.hero-v2 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9b51e0 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-v2-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-v2-text {
    color: white;
}

.hero-v2-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-v2-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-v2-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-v2-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-v2-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section V2 - Enhanced */
.about-v2 {
    padding: 6rem 0;
    background: #ffffff;
}

.about-v2-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-v2-image-wrapper {
    position: relative;
}

.about-v2-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.about-v2-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.about-v2-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.about-v2-text {
    padding: 2rem 0;
}

.section-title-v2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d2d44;
    line-height: 1.2;
}

.section-subtitle-v2 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-v2-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}

.about-v2-description p {
    margin-bottom: 1.5rem;
}

.about-v2-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Services Section V2 - Enhanced */
.services-v2 {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card-v2 {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-v2:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-v2:hover .service-card-overlay {
    opacity: 1;
}

.service-card-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d44;
    margin-bottom: 1rem;
}

.service-card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* View All Services Button */
.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    gap: 0.5rem;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #9b51e0 100%);
}

.view-all-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover::after {
    transform: translateX(5px);
}

/* Features Section V2 - Enhanced */
.features-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.features-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.features-v2-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-v2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card-v2 p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section V2 - New */
.cta-section-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-v2-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-v2-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-v2-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-v2-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-v2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-v2-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-v2-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Contact Section V2 - Enhanced */
.contact-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
}

.contact-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-v2 h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-item-v2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon-v2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-v2 strong {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.opening-hours-v2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.opening-hours-v2 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hours-list-v2 {
    list-style: none;
    padding: 0;
}

.hours-list-v2 li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list-v2 .day {
    color: rgba(255, 255, 255, 0.9);
}

.hours-list-v2 .time {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hours-list-v2 .time.closed {
    color: #e91e63;
}

.contact-form-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-v2 {
    margin-bottom: 1.5rem;
}

.form-group-v2 label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.form-group-v2 input,
.form-group-v2 textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-v2 textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-v2 {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.map-container-v2 {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Instagram & Map Section V2 - Side by Side */
.instagram-map-section-v2 {
    padding: 6rem 0;
    background: white;
}

.instagram-map-grid-v2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.instagram-map-grid-v2 > p {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

.instagram-container-v2,
.map-container-v2-side {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.instagram-container-v2 h2,
.map-container-v2-side h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
    font-weight: 700;
}

.instagram-container-v2 p,
.map-container-v2-side p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.instagram-embed-container-v2 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-container-v2-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-map-v2 {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design V2 */
@media (max-width: 968px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-v2-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .services-grid-v2 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .instagram-map-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 640px) {
    .hero-v2 {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-v2-stats {
        justify-content: center;
    }
    
    .hero-v2-buttons {
        flex-direction: column;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }
    
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .instagram-map-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .instagram-container-v2 h2,
    .map-container-v2-side h2 {
        font-size: 2rem;
    }
}



/* Tyca Beaute - Custom CSS for WPCode */
/* Insert this in WPCode as "CSS Snippet" */
/* Works on ALL pages - Safe to use site-wide */

/* 🚨 CRITICAL FIX - Force full width on WordPress/Elementor containers */
.elementor-section,
.elementor-container,
.e-con,
.e-con-full,
.elementor-top-section {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove default WordPress page wrapper padding */
.site-content,
.content-area,
#content,
#primary,
.site-main,
article {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
}

/* Ensure body and main wrappers are full width */
body,
#page,
#main,
.site {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* 🔒 GLOBAL OVERFLOW FIX - Prevents white strips on sides */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-purple: #9b51e0;
    --primary-violet: #7b2cbf;
    --accent-pink: #e91e63;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d44;
    --text-light: #ffffff;
    --gold: #ffd700;
}

/* Smooth scroll for all pages */
html {
    scroll-behavior: smooth;
}

/* Font family - only applies to Tyca sections to avoid WordPress conflicts */
#navbar,
.hero,
.services,
.features,
.about,
.contact,
.gallery,
footer.tyca-footer,
footer:has(.footer-content) {
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(155, 81, 224, 0.1);
}

nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(155, 81, 224, 0.2);
}

.nav-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow,
.submenu-arrow {
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

/* Accessibility - Focus states */
.nav-links a:focus-visible,
.book-now-btn:focus-visible,
.cta-button:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-purple);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

.nav-cta {
    margin-left: 0.5rem;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink)) !important;
    padding: 0.6rem 1.3rem !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3);
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 81, 224, 0.5);
    color: white !important;
}

.book-now-btn::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--dark-bg);
    min-width: 220px;
    max-width: 280px;
    list-style: none;
    padding: 0.8rem 0;
    margin-top: 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(155, 81, 224, 0.2);
    overflow-x: clip;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    position: relative;
}

.dropdown-menu > li > a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown-menu > li > a:hover {
    background: rgba(155, 81, 224, 0.2);
    color: var(--primary-purple);
    padding-left: 2rem;
}

/* Submenu Styles (Nested Dropdown) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu {
    position: absolute;
    left: calc(100% + 0.5rem);
    top: 0;
    background: var(--dark-bg);
    min-width: 200px;
    max-width: 250px;
    list-style: none;
    padding: 0.8rem 0;
    margin-left: 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(155, 81, 224, 0.2);
    overflow-x: clip;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submenu a:hover {
    background: rgba(155, 81, 224, 0.2);
    color: var(--primary-purple);
    padding-left: 2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hamburger menu animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section - Full Width */
.hero {
    height: 100vh;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 50%, var(--primary-violet) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(155,81,224,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(155, 81, 224, 0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
}

.booking-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
    text-align: center;
}

.booking-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.6);
}

/* Services Section - Full Width */
.services {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 6rem 2rem;
    background: var(--light-bg);
    overflow-x: clip;
    position: relative;
}

/* Tyca-specific container - breaks out of theme/Elementor containers for true full-width */
.tyca-container {
    max-width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    position: relative;
}

/* Edge-to-edge sections (no side padding) */
.tyca-container.full-bleed {
    padding-left: 0;
    padding-right: 0;
}

/* Ensure Elementor containers are not affected */
.elementor-container,
.e-con,
.e-con-inner,
.e-con-boxed,
.e-con-full,
.elementor-row,
.elementor-column,
.elementor-widget-container {
    /* Let Elementor handle its own width - no interference */
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    will-change: transform;
}

.service-card:hover {
    will-change: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(155, 81, 224, 0.3);
}

.service-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(155, 81, 224, 0.1) 100%);
    pointer-events: none;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content h3 span {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: #666;
    line-height: 1.8;
}

/* Features Section - Full Width */
.features {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-violet) 100%);
    color: var(--text-light);
    overflow-x: clip;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section - Full Width */
.about {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 6rem 2rem;
    background: var(--light-bg);
    overflow-x: clip;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 20px 50px rgba(155, 81, 224, 0.3);
    overflow: hidden;
    padding: 2rem;
    box-sizing: border-box;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

/* Contact Section - Full Width */
.contact {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 6rem 2rem;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: clip;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.opening-hours {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.opening-hours h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
}

.hours-list .time {
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section - Full Width */
.gallery {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 6rem 2rem;
    background: var(--light-bg);
    overflow-x: clip;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.gallery-item:hover {
    will-change: auto;
}
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 81, 224, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Page Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-violet) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--text-light);
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-hero .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info h2,
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-intro,
.form-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.opening-hours-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
}

.opening-hours-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.opening-hours-section .hours-list {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.opening-hours-section .time.closed {
    color: var(--accent-pink);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(155, 81, 224, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.15);
}

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(155, 81, 224, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-group select:focus {
            outline: none;
            border-color: var(--primary-purple);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group select option {
            background: var(--dark-bg);
            color: var(--text-light);
        }

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e91e63;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #4caf50;
}

/* Footer Styles - Full Width */
footer {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
    overflow-x: clip;
    position: relative;
}

/* Footer container - ensure full width */
footer > .container,
footer .container,
footer > .tyca-container,
footer .tyca-container {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 81, 224, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-purple);
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-purple);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .book-now-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark-bg);
                width: 100%;
                padding: 2rem;
                transition: left 0.3s ease;
                gap: 0;
                align-items: stretch;
                z-index: 1000;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-links > li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links > li:last-child {
                border-bottom: none;
            }
            
            .nav-links a {
                padding: 1rem 0;
                font-size: 1rem;
            }
            
            .nav-cta {
                margin-left: 0;
                margin-top: 1rem;
            }
            
            .book-now-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

    .nav-links.active {
        left: 0 !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background: rgba(26, 26, 46, 0.8);
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin-left: 0;
        margin-top: 0;
        padding: 0;
        padding-left: 1.5rem;
        background: rgba(155, 81, 224, 0.1);
        transition: all 0.3s ease;
    }

    .dropdown-submenu.active .submenu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .dropdown-submenu:hover .submenu {
        transform: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    nav,
    .menu-toggle,
    .booking-link,
    .social-links,
    .cta-button,
    .book-now-btn {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
    }
    
    .service-card,
    .gallery-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
/* Tyca Beaute - Service Page CSS for WPCode */
/* Clean, simplified version - trusts WordPress, no panic overrides */

/* Service Page Container - Override for service pages */
.service-hero .tyca-container,
.service-overview .tyca-container,
.service-details .tyca-container,
.service-faq .tyca-container,
.related-services .tyca-container,
.service-cta .tyca-container,
.instagram-map-section .tyca-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* ============================================
   SERVICE HERO SECTION
   ============================================ */
.service-hero {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero .tyca-container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.book-service-btn,
.call-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.1rem) clamp(2rem, 4vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px;
    white-space: nowrap;
    line-height: 1.2;
    box-sizing: border-box;
}

.book-service-btn {
    background: white;
    color: #667eea;
}

.call-service-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

/* ============================================
   SERVICE OVERVIEW SECTION
   ============================================ */
.service-overview {
    padding: 5rem 0;
    background: white;
}

/* THE ONLY GRID RULE WE NEED */
.service-overview-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    margin-bottom: 4rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix WordPress auto-adding <p> tags around grid children */
.service-overview-grid > p {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

.service-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.service-featured-image:hover {
    transform: scale(1.02);
}

.service-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.service-quick-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.service-quick-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.price-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 0.5rem;
}

.deposit-info {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.duration-info,
.location-info {
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.info-row > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-row strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    text-align: center;
}

.info-row p {
    color: #666;
    margin: 0.25rem 0 0;
    font-size: 1rem;
    text-align: center;
}

.service-quick-info .book-service-btn,
.service-quick-info .call-service-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1.3rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto 1rem auto !important;
    width: 100%;
    min-height: 56px;
    box-sizing: border-box;
    white-space: nowrap;
    line-height: 1.2;
}

.service-quick-info .book-service-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-quick-info .call-service-btn {
    background: #10b981;
    color: white;
    margin: 0 auto !important;
    margin-bottom: 0 !important;
}

/* ============================================
   SERVICE DETAILS SECTION
   ============================================ */
.service-details {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-main-content {
    width: 100%;
}

.service-details h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #667eea;
    text-align: center;
}

.service-details .about-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

/* Hide empty paragraphs */
.about-paragraph:empty,
p.about-paragraph:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.whats-included-title,
.perfect-for-title {
    font-size: 2.5rem;
    margin: 4rem 0 2rem;
    color: #764ba2;
    text-align: center;
}

.perfect-for-title {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    text-align: left;
}

.whats-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.whats-included-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.whats-included-item:hover {
    transform: translateY(-5px);
}

.service-details .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.whats-included-item h4 {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 0.75rem;
    text-align: center;
}

.whats-included-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.perfect-for-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.perfect-for-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.perfect-for-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.what-to-expect {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    margin-top: 3rem;
}

.what-to-expect h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expect-item {
    text-align: center;
}

.expect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expect-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.expect-item p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   INSTAGRAM & MAP SECTION
   ============================================ */
.instagram-map-section {
    width: 100%;
    padding: 5rem 0;
    background: white;
}

/* THE ONLY GRID RULE WE NEED */
.instagram-map-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix WordPress auto-adding <p> tags around grid children */
.instagram-map-grid > p {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

.instagram-container,
.map-container {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.instagram-container h2,
.map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.instagram-container p,
.map-container p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.instagram-embed-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.google-map {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: block;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.service-faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-faq h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #667eea;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* ============================================
   RELATED SERVICES SECTION
   ============================================ */
.related-services {
    padding: 5rem 0;
    background: white;
}

.related-services h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #667eea;
}

.related-services-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.related-service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.1);
}

.related-service-content {
    padding: 2rem;
}

.related-service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 600;
}

.related-service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.related-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.related-service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #764ba2;
}

.related-service-link {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION FIXES
   ============================================ */

/* Fix for "Ready to Own the Night?" CTA Section */
.service-cta {
    padding: 5rem 0;
    text-align: center !important;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-cta .tyca-container {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    text-align: center;
}

.cta-buttons {
    display: flex !important;
    gap: 1.5rem;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

/* Primary CTA Button - "Book Your Appointment Now" */
.service-cta .cta-button,
.cta-primary-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: white;
    color: #667eea !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    white-space: nowrap;
    text-align: center;
    border: none;
    min-height: 56px;
    cursor: pointer;
}

.service-cta .cta-button:hover,
.cta-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
    color: #667eea !important;
}

/* Secondary CTA Button - "Call (973) 963-7449" */
.cta-call-button,
.cta-secondary-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border: 2px solid white;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-height: 56px;
    cursor: pointer;
}

.cta-call-button:hover,
.cta-secondary-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white !important;
}

/* Fix for Service Overview CTA Buttons */
.overview-content .cta-button,
.service-overview .cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    border: none;
    min-height: 56px;
    margin-top: 1rem;
    cursor: pointer;
}

.overview-content .cta-button:hover,
.service-overview .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* Green Call Button Fix */
.call-button,
.cta-call-green {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #10b981 !important;
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    border: none;
    min-height: 56px;
    cursor: pointer;
}

.call-button:hover,
.cta-call-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: #059669 !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
    }
    
    .service-cta .cta-button,
    .cta-call-button,
    .cta-primary-button,
    .cta-secondary-button,
    .call-button,
    .cta-call-green {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }
    
    .service-cta .tyca-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .service-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-cta .cta-button,
    .cta-call-button,
    .cta-primary-button,
    .cta-secondary-button,
    .call-button,
    .cta-call-green {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        white-space: normal;
        min-height: 50px;
        line-height: 1.3;
    }
}

/* Ensure text doesn't break awkwardly */
.cta-button *,
.cta-call-button *,
.cta-primary-button *,
.cta-secondary-button *,
.call-button *,
.cta-call-green * {
    text-align: center;
    display: inline;
}

/* Additional fix for any nested spans or divs */
.service-cta a {
    text-decoration: none !important;
}

.service-cta a:hover {
    text-decoration: none !important;
}

/* Service Page Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Page Responsive Design */
@media (min-width: 969px) {
    .service-overview-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
    
    .instagram-map-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 968px) {
    .service-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .instagram-map-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        padding: 4rem 0 3rem;
    }
    
    .service-overview,
    .service-details,
    .service-faq,
    .related-services,
    .service-cta,
    .instagram-map-section {
        padding: 3rem 0;
    }
    
    .service-hero .tyca-container,
    .service-overview .tyca-container,
    .service-details .tyca-container,
    .service-faq .tyca-container,
    .related-services .tyca-container,
    .service-cta .tyca-container,
    .instagram-map-section .tyca-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .service-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .book-service-btn,
    .call-service-btn {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
    
    .service-quick-info .book-service-btn,
    .service-quick-info .call-service-btn {
        white-space: normal;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   VERSION 2 - ENHANCED HOMEPAGE STYLES
   ============================================ */

/* Hero Section V2 - Modern & Impactful */
.hero-v2 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9b51e0 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-v2-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-v2-text {
    color: white;
}

.hero-v2-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-v2-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-v2-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-v2-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-v2-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section V2 - Enhanced */
.about-v2 {
    padding: 6rem 0;
    background: #ffffff;
}

.about-v2-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-v2-image-wrapper {
    position: relative;
}

.about-v2-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.about-v2-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.about-v2-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.about-v2-text {
    padding: 2rem 0;
}

.section-title-v2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d2d44;
    line-height: 1.2;
}

.section-subtitle-v2 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-v2-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}

.about-v2-description p {
    margin-bottom: 1.5rem;
}

.about-v2-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Services Section V2 - Enhanced */
.services-v2 {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card-v2 {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-v2:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-v2:hover .service-card-overlay {
    opacity: 1;
}

.service-card-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d44;
    margin-bottom: 1rem;
}

.service-card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* View All Services Button */
.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    gap: 0.5rem;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #9b51e0 100%);
}

.view-all-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover::after {
    transform: translateX(5px);
}

/* Features Section V2 - Enhanced */
.features-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.features-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.features-v2-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-v2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-v2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card-v2 p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section V2 - New */
.cta-section-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-v2-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-v2-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-v2-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-v2-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-v2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-v2-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-v2-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Contact Section V2 - Enhanced */
.contact-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
}

.contact-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-v2 h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-item-v2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon-v2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-v2 strong {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.opening-hours-v2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.opening-hours-v2 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hours-list-v2 {
    list-style: none;
    padding: 0;
}

.hours-list-v2 li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list-v2 .day {
    color: rgba(255, 255, 255, 0.9);
}

.hours-list-v2 .time {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hours-list-v2 .time.closed {
    color: #e91e63;
}

.contact-form-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-v2 {
    margin-bottom: 1.5rem;
}

.form-group-v2 label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.form-group-v2 input,
.form-group-v2 textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-v2 textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-v2 {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.map-container-v2 {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Instagram & Map Section V2 - Side by Side */
.instagram-map-section-v2 {
    padding: 6rem 0;
    background: white;
}

.instagram-map-grid-v2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.instagram-map-grid-v2 > p {
    display: contents !important;
    margin: 0 !important;
    padding: 0 !important;
}

.instagram-container-v2,
.map-container-v2-side {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.instagram-container-v2 h2,
.map-container-v2-side h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
    font-weight: 700;
}

.instagram-container-v2 p,
.map-container-v2-side p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.instagram-embed-container-v2 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-container-v2-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-map-v2 {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design V2 */
@media (max-width: 968px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-v2-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .services-grid-v2 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .instagram-map-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 640px) {
    .hero-v2 {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-v2-stats {
        justify-content: center;
    }
    
    .hero-v2-buttons {
        flex-direction: column;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
    }
    
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .instagram-map-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .instagram-container-v2 h2,
    .map-container-v2-side h2 {
        font-size: 2rem;
    }
}

/* ============================================
   CATEGORY LANDING PAGES STYLES
   ============================================ */

/* Category Hero Section */
.category-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.category-hero .tyca-container {
    position: relative;
    z-index: 1;
}

.category-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.category-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Services Section */
.category-services {
    padding: 6rem 0;
    background: white;
}

.category-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.category-intro h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.category-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Category Services Grid */
.category-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Category Service Card */
.category-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.category-service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-service-card:hover .category-service-image img {
    transform: scale(1.05);
}

.category-service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-service-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Service Details */
.category-service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #764ba2;
}

.service-duration,
.service-deposit {
    font-size: 0.9rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: white;
    border-radius: 5px;
}

/* Service Actions */
.category-service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-learn-more,
.btn-book-now {
    flex: 1;
    min-width: 120px;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-learn-more {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-learn-more:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-book-now {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Category CTA Section */
.category-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.category-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.category-cta p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-cta .cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.category-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive Styles for Category Pages */
@media (max-width: 1024px) {
    .category-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .category-hero {
        padding: 5rem 0 4rem;
    }
    
    .category-hero-title {
        font-size: 2.5rem;
    }
    
    .category-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .category-services {
        padding: 4rem 0;
    }
    
    .category-intro h2 {
        font-size: 2rem;
    }
    
    .category-intro p {
        font-size: 1.1rem;
    }
    
    .category-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-service-image {
        height: 220px;
    }
    
    .category-service-content {
        padding: 1.5rem;
    }
    
    .category-service-actions {
        flex-direction: column;
    }
    
    .btn-learn-more,
    .btn-book-now {
        width: 100%;
    }
    
    .category-cta {
        padding: 4rem 0;
    }
    
    .category-cta h2 {
        font-size: 2rem;
    }
    
    .category-cta p {
        font-size: 1.1rem;
    }
    
    .category-cta .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 640px) {
    .category-hero {
        padding: 4rem 0 3rem;
    }
    
    .category-hero-title {
        font-size: 2rem;
    }
    
    .category-hero-subtitle {
        font-size: 1rem;
    }
    
    .category-services {
        padding: 3rem 0;
    }
    
    .category-intro {
        margin-bottom: 2.5rem;
    }
    
    .category-intro h2 {
        font-size: 1.8rem;
    }
    
    .category-service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .category-cta h2 {
        font-size: 1.8rem;
    }
}

