/* Start custom CSS for html, class: .elementor-element-a0546bc *//* ============================================================
   START A PETITION — Sampreshan
   Complete CSS Stylesheet
   Mobile-First | Responsive | Modern Spiritual Design
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
    --saffron: #FF9933;
    --saffron-dark: #e0851a;
    --saffron-light: #ffe4b3;
    --deep-blue: #1E3A8A;
    --deep-blue-dark: #152b66;
    --deep-blue-light: #2a4bb5;
    --white: #FFFFFF;
    --off-white: #f8f6f0;
    --light-bg: #f5f2eb;
    --gray-light: #e8e4da;
    --gray-mid: #8a867a;
    --text-dark: #1a1a1a;
    --text-muted: #4a473f;
    --shadow-sm: 0 2px 12px rgba(30, 58, 138, 0.08);
    --shadow-md: 0 8px 32px rgba(30, 58, 138, 0.12);
    --shadow-lg: 0 16px 48px rgba(30, 58, 138, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --header-height: 70px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.25s ease;
}
.skip-link:focus {
    top: 0;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.35);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 153, 51, 0.45);
}
.btn-primary:focus-visible {
    outline: 3px solid var(--deep-blue);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}
.btn-outline:hover,
.btn-outline:focus {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 58, 138, 0.25);
}
.btn-outline:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

.btn-white {
    background: var(--white);
    color: var(--deep-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}
.btn-white:hover,
.btn-white:focus {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.btn-white:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.8rem;
    font-size: 1.05rem;
}

.btn-reset {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--gray-light);
}
.btn-reset:hover,
.btn-reset:focus {
    background: var(--gray-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}
.btn-reset:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Header / Nav ===== */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gray-light);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--deep-blue);
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--saffron);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-text span {
    color: var(--saffron);
}
.logo-tagline {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
.nav-links a:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 4px;
    border-radius: 4px;
}
.nav-links .active {
    color: var(--saffron-dark);
    font-weight: 600;
}
.nav-links .active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 6px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--deep-blue);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(145deg, var(--deep-blue) 0%, #0f2a5c 100%);
    color: var(--white);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: 'ॐ';
    position: absolute;
    right: -2rem;
    top: -2rem;
    font-size: 22rem;
    opacity: 0.035;
    pointer-events: none;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--saffron);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 153, 51, 0.20);
    color: var(--saffron-light);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 153, 51, 0.25);
}
.hero h1 {
    font-size: clamp(2.4rem, 7vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.hero h1 .highlight {
    color: var(--saffron);
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    margin-bottom: 1.5rem;
    max-width: 180px;
}
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}
.hero-image-placeholder:hover {
    border-color: var(--saffron);
    background: rgba(255, 153, 51, 0.08);
}

/* ===== Table of Contents ===== */
.toc-section {
    background: var(--off-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.toc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
}
.toc-label {
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 0.9rem;
    margin-right: 0.25rem;
}
.toc-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.toc-link:hover,
.toc-link:focus {
    color: var(--deep-blue);
    background: var(--white);
    border-color: var(--saffron);
    box-shadow: var(--shadow-sm);
}
.toc-link:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Section Shared ===== */
section {
    padding: 3.5rem 0;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-title .highlight {
    color: var(--saffron);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 153, 51, 0.15);
    color: var(--saffron-dark);
    padding: 0.25rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.bg-light {
    background: var(--light-bg);
}
.bg-offwhite {
    background: var(--off-white);
}
.bg-white {
    background: var(--white);
}

/* ===== Before You Start ===== */
.before-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.before-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--saffron);
}
.before-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.before-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.5rem;
}
.before-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}
.before-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Form Container ===== */
.form-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.required-indicator {
    color: #c0392b;
    font-weight: 700;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-top: 0.25rem;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-top: 0.2rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.15);
}
.form-control.error {
    border-color: #c0392b;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
}
.form-control::placeholder {
    color: var(--gray-mid);
    opacity: 0.7;
}

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

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a867a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ===== Upload Area ===== */
.upload-area {
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--off-white);
    position: relative;
}
.upload-area:hover,
.upload-area:focus {
    border-color: var(--saffron);
    background: #fcf8f0;
}
.upload-area.has-files {
    border-color: var(--deep-blue);
    background: #eef3fb;
}
.upload-area .upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.upload-area .upload-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.upload-area .upload-hint {
    font-size: 0.8rem;
    color: var(--gray-mid);
}
.upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.featured-upload {
    padding: 2rem 1.5rem;
}
.featured-upload .upload-icon {
    font-size: 2.6rem;
}

/* ===== Radio & Checkbox ===== */
.radio-group {
    border: none;
    padding: 0;
    margin: 0;
}
.radio-group legend {
    padding: 0;
    margin-bottom: 0.3rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.3rem;
}
.radio-label:hover {
    background: var(--off-white);
}
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: var(--saffron);
}
.radio-text {
    font-weight: 500;
    color: var(--text-dark);
}
.radio-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-mid);
    font-weight: 400;
}

