@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&family=Assistant:wght@400;700&family=Noto+Sans+Hebrew:wght@400;700&family=Didot&display=swap');

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

body {
    font-family: 'Assistant', 'Heebo', 'Noto Sans Hebrew', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

:lang(en), .en, .eng {
    font-family: 'Didot', Didot, 'Bodoni MT', 'Didot LT STD', 'Hoefler Text', Garamond, Times, serif !important;
    letter-spacing: 0.5px;
}

/* אפשר להוסיף class="en" לכל טקסט באנגלית ב-HTML לקבלת הפונט */

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #333;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    justify-content: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FC87BC;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative;
}

/* Customer Page Styles */
.before-after-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

/* How It Works Page Styles */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.step-arrow {
    font-size: 2rem;
    color: #ff6b9d;
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FC87BC, #FF6B9D);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(252, 135, 188, 0.3);
}

.step-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.cta-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 135, 188, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 135, 188, 0.4);
    color: white;
    text-decoration: none;
}

/* Plans Page Styles */
.plans-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.plan-card.basic::before {
    background: linear-gradient(90deg, #6c757d, #495057);
}

.plan-card.advanced::before {
    background: linear-gradient(90deg, #FC87BC, #FF6B9D);
}

.plan-card.personal::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FC87BC;
    margin-bottom: 1rem;
}

.plan-description {
    margin-bottom: 2rem;
}

.plan-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: right;
}

.plan-features li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 135, 188, 0.3);
    width: 100%;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 135, 188, 0.4);
}

.plans-info {
    text-align: center;
    margin-top: 4rem;
}

.plans-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.info-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta .cta-button {
    background: white;
    color: #FC87BC;
    border: 2px solid white;
}

.contact-cta .cta-button:hover {
    background: transparent;
    color: white;
}
}

.before-after-card:hover {
    transform: translateY(-5px);
}

