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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #EC008C;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 3rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #EC008C 0%, #D4007A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 0, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 0, 140, 0.4);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #EC008C;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-logo span {
    color: #4A4A4A;
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #EC008C;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EC008C;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #EC008C;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Fallback for missing hero image */
.hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #EC008C 0%, #D4007A 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #FFF3F7;
}

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

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

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Fallback for missing about image */
.about-img[src*="images/"]:not([src*="data:"]):not([src*="http"]):not([src*="https"]) {
    background: linear-gradient(135deg, #EC008C 0%, #D4007A 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}



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

.about-description {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.see-qualifications {
    display: inline-block;
    font-size: 16px;
    color: #EC008C;
    text-decoration: none;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.see-qualifications:hover {
    color: #D4007A;
    border-bottom-color: #D4007A;
    transform: translateY(-1px);
}

.about-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EC008C;
    margin-top: 2rem;
}

/* Treatments Section */
.treatments {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefbfb 0%, #f9f5f7 100%);
    position: relative;
    overflow: hidden;
}

.treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC42Ij48cmVjdCB3aWR0aD0iMiIgaGVpZ2h0PSIyIiB4PSIzOCIgeT0iMzgiIHJ4PSIxIj48L3JlY3Q+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.15;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e8a87c, #e27d60);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.2px;
}

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

.treatment-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    text-decoration: none;
    color: white;
    text-align: center;
    background-color: #f8f9fa;
    aspect-ratio: 1/1.2; /* Maintain aspect ratio */
    /* Create gradient overlay directly on the card */
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.2) 30%,
        rgba(0,0,0,0.7) 80%,
        rgba(0,0,0,0.85) 100%
    );
}

.treatment-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Move behind the gradient */
    transition: transform 0.5s ease;
    transform: scale(1.05); /* Slight initial zoom to prevent gaps */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
}

.treatment-card:hover .card-bg {
    transform: scale(1.15); /* More subtle zoom on hover */
}

