/* Menopause Management Page - Modern Design */

:root {
    --primary: #A855F7;
    --primary-light: #E9D5FF;
    --primary-dark: #7E22CE;
    --accent: #9333EA;
    --text: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 10px 35px rgba(168, 85, 247, 0.15);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* General Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1631217314830-4e5e4e4e4f0e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.12;
    z-index: 1;
    animation: hero-bg-move 20s ease-in-out infinite;
}

@keyframes hero-bg-move {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.75), rgba(126, 34, 206, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart,
.floating-plus,
.floating-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-heart {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-plus {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star {
    bottom: 20%;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.stat-item:hover .stat-icon-wrapper {
    background: rgba(168, 85, 247, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.stat-number {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    display: block !important;
    line-height: 1.2 !important;
}

.stat-label {
    font-size: 0.9rem !important;
    color: var(--text) !important;
    text-align: center !important;
    display: block !important;
    font-weight: 500 !important;
}

/* Overview Section */
.overview-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.overview-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.overview-text {
    animation: fadeInLeft 1s ease-out;
}

.overview-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.overview-text .cta-button {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.overview-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.4);
}

.overview-image {
    animation: fadeInRight 1s ease-out;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    color: var(--text);
    font-size: 2.8rem;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(233, 213, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.15) rotate(-10deg);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.service-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    width: 100%;
}

.service-card li {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 8px 0 8px 25px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card:hover li {
    color: var(--text);
}

.service-card:hover li:before {
    color: var(--accent);
}

/* Wellness Section */
.wellness-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.wellness-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wellness-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wellness-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.wellness-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.wellness-card:hover::before {
    transform: scaleX(1);
}

.wellness-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.wellness-card:hover .wellness-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.15) rotate(-10deg);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.wellness-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wellness-card:hover h3 {
    color: var(--primary);
}

.wellness-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

/* Symptoms Section */
.symptoms-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(233, 213, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.symptoms-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.symptoms-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.symptom-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.symptom-card:hover::before {
    transform: scaleX(1);
}

.symptom-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.symptom-card:hover .symptom-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.15) rotate(-10deg);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.symptom-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.symptom-card:hover h3 {
    color: var(--primary);
}

.symptom-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

/* Patient Testimonials Section */
.testimonials-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(233, 213, 255, 0.3) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    color: var(--text);
    font-size: 1rem;
    margin: 0 0 3px 0;
    font-weight: 700;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: var(--text);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.15) rotate(-10deg);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.why-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.why-card:hover h3 {
    color: var(--primary);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

/* Treatment Options Section */
.treatment-options-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e5ff 100%);
    position: relative;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.treatment-card {
    background: #ffffff;
    padding: 50px 35px 40px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
    border-color: #A855F7;
}

.treatment-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E9D5FF 0%, #D8B4FE 100%);
    border-radius: 20px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #A855F7;
    margin: 0 auto 25px auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
    font-size: 0;
}

.treatment-icon i {
    font-size: 2.8rem !important;
    color: #7E22CE !important;
    line-height: 1 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

.treatment-card:hover .treatment-icon {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
    border-color: #7E22CE;
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.3);
}

.treatment-card:hover .treatment-icon i {
    color: #ffffff !important;
}

.treatment-card h3 {
    color: #1F2937;
    font-size: 1.35rem;
    margin: 0 0 12px 0;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.treatment-card:hover h3 {
    color: #A855F7;
}

.treatment-card > p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.treatment-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    width: 100%;
}

.treatment-card li {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 8px 0 8px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.treatment-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #A855F7;
    font-weight: bold;
    font-size: 1.1rem;
}

.treatment-card:hover li {
    color: #374151;
    padding-left: 30px;
}

.treatment-card:hover li:before {
    color: #7E22CE;
}

/* Lifestyle Tips Section */
.lifestyle-tips-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.lifestyle-tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lifestyle-tips-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tip-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.tip-card h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 10px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tip-card:hover h3 {
    color: var(--primary);
}

.tip-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(233, 213, 255, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(168, 85, 247, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Appointment CTA Section */
.appointment-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.appointment-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(233, 213, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.appointment-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--white);
}

.appointment-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons .cta-button.primary {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-image img {
        height: 300px;
    }

    .services-grid,
    .wellness-grid,
    .symptoms-grid,
    .why-grid,
    .treatment-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .overview-text h2 {
        font-size: 2.2rem;
    }

    .service-card,
    .wellness-card,
    .symptom-card,
    .why-card,
    .treatment-card,
    .tip-card {
        padding: 30px 20px;
    }

    .service-icon,
    .wellness-icon,
    .symptom-icon,
    .why-icon,
    .treatment-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }

    .service-card h3,
    .wellness-card h3,
    .symptom-card h3,
    .why-card h3,
    .treatment-card h3,
    .tip-card h3 {
        font-size: 1.15rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .appointment-cta-section h2 {
        font-size: 2rem;
    }

    .appointment-cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-content > p {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-grid,
    .wellness-grid,
    .symptoms-grid,
    .why-grid,
    .treatment-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .overview-text h2 {
        font-size: 1.8rem;
    }

    .overview-text p {
        font-size: 0.95rem;
    }

    .service-card,
    .wellness-card,
    .symptom-card,
    .why-card,
    .testimonial-card,
    .treatment-card,
    .tip-card {
        padding: 25px 15px;
    }

    .service-card h3,
    .wellness-card h3,
    .symptom-card h3,
    .why-card h3,
    .treatment-card h3,
    .tip-card h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.3rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .tip-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .treatment-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .faq-question {
        padding: 15px 15px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 0.85rem;
    }

    .appointment-cta-section {
        padding: 60px 20px;
    }

    .appointment-cta-section h2 {
        font-size: 1.6rem;
    }

    .appointment-cta-section p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .cta-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease-out;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}
