/* ================================================
   Hindi Wellness White Page - Complete Stylesheet
   ================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-green: #2E7D32;
    --light-green: #81C784;
    --accent-blue: #0288D1;
    --text-dark: #2C3E50;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #F8FBF8;
    --white: #FFFFFF;
    --border-light: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Serif Devanagari', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FBF8 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-green);
}

/* About Section */
#about {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Expert Section */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.expert-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.expert-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.expert-info {
    padding: 25px;
    text-align: center;
}

.expert-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.expert-info .qualification {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.expert-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Blog Articles Section */
#articles {
    background: var(--bg-light);
}

.article-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.article-item {
    background: var(--white);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.article-item:last-child {
    margin-bottom: 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
}

.article-meta i {
    margin-right: 5px;
}

.article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.article-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;
}

.article-body ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

.article-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.article-divider {
    border: none;
    border-top: 2px solid var(--border-light);
    margin: 35px 0;
}

.article-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 15px;
    background: var(--bg-light);
    border-left: 4px solid var(--light-green);
    border-radius: 4px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1B5E20;
}

.form-privacy {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.form-privacy i {
    margin-right: 5px;
    color: var(--primary-green);
}

/* Disclaimer Section */
.disclaimer {
    background: #FFF9E6;
    border: 2px solid #FFE082;
    padding: 40px;
    text-align: center;
}

.disclaimer h3 {
    color: #F57C00;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.disclaimer p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col a {
    color: #CCCCCC;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .trust-icons {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .expert-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-item {
        padding: 30px 20px;
    }

    .article-header h2 {
        font-size: 1.6rem;
    }

    .about-content {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}