.treatment-card .card-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    transition: all 0.3s ease;
    background: transparent; /* Remove gradient from content */
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.treatment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.treatment-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.treatment-card:hover::before {
    opacity: 0.9;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    margin-top: auto;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-icon {
    width: 50%;
    height: 50%;
    color: white;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.treatment-card:hover .treatment-icon {
    transform: scale(1.1);
    color: #e27d60;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.treatment-card:hover .card-title {
    color: #e27d60;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 20px;
    margin-top: auto;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: currentColor;
}

.treatment-card:hover .arrow-icon {
    transform: translateX(5px);
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e8a87c, #e27d60);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.treatment-card:hover .card-link::after {
    width: 100%;
}

/* Decorative Elements */
.treatment-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e8a87c, #e27d60);
    opacity: 0;
    transition: all 0.5s ease;
}

.treatment-card:hover::after {
    opacity: 1;
    height: 4px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .treatments {
        padding: 5rem 0;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .treatment-card {
        padding: 2.5rem 2rem;
    }
    
    .card-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
}

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

.treatment-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.treatment-card:nth-child(1) { animation-delay: 0.1s; }
.treatment-card:nth-child(2) { animation-delay: 0.2s; }
.treatment-card:nth-child(3) { animation-delay: 0.3s; }
.treatment-card:nth-child(4) { animation-delay: 0.2s; }
.treatment-card:nth-child(5) { animation-delay: 0.3s; }
.treatment-card:nth-child(6) { animation-delay: 0.4s; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .treatments {
        padding: 5rem 0;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .treatments {
        padding: 4rem 0;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .card-content {
        margin: 5px;
        padding: 1.5rem 1.2rem 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .treatments {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

.treatment-card {
    display: block;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.treatment-header {
    background: linear-gradient(135deg, #EC008C 0%, #D4007A 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.3s ease;
    min-height: 120px;
    justify-content: center;
}

.treatment-card:hover .treatment-header {
    background: linear-gradient(135deg, #D4007A 0%, #B80068 100%);
}

.treatment-header .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.treatment-header span {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #FFF3F7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(236, 0, 140, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

/* Fallback for missing gallery images */
.gallery-img[src*="images/"]:not([src*="data:"]):not([src*="http"]):not([src*="https"]) {
    background: linear-gradient(135deg, #EC008C 0%, #D4007A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.gallery-img[src*="images/"]:not([src*="data:"]):not([src*="http"]):not([src*="https"])::before {
    content: "📸";
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Gallery overlay effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(236, 0, 140, 0.1), rgba(212, 0, 122, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* Gallery zoom icon */
.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: white;
    background: rgba(236, 0, 140, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    max-width: 1200px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 2rem 0;
    perspective: 1200px;
}

.testimonial-slide {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.7s ease;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0 20px;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

/* Animation classes */
.testimonial-slide.active {
    position: relative;
}

.testimonial {
    background: linear-gradient(145deg, #ffffff 0%, #fff9fb 100%);
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 500px;
    margin: 0.5rem auto 2.5rem;
    position: relative;
    border: 1px solid rgba(212, 175, 197, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC008C 0%, #D4AF37 50%, #EC008C 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

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

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(236, 0, 140, 0.12);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 1.5rem 0 2rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem 0 2rem;
    font-weight: 400;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '\201C';
    position: absolute;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.testimonial-text::before {
    left: -1rem;
    top: -1.5rem;
}

.testimonial-text::after {
    content: '\201D';
    right: 1rem;
    bottom: -2.5rem;
    line-height: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(212, 175, 197, 0.2);
    padding-top: 1.2rem;
}

.testimonial-author h4 {
    color: #EC008C;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.2rem;
    font-weight: 400;
}

.stars {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    color: #D4AF37;
    font-size: 1.3rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #EC008C 0%, #D4AF37 50%, #EC008C 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    color: #EC008C;
    box-shadow: 0 8px 30px rgba(236, 0, 140, 0.15);
}

.carousel-nav:hover::before {
    opacity: 1;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Dots Navigation */
.testimonial-dots {
    text-align: center;
    margin: 3rem 0 1rem;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EC008C 0%, #D4AF37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.dot.active, .dot:hover {
    transform: scale(1.4);
    background-color: transparent;
}

.dot.active::before, .dot:hover::before {
    opacity: 1;
}

.dot.active {
    width: 14px;
    height: 14px;
    margin: 0 8px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #fff;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(236, 0, 140, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.clinic-address {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fff9fc;
    border-radius: 10px;
    border-left: 4px solid #EC008C;
}

.clinic-address p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.clinic-address i {
    color: #EC008C;
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .testimonial {
        padding: 2rem 1.8rem 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 0.8rem 0 1.8rem;
    }
    
    .testimonial-text::before {
        font-size: 4.5rem;
        left: -0.8rem;
    }
    
    .testimonial-text::after {
        font-size: 4.5rem;
        right: 0.5rem;
    }
    
    .stars {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 992px) {
    .treatments {
        padding: 4rem 0;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
        padding: 0 15px;
    }
    
    .treatment-card {
        min-height: 380px;
        border-radius: 16px;
    }
    
    .treatment-card .card-content {
        padding: 1.8rem 1.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial {
        padding: 2rem 1.5rem 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin: 1.2rem 0 1.8rem;
    }
    
    .testimonial-author h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .testimonial {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.8rem 1.5rem 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .testimonial-slide {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .testimonial-text {
        font-size: 0.98rem;
        padding: 0 0 0 1.5rem;
        margin: 1rem 0 1.5rem;
    }
    
    .testimonial-text::before {
        font-size: 4rem;
        left: -0.5rem;
        top: -1.2rem;
    }
    
    .testimonial-text::after {
        font-size: 4rem;
        right: 0.5rem;
        bottom: -2rem;
    }
    
    .testimonial-author {
        padding-top: 1rem;
    }
    
    .carousel-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .carousel-nav.prev {
        left: 8px;
    }
    
    .carousel-nav.next {
        right: 8px;
    }
    
    .testimonial-dots {
        margin: 2.5rem 0 0.5rem;
    }
    
    .dot {
        width: 9px;
        height: 9px;
        margin: 0 5px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial {
        padding: 1.5rem 1.2rem 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.2rem;
    }
    
    .testimonial::before {
        height: 3px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin: 0.8rem 0 1.2rem;
        padding: 0 0 0 1.2rem;
    }
    
    .testimonial-text::before {
        font-size: 3.5rem;
        left: -0.3rem;
        top: -1rem;
    }
    
    .testimonial-text::after {
        font-size: 3.5rem;
        right: 0.3rem;
        bottom: -1.8rem;
    }
    
    .stars {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }
    
    .testimonial-author {
        padding-top: 0.8rem;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .testimonial-dots {
        margin: 2rem 0 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .dot.active {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

/* Dots Navigation */
.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #EC008C;
    transform: scale(1.2);
    border-color: rgba(236, 0, 140, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial {
        flex: 1 1 100%;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .testimonial-slide.active {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        top: 40%;
    }
    
    .testimonial {
        padding: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        padding-left: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        left: -0.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonial-swiper {
    width: 100%;
    padding: 2rem 0 4rem;
    position: relative;
    overflow: visible;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(236, 0, 140, 0.1);
    transform: scale(0.92);
    opacity: 0.7;
    will-change: transform, opacity;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(0.94);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Active slide styles */
.swiper-slide-active .testimonial-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: #EC008C;
    opacity: 0.2;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.2rem;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #EC008C !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    will-change: transform, opacity;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    transform: scale(1.1);
}

.testimonial-swiper:hover .swiper-button-next,
.testimonial-swiper:hover .swiper-button-prev {
    opacity: 1;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(236, 0, 140, 0.3);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #EC008C;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-swiper {
        padding: 2rem 2rem 4rem;
    }
    
    .swiper-slide {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0;
        transform: scale(0.9);
    }
    
    .swiper-slide-active .testimonial-card,
    .swiper-slide-next .testimonial-card {
        transform: scale(1);
        opacity: 1;
    }
    
    .swiper-slide-next + .swiper-slide .testimonial-card {
        opacity: 0.7;
    }
}

@media (min-width: 992px) {
    .testimonial-swiper {
        padding: 2rem 0 4rem;
    }
    
    .swiper-wrapper {
        padding: 1rem 0;
    }
    
    .testimonial-card {
        padding: 2.5rem;
        margin: 0 15px;
        transform: scale(0.95);
        opacity: 0.7;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .swiper-slide-active .testimonial-card,
    .swiper-slide-next .testimonial-card {
        transform: scale(1);
        opacity: 1;
    }
    
    .swiper-slide-next + .swiper-slide .testimonial-card {
        opacity: 0.7;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #FFF3F7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.5rem;
    color: #EC008C;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #EC008C;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Footer */
.footer {
    background: #EC008C;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFF3F7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFF3F7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4007A;
}

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

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

.social-links a:hover {
    transform: translateY(-3px);
    background: #B80068;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #D4007A;
    color: #FFF3F7;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .treatments-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; } 