/* Treatment Pages Styles */

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

.section.section-alt {
    background: var(--background-color);
}

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

/* Hero Content Structure for New Pages */
.hero-container .hero-text {
    flex: 1;
}

.hero-container .hero-image {
    flex: 1;
    text-align: center;
}

.hero-container .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
}

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

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*
=======================================================
UI DESIGN STANDARDS - Dr. Anuradha's Clinic Website
=======================================================

GRID LAYOUT PRINCIPLES:
• 4 items: 2x2 grid (desktop) → 2x1 (tablet) → 1x1 (mobile)  
• 6 items: 3x2 grid (desktop) → 2x3 (tablet) → 1x6 (mobile)
• Variable items: Use auto-fit with consistent min-width

RESPONSIVE BREAKPOINTS:
• Desktop: 1200px+ (large screens)
• Tablet: 768px-1199px (medium screens)  
• Mobile: 767px- (small screens)

COLOR CONSISTENCY:
• Primary Pink: #C2185B
• Secondary Pink: #F48FB1  
• Accent Dark Pink: #880E4F
• Background: #FDF2F8

SPACING STANDARDS:
• Section padding: 80px 0
• Card gaps: 2rem
• Inner padding: 2rem

VISUAL HIERARCHY:
• Section titles: 2.5rem, center-aligned
• Card titles: 1.25rem, primary color
• Body text: 1rem, line-height 1.6
=======================================================
*/

/* Ensure CSS variables are available */
:root {
    --primary-color: #C2185B;
    --secondary-color: #F48FB1;
    --accent-color: #880E4F;
    --background-color: #FDF2F8;
    --text-color: #333333;
    --white: #FFFFFF;
    --shadow-light: 0 2px 10px rgba(194, 24, 91, 0.1);
    --shadow-medium: 0 4px 20px rgba(194, 24, 91, 0.15);
    --shadow-heavy: 0 8px 30px rgba(194, 24, 91, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Fix Navigation Issues */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.navbar {
    padding: 1rem 0;
}

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

/* Navigation styles now handled by main.css .nav-logo class for consistency */

.clinic-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1001;
    list-style: none;
    margin: 0.5rem 0 0 0;
}

/* Hover-based dropdown (desktop) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Bootstrap JavaScript-based dropdown (all screens) */
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}


/* Treatment Hero Section */
.treatment-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(244, 143, 177, 0.1) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.treatment-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.treatment-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.treatment-hero-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

/* Quick Info Banner */
.quick-info {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

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

.info-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: var(--background-color);
    border: 1px solid rgba(194, 24, 91, 0.1);
    transition: all 0.3s ease;
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-section:nth-child(even) {
    background: var(--background-color);
}

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

.content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.content-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: rgba(194, 24, 91, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
}

.highlight-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.section-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

/* Symptoms Section */
.symptoms-section {
    padding: 5rem 0;
    background: var(--background-color);
}

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

.symptom-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: left;
    transition: all 0.3s ease;
}

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

.symptom-card .icon i,
.symptom-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.symptom-card .icon {
    margin-bottom: 1rem;
}

.symptom-card h3,
.symptom-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.symptom-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Types Section */
.types-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.type-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.type-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--background-color);
}

