/* Evoin Sparks Contact Page - Complete with Dark Theme - FIXED */

/* ===== CSS VARIABLES ===== */
:root {
    /* Light Theme (Default) */
    --bg: #FFFFFF;
    --surface: #F8F9FA;
    --surface-elevated: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B7280;
    --text-dim: #9CA3AF;
    --accent-primary: #E53935;
    --accent-secondary: #FF9800;
    --accent-success: #00C896;
    --border: #E5E7EB;
    --border-light: #D1D5DB;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #E53935 100%);
    --gradient-accent: linear-gradient(135deg, #FF9800 0%, #FF6B35 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ===== DARK THEME ===== */
body.dark-theme {
    --bg: #0A0A0A;
    --surface: #111111;
    --surface-elevated: #1A1A1A;
    --text: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dim: #707070;
    --border: #2A2A2A;
    --border-light: #3A3A3A;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero, .contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER (Always Light Theme) ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: white;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-mark {
    height: 54px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .logo-mark {
    height: 44px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle Styles */
.theme-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    background: var(--accent-secondary);
    transform: rotate(15deg);
}

.theme-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
}

.theme-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}

.theme-icon--sun {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon--moon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Dark theme icon states */
body.dark-theme .theme-icon--sun {
    opacity: 0;
    transform: rotate(-90deg);
}

body.dark-theme .theme-icon--moon {
    opacity: 1;
    transform: rotate(0deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 152, 0, 0.03) 0%, 
        rgba(229, 57, 53, 0.03) 50%, 
        rgba(255, 152, 0, 0.03) 100%);
}

body.dark-theme .hero {
    background: linear-gradient(135deg, 
        rgba(255, 152, 0, 0.05) 0%, 
        rgba(229, 57, 53, 0.05) 50%, 
        rgba(255, 152, 0, 0.05) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 57, 53, 0.08) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.floating-element.chart {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.floating-element.graph {
    right: 15%;
    top: 60%;
    animation-delay: 2s;
}

.floating-element.rupee {
    left: 80%;
    top: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--accent-secondary);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent-primary);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface-elevated);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--surface);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Form Container */
/* Form Container - FIXED HEIGHT */
.form-container {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: visible;
    min-height: 900px;
    display: flex;
    flex-direction: column;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tally-form-wrapper {
    min-height: 750px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tally-form-wrapper iframe {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: 100%;
    min-height: 750px;
    height: 100%;
    flex: 1;
}

/* Info Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.card-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contact Items *//* Contact Items - FIXED */
.contact-item {
    display: flex;
    align-items: center; /* This vertically centers the icon and the text block */
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}



.contact-item {
   display: flex;
    align-items: center; /* This vertically centers the icon and the text block */
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--surface-elevated);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(229, 57, 53, 0.15) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover .contact-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.contact-icon {
    font-size: 1.75rem;
    line-height: 1;
    filter: grayscale(0);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-item:hover .contact-icon {
    filter: brightness(0) invert(1);
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.contact-details h4 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.contact-details a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.contact-details a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.contact-details small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.contact-details address {
    font-style: normal;
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Dark Theme */
body.dark-theme .contact-icon-wrapper {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.5);
}

body.dark-theme .contact-item:hover .contact-icon-wrapper {
    background: var(--gradient-primary);
    border-color: var(--accent-primary);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quick-action:hover::before {
    left: 100%;
}

.quick-action:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.quick-action.whatsapp-action {
    background: #25D366;
    color: white;
    border-color: transparent;
}

.quick-action.whatsapp-action:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
}

.quick-action.call-action {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.quick-action.call-action:hover {
    background: var(--accent-primary);
    transform: translateY(-3px) scale(1.02);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.quick-action div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.quick-action strong {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.quick-action span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trust Items - FIXED ALIGNMENT */
.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--surface-elevated);
    transform: translateX(5px);
}

/* Trust Items - FIXED WITH BETTER DISPLAY */
.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--surface-elevated);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.trust-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(229, 57, 53, 0.15) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.trust-icon {
    font-size: 2rem;
    line-height: 1;
    filter: grayscale(0);
}

.trust-item:hover .trust-icon {
    filter: brightness(0) invert(1);
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.trust-content strong {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.3;
}

.trust-content span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    word-wrap: break-word;
}

/* Dark Theme Adjustments */
body.dark-theme .trust-icon-wrapper {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.5);
}

body.dark-theme .trust-item:hover .trust-icon-wrapper {
    background: var(--gradient-primary);
    border-color: var(--accent-primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--surface-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== RISK DISCLOSURE SECTION ===== */
.risk-section {
    padding: 80px 0;
    background: var(--surface);
}

.risk-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border-left: 6px solid var(--accent-primary);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.risk-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.risk-icon {
    font-size: 3rem;
}

.risk-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.risk-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.risk-content p strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--surface);
    color: var(--text);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.footer-content .container {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
    background: white;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-brand .logo-mark {
    width: 200px;
    height: auto;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.disclaimer {
    color: var(--accent-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    padding: 1.25rem;
    background: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: var(--radius-md);
}

.footer-contact {
    max-width: 400px;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: grid;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0.75rem 0;
}

.contact-list svg {
    flex-shrink: 0;
    color: var(--accent-primary);
}

.contact-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-list a:hover {
    color: var(--accent-primary);
    transform: translateX(3px);
}

.btn-scroll-top {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.25);
    border: none;
    cursor: pointer;
}

.btn-scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
}

.btn-scroll-top svg {
    transition: transform 0.3s ease;
}

.btn-scroll-top:hover svg {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .contact-layout {
        gap: 3rem;
    }
    
    .form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-container {
        padding: 2rem;
    min-height: 100;
    }
    
    .tally-form-wrapper {
        min-height: 100%;
    }
    
    .info-sidebar {
        position: static;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .footer-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .quick-action {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-container,
    .info-card {
        padding: 1.5rem;
    }
    
    .risk-card {
        padding: 2rem 1.5rem;
    }
}

/* Accessibility & Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Theme Toggle Functionality */
.theme-toggle {
    cursor: pointer;
}


