/*
 * Prakurti Ayurveda - Enhanced Ayurvedic Theme Styles
 * Embracing the essence of traditional Ayurveda with modern design
 * Authentic Ayurvedic wellness design system
 */

/* Ayurvedic Color Palette - Natural & Harmonious */
:root {
    /* Primary Natural Colors - Soft & Unified */
    --ayurveda-primary: #7D8471; /* Soft sage - Main brand */
    --ayurveda-secondary: #B5A082; /* Warm stone - Secondary */
    --ayurveda-accent: #9CAF88; /* Gentle green - Accent */
    --ayurveda-earth: #F2F0E8; /* Very soft cream */
    --ayurveda-sage: #9CAF88; /* Main green */
    --ayurveda-lotus: #C8B5A0; /* Soft lotus - muted plum */
    
    /* Dosha Colors - Harmonized & Soft */
    --vata-color: #F0F2EE; /* Very light sage - Air Element */
    --pitta-color: #F5F1EA; /* Very light stone - Fire Element */
    --kapha-color: #F2F0E8; /* Very light cream - Earth Element */
    
    /* Neutral Natural Tones - Compact Palette */
    --ayurveda-cream: #FAFAF8; /* Almost white cream */
    --ayurveda-ivory: #F8F6F0; /* Warm ivory */
    --ayurveda-sandalwood: #B5A082; /* Soft sandalwood */
    --ayurveda-charcoal: #4A4A43; /* Soft dark green-brown */
    
    /* Healing Herb Colors - Muted & Natural */
    --turmeric: #C4A373; /* Soft golden */
    --neem: #8FAF8A; /* Soft sage green */
    --ashwagandha: #A0937D; /* Soft earth brown */
    --tulsi: #9CAF88; /* Soft tulsi green */
    
    /* Subtle Gradients - Very Natural */
    --ayurveda-sunrise: linear-gradient(135deg, #FAFAF8 0%, #F2F0E8 50%, #E8E4DC 100%);
    --ayurveda-forest: linear-gradient(135deg, #F0F2EE 0%, #E8F2E8 50%, #E0EDE0 100%);
    --ayurveda-earth: linear-gradient(135deg, #F8F6F0 0%, #F2F0E8 50%, #E8E4DC 100%);
    
    /* Theme overrides for existing Bootstrap variables */
    --bs-primary: var(--ayurveda-primary);
    --bs-success: var(--neem);
    --bs-warning: var(--turmeric);
    --bs-info: var(--ayurveda-sage);
}

/* Global Theme Application - Softer & More Natural */
.ayurveda-theme-body {
    background-color: var(--ayurveda-cream);
    font-family: 'Crimson Text', serif;
    color: var(--ayurveda-charcoal);
    transition: all 0.3s ease;
}

/* Typography - Inspired by Sanskrit and Ayurvedic texts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Philosopher:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

.ayurveda-title {
    font-family: 'Philosopher', serif;
    color: var(--ayurveda-primary);
    position: relative;
}

.ayurveda-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--ayurveda-accent);
    border-radius: 2px;
}

.ayurveda-text {
    font-family: 'Crimson Text', serif;
    color: var(--ayurveda-charcoal);
    line-height: 1.7;
}

.ayurveda-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ayurveda-secondary);
    font-weight: 500;
}

/* Header Styling */
.ayurveda-header {
    background: linear-gradient(135deg, var(--ayurveda-cream) 0%, var(--ayurveda-ivory) 100%);
    border-bottom: 3px solid var(--ayurveda-accent);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

.ayurveda-logo {
    filter: sepia(20%) hue-rotate(25deg) brightness(1.1);
}

/* Navigation */
.ayurveda-nav .nav-link {
    color: var(--ayurveda-primary) !important;
    font-family: 'Philosopher', serif;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.ayurveda-nav .nav-link:hover {
    color: var(--ayurveda-accent) !important;
    transform: translateY(-2px);
}

.ayurveda-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ayurveda-accent);
    transition: width 0.3s ease;
}

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

/* Banner/Hero Section */
.ayurveda-banner {
    background: var(--ayurveda-sunrise);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.ayurveda-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ayurveda-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0;
}

.ayurveda-banner-title {
    font-family: 'Philosopher', serif;
    font-size: 3.5rem;
    color: var(--ayurveda-charcoal);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.ayurveda-banner-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--ayurveda-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Card Styling */
.ayurveda-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    background: linear-gradient(135deg, var(--ayurveda-cream) 0%, var(--ayurveda-ivory) 100%);
    overflow: hidden;
    position: relative;
}

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

.ayurveda-card .card-body {
    padding: 2rem;
}

/* Ayurvedic Footer */
.ayurveda-footer {
    border-top: 1px solid var(--ayurveda-earth);
    padding-top: 1rem;
    margin-top: 1rem;
}
.ayurveda-footer {
    background: var(--ayurveda-charcoal);
    color: var(--ayurveda-cream);
    padding: 4rem 0 2rem;
    position: relative;
}

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

/* Decorative Elements */
.ayurveda-decorative-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--ayurveda-sage);
    border-radius: 0 100% 0 100%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Mantra/Sanskrit Text Styling */
.ayurveda-mantra {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ayurveda-accent);
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0;
    position: relative;
}

.ayurveda-mantra::before,
.ayurveda-mantra::after {
    content: '❀';
    color: var(--ayurveda-sage);
    margin: 0 1rem;
}

/* ==========================================================================
   REDESIGNED HOMEPAGE STYLES - COMPREHENSIVE
   ========================================================================== */

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(125, 132, 113, 0.1);
    border: 1px solid var(--ayurveda-earth);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(125, 132, 113, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

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

.patient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ayurveda-sage);
}

