/* Seva Sahiyog Samarpan - Ultra Premium (Gap Fix Version) */
:root {
    --primary-main: #8f4e00; 
    --accent-saffron: #FF9933; 
    --secondary-main: #1b6d24; 
    --accent-green: #2E7D32; 
    --bg-white: #fbf9f6; 
    --text-dark: #1b1c1a; 
    --text-muted: #554336; 
    --glass: rgba(255, 255, 255, 0.6);
    --glass-blur: 15px;
    --border-glow: rgba(255, 153, 51, 0.4);
    --shadow-main: 0 15px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Premium Background Layers */
.main-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 1rem;
    background: radial-gradient(circle at 10% 10%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(46, 125, 50, 0.05) 0%, transparent 40%);
}

.bg-blur-circle {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: pulse 12s infinite alternate;
}

.circle-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--accent-saffron); }
.circle-2 { bottom: -150px; right: -100px; width: 500px; height: 500px; background: var(--secondary-main); }
.circle-3 { top: 50%; left: 50%; width: 300px; height: 300px; background: var(--primary-main); opacity: 0.05; }

@keyframes pulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

/* Header & Logo */
.logo-box {
    margin-bottom: 3.5rem; /* Reduced Gap */
    animation: fadeInDown 1s ease-out;
}

.logo-hindi {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-main);
    letter-spacing: 1px;
}

.logo-english {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-main);
    letter-spacing: 5px;
    margin-top: 0.1rem;
}

/* Hero Content - FIXED SPACING */
.hero {
    margin-bottom: 3.5rem; /* Reduced Gap */
    animation: fadeInUp 1s ease-out;
    padding: 0 1rem;
}

.badge {
    background: rgba(143, 78, 0, 0.1);
    color: var(--primary-main);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem; /* Reduced Gap */
    letter-spacing: 2px;
}

.headline {
    font-family: 'Noto Serif Devanagari', serif; /* Use Devanagari for Headline as well */
    font-size: clamp(1.8rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem; /* Reduced Gap */
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--primary-main);
    display: inline-block; /* Ensure no word breaks in highlight */
    white-space: nowrap;
}

.hero .subheadline {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Pillar Cards */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4.5rem; /* Reduced Gap */
    padding: 0 1rem;
    animation: fadeIn 1.5s ease;
}

.pillar-card {
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2.5rem 2rem; /* Adjusted Padding */
    border-radius: 2rem;
    transition: all 0.4s ease-out;
    box-shadow: var(--shadow-main);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--border-glow);
    background: white;
}

.pillar-icon {
    font-size: 2.2rem; /* Adjusted Icon Size */
    color: var(--primary-main);
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-main);
}

.pillar-card p {
    font-family: 'Noto Serif Devanagari', serif;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Countdown Wrapper */
.countdown-wrapper {
    margin-bottom: 4.5rem; /* Reduced Gap */
    padding: 0 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 2.5rem;
    backdrop-filter: blur(5px);
    display: inline-flex;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-box span {
    font-family: 'Montserrat', sans-serif; /* Montserrat for numbers looks cleaner */
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-main);
    line-height: 1;
    font-weight: 800;
}

.timer-box p {
    font-size: 0.75rem;
    color: var(--secondary-main);
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 0.5rem;
}

.timer-divider {
    font-size: 2.5rem;
    color: rgba(143, 78, 0, 0.2);
    font-weight: 800;
}

/* Professional Subscription Section */
.cta-section {
    background: white;
    padding: 3rem 1.5rem; /* Reduced Padding */
    border-radius: 2.5rem;
    max-width: 850px;
    margin: 0 auto 4.5rem auto; /* Reduced Gap */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.cta-section h3 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem; /* Reduced Gap */
    color: var(--primary-main);
}

.subscribe-form {
    display: flex;
    gap: 0.8rem;
    max-width: 550px;
    margin: 0 auto;
}

.input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1.2rem;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus { border-color: var(--primary-main); }

.premium-btn {
    padding: 1rem 2rem;
    background: var(--primary-main);
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.premium-btn:hover {
    background: var(--text-dark);
    transform: translateX(3px);
}

/* Footer & Professional Refinement */
.footer .quote {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--primary-main);
    margin-bottom: 2rem; /* Reduced Gap */
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem; /* Reduced Gap */
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: white;
    background: var(--primary-main);
    border-color: var(--primary-main);
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.8rem;
    color: #9ca3af;
    letter-spacing: 1px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .container { padding: 1rem 0.5rem; }
    .timer-divider { display: none; }
    .countdown-timer { flex-wrap: wrap; gap: 1rem; padding: 1.5rem; }
    .subscribe-form { flex-direction: column; }
    .premium-btn { width: 100%; justify-content: center; }
    .pillars { grid-template-columns: 1fr; }
    .timer-box { min-width: 60px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