.comparison-table {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.approach-title {
    padding: 2rem;
    text-align: center;
}

.approach-title h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.conventional, .homeopathic {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.conventional {
    background: rgba(244, 67, 54, 0.05);
    border-right: 1px solid rgba(194, 24, 91, 0.1);
}

.homeopathic {
    background: rgba(76, 175, 80, 0.05);
}

.conventional i {
    color: #f44336;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.homeopathic i {
    color: #4caf50;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Homeopathy Works Section */
.homeopathy-works {
    padding: 5rem 0;
    background: var(--white);
}

.approach-points {
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.point h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Treatment Process */
.treatment-process {
    padding: 5rem 0;
    background: var(--background-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Do's and Don'ts */
.dos-donts {
    padding: 5rem 0;
    background: var(--white);
}

.disclaimer {
    text-align: center;
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #ffc107;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.dos-section, .donts-section {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
}

.dos-section h3, .donts-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.dos-list, .donts-list {
    list-style: none;
    padding: 0;
}

.dos-list li, .donts-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.dos-list i {
    color: #28a745;
    margin-top: 0.2rem;
}

.donts-list i {
    color: #dc3545;
    margin-top: 0.2rem;
}

/* Diet Section */
.diet-section {
    padding: 5rem 0;
    background: var(--background-color);
}

.diet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.diet-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.diet-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.food-category {
    margin-bottom: 2rem;
}

.food-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.food-category ul {
    list-style: none;
    padding: 0;
}

.food-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.diet-tips {
    margin-top: 3rem;
    text-align: center;
}

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

.tip {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.tip i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    background: var(--background-color);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(194, 24, 91, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(194, 24, 91, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--background-color);
}

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

.choose-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.choose-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.choose-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Consultation CTA */
.consultation-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .treatment-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dos-donts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .conventional {
        border-right: none;
        border-bottom: 1px solid rgba(194, 24, 91, 0.1);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Styles for Treatment Pages */

/* Hero Section Styles */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

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

.treatment-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Overview Section */
.treatment-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stats-container.compact-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-container.compact-horizontal .stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.stats-container.compact-horizontal .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Approach Icon Styling */
.approach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: var(--shadow-medium);
}

.approach-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

/* Recommendations Grid and Cards */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recommendation-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.recommendation-card.do-card::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.recommendation-card.dont-card::before {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

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

.recommendation-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.do-card .card-icon {
    background: rgba(17, 153, 142, 0.1);
}

.dont-card .card-icon {
    background: rgba(252, 74, 26, 0.1);
}

.recommendation-card .card-icon i {
    font-size: 1.5rem;
}

.do-card .card-icon i {
    color: #11998e;
}

.dont-card .card-icon i {
    color: #fc4a1a;
}

.recommendation-card:hover .card-icon {
    transform: scale(1.1);
}

.recommendation-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.recommendation-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Section Header Card */
.section-header-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.section-header-card.dos-header {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.1) 0%, rgba(56, 239, 125, 0.1) 100%);
    border: 2px solid rgba(17, 153, 142, 0.2);
}

.section-header-card.donts-header {
    background: linear-gradient(135deg, rgba(252, 74, 26, 0.1) 0%, rgba(247, 183, 51, 0.1) 100%);
    border: 2px solid rgba(252, 74, 26, 0.2);
}

.section-header-card .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.dos-header .header-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.donts-header .header-icon {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.section-header-card .header-icon i {
    font-size: 2rem;
    color: var(--white);
}

.section-header-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.dos-header h3 {
    color: #11998e;
}

.donts-header h3 {
    color: #fc4a1a;
}

.section-header-card p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

/* Lifestyle Summary */
.lifestyle-summary {
    margin-top: 3rem;
}

.summary-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 2rem;
    color: var(--white);
}

.banner-text {
    text-align: left;
}

.banner-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.banner-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.enhanced-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.enhanced-disclaimer .disclaimer-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 24, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enhanced-disclaimer .disclaimer-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.enhanced-disclaimer .disclaimer-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.enhanced-disclaimer .disclaimer-content p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Treatment Comparison Styling */
.treatment-comparison {
    margin-top: 3rem;
}

.comparison-intro {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.intro-card.homeopathy-card::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.intro-card.conventional-card::before {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

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

.intro-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.homeopathy-card .card-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.conventional-card .card-icon {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.intro-card .card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.intro-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.homeopathy-card h3 {
    color: #11998e;
}

.conventional-card h3 {
    color: #fc4a1a;
}

.intro-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-heavy);
    margin: 0 auto;
}

.vs-divider span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-item {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.comparison-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.comparison-aspect {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(194, 24, 91, 0.1);
}

.comparison-aspect .aspect-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.comparison-aspect .aspect-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.comparison-aspect h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.comparison-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.detail-item.homeopathy {
    background: rgba(17, 153, 142, 0.05);
    border: 1px solid rgba(17, 153, 142, 0.2);
}

.detail-item.conventional {
    background: rgba(252, 74, 26, 0.05);
    border: 1px solid rgba(252, 74, 26, 0.2);
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.detail-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-item.homeopathy i {
    color: #11998e;
}

.detail-item.conventional i {
    color: #fc4a1a;
}

.detail-item span {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
}

/* Detail Cards (Enhanced Version) */
.detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.detail-card.homeopathy-detail::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.detail-card.conventional-detail::before {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

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

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

.card-header i {
    font-size: 1.2rem;
}

.homeopathy-detail .card-header i {
    color: #11998e;
}

.conventional-detail .card-header i {
    color: #fc4a1a;
}

.card-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.homeopathy-detail .card-header h5 {
    color: #11998e;
}

.conventional-detail .card-header h5 {
    color: #fc4a1a;
}

.detail-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tags .tag {
    background: rgba(194, 24, 91, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(194, 24, 91, 0.2);
}

.homeopathy-detail .benefit-tags .tag {
    background: rgba(17, 153, 142, 0.1);
    color: #11998e;
    border-color: rgba(17, 153, 142, 0.2);
}

.conventional-detail .benefit-tags .tag {
    background: rgba(252, 74, 26, 0.1);
    color: #fc4a1a;
    border-color: rgba(252, 74, 26, 0.2);
}

/* Diabetes-specific condition badges */
.condition-badge.type2 {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border-color: rgba(255, 152, 0, 0.3);
}

.condition-badge.prediabetes {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.condition-badge.neuropathy {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border-color: rgba(156, 39, 176, 0.3);
}

/* Symptoms Section */
.symptoms-section {
    padding: 80px 0;
    background: var(--background-color);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1200px) {
    .symptoms-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
}

/* 
UI DESIGN STANDARD: Six-Item Grid Layouts
========================================
For sections with 6 items (symptoms, types, etc.):
- Desktop (992px+): 3 columns (2 rows of 3 items)
- Tablet (768px-991px): 2 columns (3 rows of 2 items) 
- Mobile (767px-): 1 column (6 stacked items)

This creates consistent, balanced layouts across all treatment pages.
*/
.symptoms-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .symptoms-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .symptoms-grid-six {
        grid-template-columns: 1fr;
    }
}

.symptom-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.symptom-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.symptom-category ul {
    list-style: none;
    padding: 0;
}

.symptom-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.symptom-category li:last-child {
    border-bottom: none;
}

/* Treatment Approach */
.treatment-approach {
    padding: 80px 0;
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.approach-text {
    padding-right: 2rem;
}

.approach-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.approach-image img,
.approach-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.approach-text h3,
.approach-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.approach-text h3:first-child {
    margin-top: 0;
}

.approach-text ul,
.approach-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.approach-text li,
.approach-content li {
    padding: 0.8rem 0;
    color: var(--text-color);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.approach-text li:before,
.approach-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.approach-text li:last-child,
.approach-content li:last-child {
    border-bottom: none;
}

.approach-text li strong,
.approach-content li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.approach-text p,
.approach-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

/* Types Section */
.pcos-types, .asthma-types, .arthritis-types {
    padding: 80px 0;
    background: var(--background-color);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}

/* Six-item types grid for psoriasis page */
.types-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .types-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .types-grid-six {
        grid-template-columns: 1fr;
    }
}

.type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.type-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.type-features span {
    background: var(--background-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--primary-color);
    color: var(--white);
}

.header-item {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

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

.row-label {
    padding: 1rem;
    font-weight: 600;
    background: var(--background-color);
    color: var(--primary-color);
}

.conventional, .homeopathic {
    padding: 1rem;
    text-align: center;
}

.conventional {
    border-right: 1px solid rgba(194, 24, 91, 0.1);
}

.homeopathic {
    background: rgba(194, 24, 91, 0.05);
    color: var(--primary-color);
    font-weight: 500;
}

/* Do's and Don'ts Section */
.dos-donts-section {
    padding: 80px 0;
    background: var(--background-color);
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.dos-section, .donts-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

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

.section-icon.dos {
    color: #10B981;
}

.section-icon.donts {
    color: #EF4444;
}

.dos-list, .donts-list {
    list-style: none;
    padding: 0;
}

.dos-list li, .donts-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.dos-list li:last-child, .donts-list li:last-child {
    border-bottom: none;
}

.dos-list .fa-check {
    color: #10B981;
    font-size: 1.1rem;
}

.donts-list .fa-times {
    color: #EF4444;
    font-size: 1.1rem;
}

/* Disclaimer */
.disclaimer-note, .diet-disclaimer {
    background: rgba(194, 24, 91, 0.05);
    border: 2px solid rgba(194, 24, 91, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disclaimer-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.diet-recommendations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.diet-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

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

.food-grid.avoid {
    filter: saturate(0.8);
}

.food-item {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
}

.food-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.meal-timing {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

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

.tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.tip i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-color);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-color);
}

.faq-question h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--background-color);
}

.faq-item.active .faq-answer {
    max-height: none;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-medium);
}

.credentials {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.degree {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-item {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.consultation-section h2 {
    color: var(--white);
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit i {
    color: #10B981;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    color: var(--text-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-btn.phone {
    background: var(--primary-color);
    color: var(--white);
}

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

.clinic-timing, .clinic-location {
    margin-bottom: 1rem;
}

.clinic-timing h4, .clinic-location h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Styles */
.footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
}

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

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

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-item span {
    color: var(--white);
}

.social-link .fab.fa-whatsapp {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Additional Section Fixes */
.section h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Overview Section Improvements */
.overview-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.overview-text p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content,
    .overview-content,
    .approach-content,
    .dos-donts-grid,
    .diet-recommendations,
    .why-choose-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .approach-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .approach-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .approach-image img {
        max-width: 300px;
    }
    
    .approach-text h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
}

/* ===================================
TREATMENT COMPARISON SECTION STYLES
=================================== */

.treatment-comparison {
    max-width: 1100px;
    margin: 0 auto;
}

/* Comparison Introduction Cards */
.comparison-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.intro-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    position: relative;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.homeopathy-card {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    border: 2px solid var(--secondary-color);
}

.conventional-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border: 2px solid #D1D5DB;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.homeopathy-card .card-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.conventional-card .card-icon {
    background: linear-gradient(135deg, #6B7280, #9CA3AF);
    color: var(--white);
}

.intro-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.conventional-card h3 {
    color: #374151;
}

.intro-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* VS Divider */
.vs-divider {
    position: relative;
    flex-shrink: 0;
}

.vs-divider span {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.comparison-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    box-shadow: var(--shadow-medium);
}

/* Comparison Aspect Header */
.comparison-aspect {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-color);
}

.comparison-aspect i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.comparison-aspect h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

/* Comparison Details */
.comparison-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-card {
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
}

.homeopathy-detail {
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    border-left: 4px solid var(--primary-color);
}

.conventional-detail {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-left: 4px solid #9CA3AF;
}

/* Card Headers */
.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeopathy-detail .card-header i {
    color: var(--primary-color);
}

.conventional-detail .card-header i {
    color: #6B7280;
}

.card-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.detail-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Benefit and Limitation Tags */
.benefit-tags, .limitation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.benefit-tags .tag {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.limitation-tags .tag {
    background: #E5E7EB;
    color: #6B7280;
}

/* Comparison Summary */
.comparison-summary {
    text-align: center;
}

.summary-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-heavy);
}

.summary-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.point i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.point span {
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design for Comparison Section */
@media (max-width: 1024px) {
    .comparison-intro {
        gap: 2rem;
    }
    
    .intro-card {
        max-width: 300px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .comparison-intro {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .intro-card {
        max-width: 100%;
        min-width: auto;
        padding: 2rem 1.5rem;
    }
    
    .comparison-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-aspect {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .comparison-aspect i {
        align-self: center;
    }
    
    .summary-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-card {
        padding: 2rem 1.5rem;
    }
    
    .point {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .treatment-comparison {
        padding: 0 1rem;
    }
    
    .comparison-item {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .detail-card {
        padding: 1rem;
    }
    
    .intro-card {
        padding: 1.5rem 1rem;
    }
}

/* ===================================
SUCCESS STORIES TESTIMONIALS STYLES
=================================== */

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
}

.testimonial-card.featured::before {
    content: "Featured";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--background-color);
}

.patient-info {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.patient-avatar.female {
    background: linear-gradient(135deg, #F48FB1, #EC407A);
}

.patient-avatar.mature {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.patient-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.patient-age {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.condition-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.condition-badge.androgenetic {
    background: rgba(194, 24, 91, 0.1);
    color: var(--primary-color);
}

.condition-badge.areata {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.condition-badge.hormonal {
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: #FFD700;
}

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

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-content p {
    padding-left: 2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Treatment Results */
.treatment-results {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 12px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.result-details strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.result-details span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.timeline i {
    color: var(--secondary-color);
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(244, 143, 177, 0.2) 100%);
    border: 2px solid var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--text-color);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.8;
}

/* Enhanced Success Stats */
.enhanced-success-stats {
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244, 143, 177, 0.1) 100%);
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(244, 143, 177, 0.2);
    position: relative;
    overflow: hidden;
}

.enhanced-success-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.stats-header-enhanced {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header-enhanced .header-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.stats-header-enhanced .header-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stats-header-enhanced h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.stats-header-enhanced p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.metric-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.metric-card.primary::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.metric-card.success::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.metric-card.time::before {
    background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
}

.metric-card.experience::before {
    background: linear-gradient(135deg, #8360c3 0%, #2ebf91 100%);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(244, 143, 177, 0.1);
    transition: all 0.3s ease;
}

.metric-card.primary .metric-icon {
    background: rgba(102, 126, 234, 0.1);
}

.metric-card.success .metric-icon {
    background: rgba(17, 153, 142, 0.1);
}

.metric-card.time .metric-icon {
    background: rgba(252, 74, 26, 0.1);
}

.metric-card.experience .metric-icon {
    background: rgba(131, 96, 195, 0.1);
}

.metric-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.metric-detail {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    font-style: italic;
}

.success-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(244, 143, 177, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(244, 143, 177, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.highlight-item i {
    font-size: 1.2rem;
    color: #11998e;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ===================================
DO'S AND DON'TS LIFESTYLE SECTION
=================================== */

.dos-donts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.dos-section,
.donts-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-header-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.dos-header {
    background: linear-gradient(135deg, #E8F5E8 0%, #C8E6C9 100%);
    border: 2px solid #4CAF50;
}

.donts-header {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFCCBC 100%);
    border: 2px solid #FF9800;
}

.section-header-card .header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.dos-header .header-icon {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: var(--white);
}

.donts-header .header-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: var(--white);
}

.section-header-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dos-header h3 {
    color: #2E7D32;
}

.donts-header h3 {
    color: #E65100;
}

.section-header-card p {
    margin: 0;
    opacity: 0.8;
}

/* Recommendations Grid */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    flex: 1;
    align-content: start;
}

.recommendation-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

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

.do-card {
    border-left-color: #4CAF50;
}

.do-card:hover {
    background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E8 100%);
}

.dont-card {
    border-left-color: #FF9800;
}

.dont-card:hover {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3E0 100%);
}

.recommendation-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.do-card .card-icon {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.dont-card .card-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.recommendation-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.recommendation-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

/* Lifestyle Summary */
.lifestyle-summary {
    margin-bottom: 2rem;
}

.summary-banner {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-text {
    text-align: left;
}

.banner-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.banner-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Medical Disclaimer */
.medical-disclaimer .disclaimer-card {
    background: var(--white);
    border: 2px solid var(--background-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disclaimer-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.disclaimer-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .success-stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .dos-donts-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dos-donts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .patient-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .section-header-card {
        padding: 1.5rem;
    }
    
    .banner-content {
        padding: 0;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .disclaimer-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
HAIR-HEALTHY DIET RECOMMENDATIONS SECTION
=================================== */

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

.nutrition-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.nutrition-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.nutrition-category h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nutrition-category h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.nutrition-category h3::after {
    content: attr(data-icon);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
}

.nutrition-category p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.nutrition-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nutrition-category li {
    padding: 0.8rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.nutrition-category li:last-child {
    border-bottom: none;
}

.nutrition-category li::before {
    content: "🥗";
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1.1rem;
}

/* Special icons for different categories */
.nutrition-category:nth-child(1) li::before {
    content: "🥩";
}

.nutrition-category:nth-child(2) li::before {
    content: "🍎";
}

.nutrition-category:nth-child(3) li::before {
    content: "💊";
}

.nutrition-category:nth-child(4) li::before {
    content: "💧";
}

.nutrition-category:nth-child(5) li::before {
    content: "🚫";
}

.nutrition-category:nth-child(6) li::before {
    content: "🌿";
}

/* ===================================
WHY CHOOSE DR. ANURADHA SECTION
=================================== */

.why-choose {
    margin-top: 2rem;
    text-align: center;
}

.choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.expertise-point {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.expertise-point:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--white) 0%, var(--background-color) 100%);
}

.expertise-point i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.expertise-point h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.expertise-point p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    max-width: 600px;
}

.choose-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.choose-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Credentials Section */
.credentials {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-heavy);
}

.credentials h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.credential-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.credential-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.credential-item p {
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .nutrition-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .choose-content {
        gap: 3rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-content {
        gap: 2rem;
        max-width: 100%;
    }
    
    .expertise-points {
        max-width: 100%;
    }
    
    .expertise-point {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .expertise-point p {
        max-width: 100%;
    }
    
    .credentials {
        padding: 2rem 1rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nutrition-category {
        padding: 1.5rem;
    }
    
    .expertise-point {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .credential-item {
        padding: 1rem;
    }
}

/* ===================================
CONSULTATION BOOKING SECTION
=================================== */

#contact {
    background: var(--gradient-primary) !important;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path fill="rgba(255,255,255,0.05)" d="M0,150 Q250,50 500,150 T1000,150 L1000,300 L0,300 Z"></path></svg>');
    background-size: 100% 100%;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact h2 {
    color: var(--white) !important;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info > p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

#contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 80px;
}

#contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

#contact .contact-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#contact .contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contact .contact-item div h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    margin-top: 0;
}

#contact .contact-item div p {
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

#contact .contact-item span {
    color: var(--white);
    opacity: 0.9;
}

/* Appointment Form */
.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.appointment-form h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Contact Form - keeping both for compatibility */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

.form-group label {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    background: var(--background-color);
}

/* ===================================
FOOTER SECTION REDESIGN
=================================== */

.footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-container {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.4rem;
}

.footer-logo h3::after {
    display: none;
}

.footer-section p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 143, 177, 0.4);
}

/* Footer Lists */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    padding-left: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Footer Contact Items */
.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
}

.footer .contact-item:hover {
    background: none;
    transform: none;
}

.footer .contact-item i {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: none;
}

.footer .contact-item p {
    margin: 0;
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .contact-content {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #contact h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-form,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 60px 0;
    }
    
    #contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .appointment-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    #contact .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        align-items: center;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* ===================================
COMPACT CONTACT SECTION STYLES
=================================== */

.compact-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Summary */
.contact-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.quick-contact {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--background-color);
    transform: translateX(5px);
}

.contact-method.primary-contact {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.contact-method.primary-contact:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateX(5px) translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-method i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method:not(.primary-contact) i {
    background: var(--gradient-primary);
    color: var(--white);
}

.primary-contact i {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.primary-contact .method-details h4 {
    color: var(--white);
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-contact .contact-link {
    color: var(--white);
}

.contact-link:hover {
    text-decoration: underline;
}

/* Clinic Info */
.clinic-info {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 24px;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Specific styling for clinic info text */
.info-item span {
    color: #000000 !important;
}

/* Contact section header description styling */
#contact .section-header p {
    color: #ffffff !important;
}

/* Compact hero section without image */
.compact-hero {
    padding: 60px 0 40px;
    min-height: auto;
}

.compact-hero .hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

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

.centered-hero h1 {
    margin-bottom: 1.5rem;
}

.centered-hero .hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.centered-hero .hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.centered-hero .hero-buttons {
    justify-content: center;
}

/* Quick Form */
.quick-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--secondary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Compact Form Styles */
.compact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compact-form .form-group {
    margin-bottom: 1rem;
}

.compact-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.compact-form input,
.compact-form select,
.compact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--background-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.compact-form input:focus,
.compact-form select:focus,
.compact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.compact-form textarea {
    resize: vertical;
    min-height: 60px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Consultation Benefits */
.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    color: var(--white);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive Design for Compact Contact */
@media (max-width: 1024px) {
    .compact-contact-container {
        gap: 2rem;
    }
    
    .contact-summary,
    .quick-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .compact-contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .consultation-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .contact-method {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-summary,
    .quick-form {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .contact-method i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .method-details h4 {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}


/* ===================================
ENHANCED TREATMENT APPROACH STYLES
=================================== */

.treatment-approach-enhanced {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-step {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.approach-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
    border-bottom: 1px solid rgba(194, 24, 91, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: "Playfair Display", serif;
}

.step-title h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-title p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-size: 1rem;
}

.step-content {
    padding: 2rem;
}

/* Assessment Grid */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.assessment-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.assessment-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.assessment-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.assessment-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.assessment-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* Prescribing Targets */
.prescribing-targets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
    transform: translateX(5px);
}

.target-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.target-item span {
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

/* Monitoring Grid */
.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.monitoring-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.monitoring-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-light);
    transform: translateY(-3px);
}

.monitoring-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.monitoring-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.monitoring-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .assessment-grid,
    .monitoring-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .target-item {
        padding: 0.8rem;
    }
    
    .assessment-item,
    .monitoring-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .step-header {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-title h3 {
        font-size: 1.2rem;
    }
}


/* ===== CLINIC BACKGROUND FOR CONTACT SECTIONS ===== */

/* Contact/Consultation Sections - Clinic Background (matching HydraFacial style) */
.section.section-alt,
.contact {
    background-image: url('../assets/treatment-images/clinic-reception-area.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Add a subtle overlay for better text readability */
.section.section-alt::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.85) 0%, rgba(244, 143, 177, 0.75) 100%);
    z-index: 1;
}

/* Ensure content appears above overlay */
.section.section-alt .container,
.contact .container {
    position: relative;
    z-index: 2;
}

/* Enhanced styling for forms and content on background */
.section.section-alt .compact-form,
.section.section-alt .contact-form,
.contact .contact-form-container,
.contact .clinic-details {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.15) !important;
    padding: 30px !important;
}

/* Ensure text is readable over background */
.section.section-alt .section-header h2,
.section.section-alt .section-header p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.8);
    color: #880E4F !important;
}