.patient-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient-name {
    margin: 0;
    color: var(--ayurveda-primary);
    font-weight: 600;
}

.patient-location {
    margin: 0;
    color: var(--ayurveda-secondary);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
}

.treatment-badge {
    background: linear-gradient(135deg, var(--ayurveda-primary), var(--ayurveda-sage));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-text {
    color: var(--ayurveda-charcoal);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--ayurveda-earth);
}

.treatment-duration {
    color: var(--ayurveda-secondary);
    font-size: 0.8rem;
}

.success-badge {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Video Testimonials */
.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(125, 132, 113, 0.1);
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 132, 113, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1rem;
}

.video-info h6 {
    color: var(--ayurveda-primary);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--ayurveda-charcoal);
    margin: 0;
    font-size: 0.9rem;
}

/* Testimonial Stats */
.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-circle .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

/* Online Consultation Styles */
.consultation-booking-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(125, 132, 113, 0.15);
    border: 1px solid var(--ayurveda-earth);
}

.consultation-price {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.discount-badge {
    background: #ff6b6b;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Why Choose Us Styles */
.features-grid .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-container {
    background: linear-gradient(135deg, var(--ayurveda-primary), var(--ayurveda-sage));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--ayurveda-charcoal);
    line-height: 1.6;
    margin: 0;
}

/* Achievement Cards */
.achievement-cards {
    position: relative;
    padding: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.achievement-text {
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Process Steps */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    background: white;
    color: var(--ayurveda-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 0.5rem;
}

.step-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: white;
    opacity: 0.9;
    font-size: 0.8rem;
    margin: 0;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Doctor Profile Styles */
.doctor-image-container {
    position: relative;
    text-align: center;
}

.doctor-image-wrapper {
    position: relative;
    display: inline-block;
}

.doctor-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.doctor-experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
}

.experience-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.experience-text {
    font-size: 0.8rem;
}

/* Floating Stats around Doctor Image */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    min-width: 80px;
}

.stat-bubble-1 {
    top: 10%;
    left: -20%;
    animation: float 3s ease-in-out infinite;
}

.stat-bubble-2 {
    bottom: 30%;
    right: -20%;
    animation: float 3s ease-in-out infinite 1s;
}

.stat-bubble-3 {
    bottom: 10%;
    left: -15%;
    animation: float 3s ease-in-out infinite 2s;
}

.stat-bubble .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ayurveda-primary);
    display: block;
}

.stat-bubble .stat-label {
    font-size: 0.8rem;
    color: var(--ayurveda-charcoal);
}

/* Doctor Info Styles */
.doctor-name {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Philosopher', serif;
}

.doctor-designation {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.credential-icon {
    font-size: 1.2rem;
}

.doctor-description .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

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

.specialization-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 0.25rem 0;
    opacity: 0.95;
}

.philosophy-quote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
    padding: 1.5rem;
    border-radius: 10px;
    font-style: italic;
    margin: 1rem 0;
}

