:root {
    --primary-color: #ffdee5;
    --primary-dark: #ffb3c1;
    --secondary-color: #2c2c2c;
    --accent-color: #ffdee5;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ffdee5 0%, #ffb3c1 100%);
    --shadow-light: 0 4px 20px rgba(255, 222, 229, 0.3);
    --shadow-medium: 0 8px 40px rgba(255, 222, 229, 0.4);
    --shadow-strong: 0 12px 60px rgba(255, 222, 229, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Screen reader only - Oculta visualmente pero mantiene para SEO y accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

/* Header */
header {
    background: linear-gradient(90deg, #e91e63 0%, rgba(233, 30, 99, 0.8) 30%, var(--white) 100%);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Gradient colors for each menu item on hover */
.nav-menu li:nth-child(1) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(1) a::after { background-color: #f5e6ea; }
.nav-menu li:nth-child(2) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(2) a::after { background-color: #f5e6ea; }
.nav-menu li:nth-child(3) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(3) a::after { background-color: #f5e6ea; }
.nav-menu li:nth-child(4) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(4) a::after { background-color: #f5e6ea; }
.nav-menu li:nth-child(5) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(5) a::after { background-color: #f5e6ea; }
.nav-menu li:nth-child(6) a:hover { color: #f5e6ea; }
.nav-menu li:nth-child(6) a::after { background-color: #f5e6ea; }

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

.hamburger-icon {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background: var(--bg-light);
    border-left-color: #e91e63;
    color: #e91e63;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.4) 0%, rgba(255, 107, 157, 0.3) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.35) 0%, rgba(255, 107, 157, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.6), 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.4;
    word-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    line-height: 1.6;
    opacity: 0.95;
}

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

.btn-primary {
    background: var(--white);
    color: #e91e63;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: #e91e63;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.title-visible {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-carousel-container {
    position: relative;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.reviews-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-dark);
    transform: scale(1.3);
}

.rating-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

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

.rating-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-platform i {
    font-size: 1.5rem;
    color: #e91e63;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #e91e63;
    margin: 10px 0;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 10px 0;
}

.rating-reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.author-platform {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    margin-top: 50px;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 30px 20px;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.service-card.active {
    border-color: #e91e63;
    background: linear-gradient(135deg, rgba(255, 222, 229, 0.1) 0%, rgba(255, 179, 193, 0.1) 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 222, 229, 0.3) 0%, rgba(255, 179, 193, 0.4) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #e91e63;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card.active .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.expand-icon {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 0;
    color: #e91e63;
    transition: all 0.3s ease;
}

.service-card.active .expand-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(180deg);
}

.expand-text {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card.active .expand-text {
    color: #e91e63;
}

/* Service Details Section */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}

.service-details.active {
    max-height: 500px;
    margin-top: 30px;
}

.service-details-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-dark);
}

.service-table {
    width: 100%;
    margin: 0;
}

.service-table tr {
    border-bottom: 1px solid rgba(255, 222, 229, 0.3);
    transition: all 0.2s ease;
}

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

.service-table tr:hover {
    background: rgba(255, 222, 229, 0.15);
}

.service-table td {
    padding: 18px 20px;
    font-size: 0.95rem;
}

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

.service-time {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.service-time i {
    color: #e91e63;
    margin-right: 5px;
}

.service-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: right;
    white-space: nowrap;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 14px;
    padding-bottom: 4px;
    border-top: 1px solid rgba(255, 222, 229, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    color: #e91e63;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

.details-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 0 10px;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.gallery-item {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.gallery-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-dark);
    transform: scale(1.3);
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(221, 42, 123, 0.4);
}

.instagram-btn i {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 400px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-dark);
}

.faq-item[open] {
    border-color: #e91e63;
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: #e91e63;
    font-size: 1.3rem;
}

.faq-question:hover {
    color: #e91e63;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    animation: fadeIn 0.3s ease;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile-specific styles */
.service-card-content {
    display: none;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.97);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 250px;
}

.cookie-text a {
    color: #ff6b9d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
}

/* Booking Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.visible .popup-card {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: #e91e63;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--white);
}

.popup-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.popup-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.popup-skip {
    display: block;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.popup-skip:hover {
    color: #e91e63;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { gap: 1.5rem; }
    .nav-menu a { font-size: 0.9rem; }
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    nav { justify-content: space-between; }
    .logo { flex: 0 0 auto; }
    .cta-button {
        flex: 0 1 auto;
        text-align: center;
        padding: 8px 15px;
        font-size: 0.85rem;
        border: 1px solid white;
        margin: 0 10px;
        max-width: 180px;
    }
    .mobile-menu-toggle { flex: 0 0 auto; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; line-height: 1.3; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .section-header h2 { font-size: 2rem; }
    .title-visible { font-size: 1.8rem; }
    .reviews-layout { grid-template-columns: 1fr; gap: 30px; }

    .reviews-carousel-container { padding: 0 10px; }
    .reviews-carousel-track { gap: 0; display: flex; flex-wrap: nowrap; }
    .reviews-slide { display: contents; }
    .review-card {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        padding: 30px 20px;
        margin: 0;
    }
    .reviews-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }

    .service-card { padding: 25px 15px; overflow: visible; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card p { font-size: 0.85rem; }
    .service-details { display: none !important; }
    .service-card-content {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .service-card.active .service-card-content {
        max-height: 2000px;
    }
    .service-card-content .service-table { margin-top: 15px; }
    .service-table td { padding: 12px 10px; font-size: 0.85rem; }
    .service-name { font-size: 0.85rem; }
    .service-time { font-size: 0.75rem; }
    .service-price { font-size: 1rem; }

    .gallery-item {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 350px;
    }
    .gallery-item img { height: 350px; }
    .gallery-carousel-track { gap: 0; }
    .instagram-btn { font-size: 1rem; padding: 15px 30px; }
    .hero { background-position: 45% center; }
    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
    }

    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }

    .popup-card { padding: 35px 25px; }
    .popup-card h3 { font-size: 1.3rem; }
}

/* Desktop: Show details section */
@media (min-width: 769px) {
    .service-card-content { display: none !important; }
}

/* Loading Animation */
.lazy {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}
