:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --text: #f0f0f0;
    --text-light: #b8b8b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--secondary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight);
}

.logo span {
    color: var(--text);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--highlight);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Styles */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('data/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    background-color: var(--highlight);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d13454;
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--highlight);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    background-color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--accent);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-title span {
    display: block;
    font-size: 1rem;
    color: var(--highlight);
    margin-top: 5px;
}

.service-pricing {
    margin-bottom: 20px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-option:last-child {
    border-bottom: none;
}

.hidden-service {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--accent);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--highlight);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-rating {
    color: #ffc107;
    margin-top: 15px;
}

/* Therapists Section */
.therapists-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.therapists-container {
    display: flex;
    transition: transform 0.5s ease;
}

.therapist-card {
    min-width: 280px;
    background-color: var(--accent);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.therapist-image {
    height: 300px;
    overflow: hidden;
}

.therapist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.therapist-card:hover .therapist-image img {
    transform: scale(1.05);
}

.therapist-info {
    padding: 20px;
    text-align: center;
}

.therapist-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.therapist-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.therapist-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.specialty {
    background-color: var(--highlight);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-btn {
    background-color: var(--highlight);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #d13454;
}

/* QR Codes Section */
.qr-section {
    background-color: var(--secondary);
}

.qr-codes-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.qr-code-item {
    text-align: center;
    max-width: 300px;
}

.qr-code-item img {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--highlight);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.qr-code-item img:hover {
    transform: scale(1.05);
}

.qr-code-item h3 {
    margin: 20px 0 10px;
    color: var(--highlight);
    font-size: 1.5rem;
}

.qr-code-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location {
    background-color: var(--secondary);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.location h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--highlight);
}

.location h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--highlight);
}

.location p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.location-address {
    font-style: italic;
    margin-top: 15px;
    color: var(--text-light);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    margin-right: 10px;
    color: var(--highlight);
    width: 25px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--secondary);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .therapist-card {
        min-width: 250px;
    }
    
    .qr-codes-container {
        gap: 40px;
    }
    
    .qr-code-item img {
        width: 220px;
        height: 264px;
    }
}

@media (max-width: 576px) {
    .mobile-menu {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .banner {
        height: 60vh;
    }
    
    .banner h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .therapist-card {
        min-width: 220px;
    }
    
    .qr-codes-container {
        gap: 30px;
    }
    
    .qr-code-item img {
        width: 200px;
        height: 240px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}