.philosophy-quote cite {
    font-style: normal;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Treatment Philosophy */
.philosophy-item {
    text-align: center;
    padding: 1rem;
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.philosophy-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Emergency Contact Styles */
.emergency-contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.emergency-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-title {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: white;
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    text-decoration: none;
    color: white;
}

.method-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-content h6 {
    margin: 0;
    font-weight: 600;
}

.contact-number {
    font-size: 0.9rem;
    opacity: 0.9;
}

.method-action {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.emergency-conditions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
}

.conditions-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.conditions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.condition-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ayurvedic Principles Styles */
.dosha-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(125, 132, 113, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.dosha-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(125, 132, 113, 0.15);
}

.vata-card:hover {
    border-color: #9370DB;
}

.pitta-card:hover {
    border-color: #FF6347;
}

.kapha-card:hover {
    border-color: #228B22;
}

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

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

.dosha-name {
    color: var(--ayurveda-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Philosopher', serif;
}

.dosha-elements {
    color: var(--ayurveda-secondary);
    font-style: italic;
    margin: 0;
}

.dosha-content h6 {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.dosha-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.dosha-content li {
    padding: 0.25rem 0;
    color: var(--ayurveda-charcoal);
    position: relative;
    padding-left: 1.5rem;
}

.dosha-content li:before {
    content: "•";
    color: var(--ayurveda-sage);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Assessment Card */
.assessment-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(125, 132, 113, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.assessment-benefits .benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-item h6 {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--ayurveda-charcoal);
    font-size: 0.9rem;
    margin: 0;
}

/* Lifestyle Tips */
.tip-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(125, 132, 113, 0.1);
    border: 1px solid var(--ayurveda-earth);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 132, 113, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h6 {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--ayurveda-charcoal);
    line-height: 1.6;
    margin: 0;
}

/* Health Tips Styles */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.tip-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--ayurveda-sage), var(--ayurveda-primary));
    color: white;
}

.tip-highlight .tip-content h6 {
    color: white;
}

.tip-highlight .tip-content p {
    color: white;
    opacity: 0.95;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Article Cards */
.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(125, 132, 113, 0.1);
    border: 1px solid var(--ayurveda-earth);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 132, 113, 0.15);
}

.article-image {
    height: 120px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-content {
    padding: 1rem;
}

.article-title {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--ayurveda-charcoal);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.read-time {
    color: var(--ayurveda-secondary);
}

.article-category {
    color: var(--ayurveda-sage);
    font-weight: 600;
}

/* Download Resources */
.download-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(125, 132, 113, 0.08);
    border: 1px solid var(--ayurveda-earth);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 132, 113, 0.12);
}

.download-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--ayurveda-sage);
}

.download-content h6 {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.download-content p {
    color: var(--ayurveda-charcoal);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.download-link {
    color: var(--ayurveda-sage);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.download-link:hover {
    color: var(--ayurveda-primary);
    text-decoration: underline;
}

/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, var(--ayurveda-primary), var(--ayurveda-sage));
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.newsletter-title {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    opacity: 0.95;
    margin-bottom: 0;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.25rem;
}

.newsletter-form .btn {
    border: none;
    padding: 0.75rem 1.5rem;
    background: #28a745;
    font-weight: 600;
}

.newsletter-privacy {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Seasonal Tips */
.season-card {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(125, 132, 113, 0.08);
    border: 1px solid var(--ayurveda-earth);
    height: 100%;
}

.season-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ayurveda-earth);
}

.season-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.season-header h6 {
    color: var(--ayurveda-primary);
    font-weight: 600;
    margin: 0;
}

.season-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.season-tips li {
    padding: 0.5rem 0;
    color: var(--ayurveda-charcoal);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.season-tips li:before {
    content: "🌱";
    position: absolute;
    left: 0;
}

/* Responsive Design for All Components */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-highlight {
        grid-column: span 1;
    }
    
    .dosha-card {
        margin-bottom: 2rem;
    }
    
    .doctor-image {
        width: 250px;
        height: 320px;
    }
    
    .floating-stats {
        display: none;
    }
    
    .doctor-name {
        font-size: 2rem;
    }
    
    .doctor-designation {
        font-size: 1.1rem;
    }
    
    .specialization-tags {
        justify-content: center;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .patient-info {
        width: 100%;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .newsletter-card {
        text-align: center;
    }
    
    .newsletter-form {
        margin-top: 1rem;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
    }
    
    .download-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .emergency-contact-card {
        margin-top: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .method-icon {
        margin-right: 0;
    }
    
    .conditions-list {
        justify-content: center;
    }
}

/* Section spacing */
.redesigned-homepage section {
    position: relative;
    z-index: 2;
}

/* Smooth animations */
.redesigned-homepage [data-aos] {
    pointer-events: none;
}

.redesigned-homepage [data-aos].aos-animate {
    pointer-events: auto;
}

/* Print styles */
@media print {
    .floating-actions,
    .floating-emergency-btn,
    .scroll-to-top,
    .emergency-widget {
        display: none !important;
    }
}