.before-after-images {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.image-container {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.image-container h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.before-image, .after-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-content h3 {
    color: #FC87BC;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.treatment-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.treatment-type, .treatment-duration {
    background: #FC87BC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: #FC87BC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.customer-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.customer-age {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    margin-right: auto;
    color: #FFD700;
}

.rating i {
    margin-left: 2px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.treatment-info {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.treatment-info span {
    background: #f0f0f0;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: #FC87BC;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFDAE9, #c44569);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FC87BC, #c44569);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #ff5a8c, #ff7a9a);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.secondary-btn:hover {
    background: white;
    color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Contact Button Styles */
.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 135, 188, 0.3);
    border: 2px solid transparent;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 135, 188, 0.4);
    background: linear-gradient(135deg, #FF6B9D, #FC87BC);
    color: white;
    text-decoration: none;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

/* Swiper Styles */
.services-swiper {
    padding: 2rem 0;
    margin-top: 2rem;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.services-swiper .service-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Swiper Navigation Buttons */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: #FC87BC;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: #FC87BC;
    color: white;
    transform: scale(1.1);
}

.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Swiper Pagination */
.services-swiper .swiper-pagination {
    bottom: -30px;
}

.services-swiper .swiper-pagination-bullet {
    background: #FC87BC;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Fallback for non-JS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #FC87BC;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.service-card p {
    color: #636e72;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #FC87BC, #c44569);
    color: white;
}

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

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FC87BC;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FC87BC;
}

.footer-section p,
.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #FC87BC;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #FC87BC;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
        order: 2;
        margin: 0 auto;
    }
    
    /* Reorder navigation elements for mobile layout */
    .nav-contact-btn {
        order: 3;
    }
    
    .nav-home-btn {
        order: 1;
    }
    
    /* Customer page mobile styles */
    .before-after-images {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-container {
        max-width: 100%;
    }
    
    .before-image, .after-image {
        height: 200px;
    }
    
    .treatment-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hide nav-links by default on mobile */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .nav-home-btn, .nav-contact-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        gap: 4px;
    }
    
    .nav-home-btn img, .nav-contact-btn img {
        height: 1em;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .primary-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .secondary-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Swiper Mobile Styles */
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .services-swiper .swiper-button-next::after,
    .services-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .services-swiper .swiper-pagination {
        bottom: -20px;
    }
    
    /* How It Works Mobile Styles */
    .steps-container {
        gap: 0.5rem;
    }
    
    .step-arrow {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 2rem;
        margin-top: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    /* Plans Mobile Styles */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 0.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-menu span {
        height: 2px;
    }
    
    .nav-links {
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .nav-home-btn, .nav-contact-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        gap: 3px;
    }
    
    .nav-home-btn img, .nav-contact-btn img {
        height: 0.9em;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Swiper Small Mobile Styles */
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .services-swiper .swiper-button-next::after,
    .services-swiper .swiper-button-prev::after {
        font-size: 0.9rem;
    }
    
    .services-swiper .swiper-pagination {
        bottom: -15px;
    }
    
    .services-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

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

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

/* Additional Beauty-specific styles */
.beauty-highlight {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #2d3436;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem;
}

.price-tag {
    background: #FC87BC;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
    border-left: 4px solid #FC87BC;
}

.testimonial-author {
    font-weight: bold;
    color: #FC87BC;
    margin-top: 1rem;
}





.nav-home-btn, .nav-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(252, 135, 188, 0.15);
    position: relative;
    z-index: 2;
}

.nav-home-btn img, .nav-contact-btn img {
    height: 1.2em;
    width: auto;
    object-fit: contain;
}

.nav-home-btn {
    margin-right: 0;
    margin-left: auto;
    background: linear-gradient(135deg, #c44569, #FC87BC);
    color: #fff !important;
}

.nav-home-btn:hover, .nav-home-btn:focus {
    background: linear-gradient(135deg, #FC87BC, #c44569);
    color: #ffeaa7 !important;
    box-shadow: 0 4px 20px rgba(255,107,157,0.25);
    text-decoration: none;
}

.nav-contact-btn {
    margin-right: auto;
    margin-left: 0;
    background: linear-gradient(135deg, #c44569, #FC87BC);
    color: #fff !important;
}

.nav-contact-btn:hover, .nav-contact-btn:focus {
    background: linear-gradient(135deg, #FC87BC, #c44569);
    color: #ffeaa7 !important;
    box-shadow: 0 4px 20px rgba(255,107,157,0.25);
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-contact-btn {
        margin: 0;
        width: auto;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-home-btn {
        margin: 0;
        width: auto;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Customer page small mobile styles */
    .before-after-card {
        padding: 1rem;
    }
    
    .before-image, .after-image {
        height: 150px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* How It Works Small Mobile Styles */
    .step-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    /* Plans Small Mobile Styles */
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
}

/* Accessibility Button Styles */
.accessibility-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FC87BC, #FF6B9D);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(252, 135, 188, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(252, 135, 188, 0.4);
}

.accessibility-button i {
    color: white;
    font-size: 1.5rem;
}

/* Accessibility Menu Styles */
.accessibility-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 9998;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.accessibility-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-menu h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.accessibility-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.accessibility-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.accessibility-option:hover {
    background: #FC87BC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(252, 135, 188, 0.3);
}

.accessibility-option i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.accessibility-option span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile responsiveness for accessibility menu */
@media (max-width: 768px) {
    .accessibility-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .accessibility-button i {
        font-size: 1.3rem;
    }
    
    .accessibility-menu {
        bottom: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 1rem;
    }
    
    .accessibility-options-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .accessibility-option {
        padding: 0.6rem;
    }
    
    .accessibility-option i {
        font-size: 1rem;
    }
    
    .accessibility-option span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .accessibility-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accessibility-menu {
        padding: 0.8rem;
    }
}

/* High contrast mode */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

.high-contrast .accessibility-button {
    background: #fff !important;
    color: #000 !important;
}

.high-contrast .accessibility-button i {
    color: #000 !important;
}

/* Large text mode */
.large-text {
    font-size: 1.2em !important;
}

.large-text h1 { font-size: 2.5em !important; }
.large-text h2 { font-size: 2.2em !important; }
.large-text h3 { font-size: 1.8em !important; }
.large-text p { font-size: 1.3em !important; }

/* Focus indicators */
.focus-indicators *:focus {
    outline: 3px solid #FC87BC !important;
    outline-offset: 2px !important;
}

/* Reduced motion */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Increased spacing */
.increased-spacing * {
    letter-spacing: 0.1em !important;
    word-spacing: 0.2em !important;
    line-height: 2 !important;
}

/* Color blind mode */
.color-blind-mode {
    filter: grayscale(100%) !important;
}

/* Dyslexia font */
.dyslexia-font {
    font-family: 'OpenDyslexic', 'Comic Sans MS', 'Arial', sans-serif !important;
    line-height: 1.8 !important;
}

/* Large cursor */
.large-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="%23FC87BC" stroke="%23fff" stroke-width="2"/></svg>') 16 16, auto !important;
}

/* Link highlight */
.link-highlight a {
    background-color: #FC87BC !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    text-decoration: underline !important;
}

/* Reading mode */
.reading-mode {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    background: #f9f9f9 !important;
    font-size: 1.1em !important;
    line-height: 1.8 !important;
}

.reading-mode * {
    background: #f9f9f9 !important;
}

/* Large buttons */
.large-buttons .btn,
.large-buttons button,
.large-buttons input[type="submit"] {
    padding: 1rem 2rem !important;
    font-size: 1.2em !important;
    min-height: 50px !important;
}

/* Reduced brightness */
.reduced-brightness * {
    filter: brightness(0.8) !important;
} 