/* Bhujal - Content Sections Styles */

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Heritage & Socio-Cultural Section */
.heritage-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.heritage-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-body);
}

.heritage-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.heritage-block.highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid var(--secondary);
}

.heritage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.heritage-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.heritage-content>p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.heritage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heritage-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.heritage-list li:last-child {
    border-bottom: none;
}

.heritage-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

/* Economy Grid */
.economy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.economy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.eco-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.economy-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.economy-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.eco-stat {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.stat-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.impact-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.impact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.impact-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.impact-text p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

/* Sustainability Box */
.sustainability-box {
    background: linear-gradient(135deg, #0A0E27 0%, #1a3a52 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}

.sustainability-box h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.sustain-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.sustain-stat {
    padding: 1rem;
}

.s-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.s-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.sustainability-box>p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .heritage-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heritage-icon {
        margin: 0 auto 1rem;
    }

    .economy-grid,
    .impact-grid,
    .sustain-stats {
        grid-template-columns: 1fr;
    }
}

/* Modern Hero */
.hero-modern {
    padding: 8rem 0 5rem;
    background: var(--dark-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 166, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    opacity: 0.85;
}

.trust-icon {
    color: #00E5CC;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    animation: animate-float 4s ease-in-out infinite;
}

.preview-header {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.p-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.p-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.p-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

.p-stat.live .p-num {
    color: #00E5CC;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.service-time {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-docs span {
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.fee-table-mini {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.cta-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Regulations Section */
.regulations-section {
    padding: 5rem 0;
    background: white;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.regulation-card {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s;
}

.regulation-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.regulation-card.primary {
    grid-column: span 1;
    background: white;
    border: 2px solid var(--primary);
}

.reg-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.regulation-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.regulation-card>p {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reg-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.reg-points li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-body);
}

.reg-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.reg-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reg-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.reg-resources {
    margin-top: 3rem;
    text-align: center;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.resource-link:hover {
    background: var(--primary);
    color: white;
}

/* Officers Section */
.officers-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f42 100%);
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.adoption-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.adoption-visual {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.brain-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.adoption-visual h3 {
    color: white;
}

.adoption-content .lead {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.neuro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.neuro-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.neuro-item h4 {
    color: #00E5CC;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.neuro-item p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* ROI Section */
.roi-section {
    margin: 4rem 0;
}

.roi-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.roi-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-before,
.roi-after {
    flex: 1;
    text-align: center;
}

.roi-before .label,
.roi-after .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 4px;
}

.roi-before .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b6b;
}

.roi-after .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00E5CC;
}

.roi-before .desc,
.roi-after .desc {
    font-size: 0.75rem;
    opacity: 0.7;
}

.roi-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Adoption CTA */
.adoption-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.adoption-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.adoption-cta>p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.adoption-timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-step {
    text-align: center;
}

.t-week {
    display: block;
    font-weight: 700;
    color: #00E5CC;
    margin-bottom: 4px;
}

.t-task {
    font-size: 0.85rem;
    opacity: 0.8;
}

.btn-accent {
    background: linear-gradient(135deg, #00E5CC, #00A6A6);
    color: #0A0E27;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.faq-cat {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.faq-cat:hover,
.faq-cat.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.fee-table th,
.fee-table td {
    padding: 10px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.fee-table th {
    background: var(--light-bg);
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-main address {
    font-style: normal;
    margin-bottom: 2rem;
}

.contact-main p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.district-list {
    display: grid;
    gap: 0.75rem;
}

.district-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--light-bg);
    border-radius: 6px;
    font-size: 0.9rem;
}

.d-name {
    font-weight: 500;
}

.d-phone {
    color: var(--primary);
}

.view-all-districts {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 500;
}

/* Enquiry Form */
.enquiry-form-section {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
}

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.enquiry-form .form-group {
    margin-bottom: 1rem;
}

.enquiry-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Footer Enhancements */
.compliance-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.compliance-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.helpline-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00E5CC;
}

.helpline-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regulations-grid {
        grid-template-columns: 1fr;
    }

    .adoption-block {
        grid-template-columns: 1fr;
    }

    .neuro-features {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 15px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }

    .adoption-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .enquiry-form .form-row {
        grid-template-columns: 1fr;
    }
}