/* 
 * Premium Fintech Styling System
 * Project: SBI Home Loan Counselor Website (Maharashtra)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0057B8;
    --primary-rgb: 0, 87, 184;
    --secondary: #00AEEF;
    --secondary-rgb: 0, 174, 239;
    --accent: #25D366;
    --accent-rgb: 37, 211, 102;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 25px -5px rgba(0, 87, 184, 0.05), 0 8px 10px -6px rgba(0, 87, 184, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 87, 184, 0.08), 0 10px 20px -10px rgba(0, 87, 184, 0.08);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

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

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 12px auto 0 auto;
}

/* Buttons and Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #003F88);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 87, 184, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(0, 87, 184, 0.05);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-accent:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.logo img {
    height: 50px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Glassmorphism Card Layouts */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 87, 184, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 90% 10%, rgba(0, 174, 239, 0.08) 0%, rgba(248, 250, 252, 1) 70%), 
                radial-gradient(circle at 10% 90%, rgba(0, 87, 184, 0.05) 0%, rgba(248, 250, 252, 1) 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 87, 184, 0.06);
    border: 1px solid rgba(0, 87, 184, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-trust-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.trust-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Card Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card styles */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(0, 87, 184, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.glass-card:hover .card-icon {
    background: var(--primary);
    color: var(--bg-white);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Interactive Calculators & Eligibility Form */
.calculator-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

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

.calc-value-display {
    background: rgba(0, 87, 184, 0.05);
    color: var(--primary);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* Range input styling */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #E2E8F0;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 87, 184, 0.3);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: radial-gradient(circle at 100% 0%, rgba(0, 174, 239, 0.05) 0%, rgba(0, 87, 184, 0.05) 100%);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 87, 184, 0.1);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 87, 184, 0.1);
}

.calc-result-row:last-of-type {
    border-bottom: none;
}

.calc-result-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.calc-result-val {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.calc-result-val.primary-highlight {
    font-size: 1.75rem;
    color: var(--primary);
}

/* Form Styles */
.form-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
}

/* Process Timeline (Step-by-step) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

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

.timeline-badge {
    position: absolute;
    left: 20px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 87, 184, 0.3);
    z-index: 2;
    border: 4px solid var(--bg-light);
}

.timeline-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 25px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.timeline-desc {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonial Cards */
.review-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.review-stars {
    color: #F1C40F;
    margin-bottom: 15px;
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* FAQ Layout (Details & Summary) */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 87, 184, 0.2);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid #F1F5F9;
    padding-top: 15px;
}

/* Custom Responsive Layouts for Dynamic Pages */
.grid-main-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.rich-text-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Dynamic Content Templates (City, Blog) */
.rich-text {
    line-height: 1.8;
}

.rich-text h2 {
    font-size: 1.75rem;
    margin: 40px 0 15px 0;
    color: var(--text-dark);
}

.rich-text h3 {
    font-size: 1.35rem;
    margin: 30px 0 12px 0;
    color: var(--text-dark);
}

.rich-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.rich-text ul, .rich-text ol {
    margin: 0 0 25px 25px;
    color: var(--text-muted);
}

.rich-text li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Callout Box inside Rich Text */
.callout-box {
    background: rgba(0, 87, 184, 0.03);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 30px 0;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

/* Compare Table */
.data-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.data-table th {
    background-color: rgba(0, 87, 184, 0.05);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 20px;
    border-bottom: 2px solid var(--border-color);
}

.data-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Blog Layout */
.blog-toc {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    margin: 30px 0;
}

.blog-toc h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-toc ul {
    list-style: none;
    margin: 0;
}

.blog-toc li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.blog-toc a {
    color: var(--text-dark);
}

.blog-toc a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Footer & Legal Disclaimer */
.footer {
    background-color: var(--text-dark);
    color: #94A3B8;
    padding: 80px 0 40px 0;
    border-top: 1px solid #334155;
}

.footer h3, .footer h4 {
    color: var(--bg-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: 8px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-disclaimer-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    margin-bottom: 40px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #64748B;
}

.footer-disclaimer-box p {
    margin-bottom: 0;
    color: #94A3B8;
}

.footer-disclaimer-box strong {
    color: var(--bg-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #334155;
    padding-top: 40px;
    font-size: 0.9rem;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 1.8s infinite;
    top: 0;
    left: 0;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-normal);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    transform: translateY(0);
    opacity: 1;
}

/* Sticky Bottom Call-To-Action for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
    padding: 12px 24px;
    display: none;
    z-index: 998;
}

.sticky-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Grid and Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-content p {
        margin: 0 auto 35px auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-trust-row {
        justify-content: center;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .calculator-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        gap: 16px;
        align-items: center;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    .nav-actions .btn {
        display: none;
    }
    .grid-main-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .rich-text-card {
        padding: 24px 16px;
    }
    .hamburger {
        display: flex;
    }
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-trust-row {
        flex-wrap: wrap;
        gap: 20px 30px;
        justify-content: center;
    }
    .trust-item {
        flex: 1 1 120px;
        text-align: center;
    }
    .grid-3, .grid-2, .grid-4 {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-badge {
        left: 0;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .sticky-cta {
        display: block;
    }
    .whatsapp-widget {
        bottom: 80px; /* Keep above sticky CTA */
    }
    body {
        padding-bottom: 70px; /* Space for sticky CTA */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .hero-trust-row {
        gap: 15px;
    }
    .trust-item h3 {
        font-size: 1.6rem;
    }
    .calculator-box {
        padding: 20px 15px;
    }
    .calc-results {
        padding: 20px 15px;
    }
    .calc-result-val {
        font-size: 1.05rem;
    }
    .calc-result-val.primary-highlight {
        font-size: 1.4rem;
    }
    .hero-visual .glass-card {
        padding: 20px 15px !important;
    }
    .form-card {
        padding: 24px 15px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* FontAwesome icons fallback helper if cdn fails */
.fab, .fas, .far {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
