@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* Design System & Variables */
:root {
    --primary-color: #0d5c3a;      /* Deep Agri Green */
    --primary-hover: #074026;
    --primary-light: #ecfdf5;
    --secondary-color: #d97706;    /* Harvest Gold */
    --secondary-light: #fef3c7;
    --accent-color: #10b981;       /* Vibrant Green */
    --dark-color: #0f172a;         /* Charcoal */
    --light-bg: #f8fafc;           /* Cool grey-blue background */
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #16a34a;
    --danger-color: #dc2626;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --font-heading: 'Baloo 2', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Noto Sans Devanagari', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Premium Top Header Announcement */
.top-announcement {
    background: linear-gradient(135deg, var(--primary-color), #047857);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.top-announcement .badge {
    background-color: var(--secondary-color);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Glassmorphism Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(13, 92, 58, 0.2);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.logo-text h1 {
    font-size: 1.25rem;
    line-height: 1.1;
    margin-bottom: 0.1rem;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), #15803d);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 92, 58, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 92, 58, 0.3);
    background: linear-gradient(135deg, #074026, #166534);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.65rem 1.35rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at 10% 20%, rgba(236, 253, 245, 0.8) 0%, rgba(255, 255, 255, 1) 90%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-text h2 span {
    color: var(--secondary-color);
    display: block;
}

.hero-text p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-left: 5px solid var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-badge-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.hero-badge-overlay p {
    font-size: 0.85rem;
    color: #475569;
}

/* Feature Metrics & Quick Info Cards */
.quick-info-section {
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

.metric-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(16, 185, 129, 0.2);
}

.metric-icon {
    background-color: var(--primary-light);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.metric-details h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.metric-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.metric-details p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Core Sections General Styling */
.section {
    padding: 6rem 0;
}

.section-bg-light {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.05rem;
    color: #64748b;
}

/* Scheme Schemes Card details */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.scheme-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.scheme-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.scheme-box.accent-gold::before {
    background: linear-gradient(to right, var(--secondary-color), #f59e0b);
}

.scheme-tag {
    align-self: flex-start;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.scheme-box:not(.accent-gold) .scheme-tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.scheme-box.accent-gold .scheme-tag {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}

.scheme-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.scheme-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.scheme-box.accent-gold .scheme-amount {
    color: var(--secondary-color);
}

.scheme-amount span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
}

.scheme-box ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.scheme-box ul li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.85rem;
    color: #475569;
}

.scheme-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 900;
}

/* Premium Eligibility Calculator Styling */
.calculator-box {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.calc-inputs {
    padding: 3rem;
    background-color: #fcfdfd;
    border-right: 1px solid #f1f5f9;
}

.calc-results-panel {
    padding: 3rem;
    background: linear-gradient(145deg, #0a482d, #063c24);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.calc-results-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm56-76c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm76 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM50 75c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm0-44c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zM9 56c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm82 0c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.calc-inputs h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #475569;
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.input-symbol {
    position: absolute;
    left: 1rem;
    font-weight: 700;
    color: #64748b;
}

.input-with-symbol input {
    padding-left: 2.25rem;
}

.form-group input[type="number"],
.form-group select,
.form-group input[type="date"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark-color);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-btn {
    position: relative;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.radio-btn input:checked + .radio-label {
    border-color: var(--accent-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-calculate {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), #15803d);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 92, 58, 0.25);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: linear-gradient(135deg, #074026, #166534);
    transform: translateY(-1px);
}

/* Results Panel Styling */
.calc-results-initial {
    text-align: center;
    padding: 2rem;
}

.calc-results-initial svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.calc-results-initial h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.calc-results-initial p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.calc-results-active {
    display: none;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.status-indicator.success {
    background-color: rgba(22, 163, 74, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-indicator.warning {
    background-color: rgba(217, 119, 6, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-indicator.danger {
    background-color: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.result-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.result-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breakdown-table {
    width: 100%;
    margin-bottom: 2rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breakdown-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.breakdown-label {
    color: rgba(255,255,255,0.7);
}

.result-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    background-color: rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
}

/* Dynamic steps/timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    width: 2px;
    background-color: #cbd5e1;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

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

.timeline-badge {
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
}

.timeline-step {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #475569;
    font-size: 0.95rem;
}

/* Documents checklist section */
.docs-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.checklist-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-custom svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
    display: none;
}

.checklist-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checklist-item input:checked + .checkbox-custom {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.checklist-item input:checked + .checkbox-custom svg {
    display: block;
}

.checklist-text h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.checklist-text p {
    font-size: 0.875rem;
    color: #64748b;
}

.checklist-item input:checked ~ .checklist-text h4 {
    text-decoration: line-through;
    color: #94a3b8;
}

/* Premium SEO Accordion (FAQs) */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-header h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafbfc;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: var(--card-shadow);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    max-height: 500px; /* Adjust according to text length */
}

/* Contact Grid & Help Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-detail-text h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.25rem;
}

.contact-detail-text a {
    font-weight: 700;
    color: var(--accent-color);
}

.contact-detail-text a:hover {
    color: var(--primary-color);
}

.support-disclaimer {
    background-color: #fffbeb;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #78350f;
}

/* Footer Section styling */
footer {
    background-color: #0c1a16;
    color: #94a3b8;
    padding: 5rem 0 2rem;
    border-top: 5px solid var(--primary-color);
}

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

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom span {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Mobile responsive design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .calculator-box {
        grid-template-columns: 1fr;
    }
    
    .calc-inputs {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .schemes-grid, .docs-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .docs-layout img {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar .btn-cta {
        display: none; /* Can trigger from menu instead */
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.85rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* WhatsApp Support Section */
.whatsapp-support-section {
    background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
    padding: 6rem 0;
}
.whatsapp-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 3rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.whatsapp-card h3 {
    font-size: 1.75rem;
    color: #16a34a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.whatsapp-tip {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
    font-size: 0.85rem;
    color: #166534;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .whatsapp-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
}

/* Mobile Phone Responsive Enhancements */
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }
    
    .hero-text h2 {
        font-size: 1.65rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 4.5rem 0;
    }
    
    /* Layout padding scale downs */
    .calc-inputs, .calc-results-panel {
        padding: 1.5rem;
    }
    
    .scheme-box {
        padding: 1.75rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .checklist-box {
        padding: 1.5rem;
    }
    
    .faq-header {
        padding: 1.25rem 1rem;
    }
    
    .faq-header h3 {
        font-size: 1.05rem;
    }
    
    .faq-content {
        padding: 0 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem;
    }
    
    .contact-detail-card {
        padding: 1.25rem;
    }
    
    /* Stack side-by-side elements on mobile */
    .form-row, .radio-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .scheme-amount {
        font-size: 2.25rem;
    }
    
    .result-title {
        font-size: 1.75rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
}