.checkbox-group {
    border: none;
    padding: 0;
    margin: 0;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.checkbox-label:hover {
    background: var(--off-white);
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    accent-color: var(--saffron);
}
.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== Form Actions ===== */
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

/* ===== Review Process ===== */
.review-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--saffron);
}
.timeline-step:hover {
    box-shadow: var(--shadow-md);
}
.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--deep-blue);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}
.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.15rem;
}
.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== After Submission ===== */
.after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.after-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--deep-blue);
}
.after-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.after-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.4rem;
}
.after-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.2rem;
}
.after-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Tips Grid ===== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.tip-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--saffron-light);
}
.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tip-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.4rem;
}
.tip-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.2rem;
}
.tip-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Not Accepted ===== */
.not-accepted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}
.not-accepted-item {
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    border-left: 4px solid #c0392b;
}
.not-accepted-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.na-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #c0392b;
}
.not-accepted-item span:last-child {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Eligible Topics ===== */
.eligible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.eligible-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid #2b8a3e;
}
.eligible-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.eligible-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.3rem;
}
.eligible-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.15rem;
}
.eligible-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.eligible-card.allowed {
    border-left-color: #2b8a3e;
}

.not-eligible-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.not-eligible-item {
    background: #fde8e8;
    color: #c0392b;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(192, 57, 43, 0.15);
}

/* ===== Help Box ===== */
.help-box {
    background: var(--deep-blue);
    color: var(--white);
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.help-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}
.help-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.help-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.help-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--saffron);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.3);
}
.help-email:hover,
.help-email:focus {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 153, 51, 0.45);
}
.help-email:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* ===== Commitment Box ===== */
.commitment-box {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.commitment-box::before {
    content: 'ॐ';
    position: absolute;
    right: -1.5rem;
    bottom: -3rem;
    font-size: 12rem;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}
.commitment-quote {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    position: relative;
}
.commitment-box blockquote {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    font-style: italic;
    max-width: 680px;
    margin: 0 auto;
}
.commitment-attribution {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--saffron-light);
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--deep-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0 2rem;
    border-top: 4px solid var(--saffron);
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
}
.footer-brand .footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand .footer-logo span {
    color: var(--saffron);
}
.footer-brand .footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    letter-spacing: 0.04em;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    list-style: none;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover,
.footer-links a:focus {
    color: var(--saffron);
}
.footer-links a:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 4px;
    border-radius: 4px;
}
.footer-contact {
    display: flex;
    align-items: center;
}
.footer-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}
.footer-copy .year {
    font-weight: 600;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-on-view {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-view.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ===== 320px+ (Base / Mobile First) ===== */
@media (max-width: 479px) {
    .container {
        padding: 0 0.9rem;
    }

    .hero {
        padding: 2.5rem 0 2rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .hero-image-wrapper {
        max-width: 120px;
    }
    .hero-image-placeholder {
        font-size: 2.8rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .toc-wrapper {
        gap: 0.25rem 0.5rem;
    }
    .toc-link {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    .toc-label {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 1.6rem;
    }

    .before-grid {
        grid-template-columns: 1fr;
    }
    .after-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
    .not-accepted-grid {
        grid-template-columns: 1fr 1fr;
    }
    .eligible-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.25rem 1rem;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .radio-label {
        flex-wrap: wrap;
    }
    .checkbox-label {
        flex-wrap: wrap;
    }

    .upload-area {
        padding: 1.5rem 1rem;
    }
    .upload-area .upload-icon {
        font-size: 2.2rem;
    }

    .review-timeline {
        gap: 0.75rem;
    }
    .timeline-step {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .help-box {
        padding: 1.5rem 1.25rem;
    }
    .help-box h2 {
        font-size: 1.3rem;
    }
    .help-email {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .commitment-box {
        padding: 2rem 1.25rem;
    }
    .commitment-box blockquote {
        font-size: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-contact {
        justify-content: center;
    }

    .logo-text {
        font-size: 1rem;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .logo-tagline {
        font-size: 0.6rem;
    }
    .toc-section {
        padding: 1.25rem 0;
    }
    .not-eligible-grid {
        gap: 0.4rem;
    }
    .not-eligible-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ===== 480px+ ===== */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 1.1rem;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-image-wrapper {
        max-width: 140px;
    }
    .hero-image-placeholder {
        font-size: 3.2rem;
    }

    .before-grid {
        grid-template-columns: 1fr 1fr;
    }
    .after-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
    .not-accepted-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .eligible-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-container {
        padding: 1.5rem 1.25rem;
    }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .help-box {
        padding: 2rem 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-contact {
        justify-content: center;
    }
}

/* ===== 768px+ (Tablet) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-image-wrapper {
        max-width: 160px;
    }
    .hero-image-placeholder {
        font-size: 3.6rem;
    }

    .toc-wrapper {
        gap: 0.4rem 0.8rem;
    }
    .toc-link {
        font-size: 0.8rem;
    }

    .before-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .after-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .not-accepted-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .eligible-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .form-container {
        padding: 2rem 2rem;
    }
    .form-actions {
        flex-direction: row;
    }

    .help-box {
        padding: 2.5rem 2rem;
    }
    .help-box h2 {
        font-size: 1.5rem;
    }

    .commitment-box {
        padding: 2.5rem 2rem;
    }
    .commitment-box blockquote {
        font-size: 1.15rem;
    }

    .footer-inner {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }
}

/* ===== 1024px+ (Laptop / Desktop) ===== */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 4.5rem 0 3.5rem;
    }
    .hero h1 {
        font-size: 3.4rem;
    }
    .hero-image-wrapper {
        max-width: 180px;
    }
    .hero-image-placeholder {
        font-size: 4rem;
    }

    .toc-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.7rem;
    }

    .before-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .after-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .not-accepted-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .eligible-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .form-container {
        padding: 2.5rem 2.5rem;
    }

    .help-box {
        padding: 2.5rem 2.5rem;
    }

    .commitment-box {
        padding: 3rem 2.5rem;
    }
    .commitment-box blockquote {
        font-size: 1.2rem;
    }
}

/* ===== 1440px+ (Large Displays) ===== */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
        padding: 0 2.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }
    .hero h1 {
        font-size: 4.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .hero-image-wrapper {
        max-width: 200px;
    }
    .hero-image-placeholder {
        font-size: 4.5rem;
    }
    .hero-actions .btn {
        font-size: 1.05rem;
        padding: 1rem 2.5rem;
    }

    section {
        padding: 4.5rem 0;
    }
    .section-title {
        font-size: 2.6rem;
    }

    .before-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .after-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .not-accepted-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .eligible-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .form-container {
        padding: 3rem 3rem;
        max-width: 860px;
    }

    .help-box {
        padding: 3rem 3rem;
        max-width: 760px;
    }
    .help-box h2 {
        font-size: 1.8rem;
    }
    .help-box p {
        font-size: 1.05rem;
    }

    .commitment-box {
        padding: 3.5rem 3rem;
        max-width: 860px;
    }
    .commitment-box blockquote {
        font-size: 1.4rem;
    }

    .footer-inner {
        gap: 1.5rem 3rem;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
    }
    .footer-links a {
        font-size: 0.95rem;
    }
    .footer-copy {
        font-size: 1rem;
    }
    .footer-email {
        font-size: 0.95rem;
    }
}

/* ============================================================
   NAVIGATION RESPONSIVE (mobile toggle)
   ============================================================ */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0 0.5rem;
        gap: 0.75rem;
        border-top: 1px solid var(--gray-light);
        margin-top: 0.5rem;
    }
    .nav-links.open {
        display: flex;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .site-header {
        padding: 0.6rem 0;
    }
}

/* ============================================================
   UTILITY — No horizontal scroll
   ============================================================ */
img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   ACCESSIBILITY — Focus visible
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ============================================================
   PRINT STYLES (basic)
   ============================================================ */
@media print {
    .site-header,
    .toc-section,
    .nav-toggle,
    .site-footer {
        display: none !important;
    }
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
    .hero {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    .hero h1 .highlight {
        color: var(--saffron) !important;
    }
    .hero p {
        color: black !important;
    }
    .hero-image-placeholder {
        border: 1px solid #ccc !important;
        background: #f0f0f0 !important;
    }
    .hero-actions .btn {
        border: 1px solid #333 !important;
        color: #000 !important;
        background: #f5f5f5 !important;
        box-shadow: none !important;
    }
    .form-container {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    .form-control {
        border-color: #ccc !important;
    }
    .upload-area {
        border-color: #ccc !important;
        background: #f9f9f9 !important;
    }
    .before-card,
    .tip-card,
    .eligible-card,
    .after-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    .commitment-box {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ddd !important;
    }
    .commitment-box blockquote {
        color: #000 !important;
    }
    .commitment-attribution {
        color: #555 !important;
    }
    .help-box {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ddd !important;
    }
    .help-box h2 {
        color: #000 !important;
    }
    .help-box p {
        color: #333 !important;
    }
    .help-email {
        background: var(--saffron) !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    .section-badge {
        background: #eee !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
    .not-accepted-item {
        border-left-color: #999 !important;
    }
    .eligible-card {
        border-left-color: #999 !important;
    }
    .timeline-step {
        border-left-color: #999 !important;
        box-shadow: none !important;
        border: 1px solid #eee !important;
    }
    .timeline-number {
        background: #333 !important;
        color: #fff !important;
    }
    .not-eligible-item {
        background: #eee !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}/* End custom CSS */