/* ============================================
   KUMAR PV FINANCIAL SERVICES — Main Stylesheet
   Edit CSS variables below to change colors globally
   ============================================ */

:root {
    /* Brand Colors */
    --primary: #1a56db;
    --primary-dark: #1241a8;
    --primary-light: #e8effc;
    --secondary: #059669;
    --secondary-dark: #047857;
    --secondary-light: #ecfdf5;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic */
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --bg-body: var(--white);
    --bg-section: var(--gray-50);
    --border-color: var(--gray-200);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
}

/* Dark Mode Variables */
[data-bs-theme="dark"] {
    --text-primary: #f3f4f6;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --bg-body: #0f172a;
    --bg-section: #1e293b;
    --border-color: #334155;
    --primary-light: #1e3a5f;
    --secondary-light: #064e3b;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 3rem;
}

.bg-section { background: var(--bg-section); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.625rem 1.5rem;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary-custom:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1.05rem; }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

[data-bs-theme="dark"] .site-header {
    background: rgba(15, 23, 42, 0.95);
}

.site-header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.site-header .navbar { padding: 0.75rem 0; min-height: var(--header-height); }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-primary) !important;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong { font-size: 1.125rem; }
.brand-text small { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--bg-body);
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-cta {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* Breadcrumb */
.breadcrumb-nav {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 0.5rem;
    background: var(--bg-section);
}

.breadcrumb { font-size: 0.875rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.88) 0%, rgba(5, 150, 105, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.95;
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat span { font-size: 0.875rem; opacity: 0.85; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

[data-bs-theme="dark"] .trust-bar { background: var(--bg-body); }

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

[data-bs-theme="dark"] .service-card { background: var(--bg-section); }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.service-card .btn { align-self: flex-start; font-size: 0.875rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.why-card:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.process-step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767px) {
    .process-step:not(:last-child)::after { display: none; }
    .process-step { margin-bottom: 2rem; }
}

/* ============================================
   CALCULATORS
   ============================================ */
.calculator-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

[data-bs-theme="dark"] .calculator-card { background: var(--bg-section); }

.calculator-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-card h3 i { color: var(--primary); }

.calc-result {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.calc-result-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
}

.calc-result-item .label { color: var(--text-secondary); font-size: 0.9rem; }
.calc-result-item .value { font-weight: 700; font-size: 1.125rem; color: var(--primary); }

.calc-result-item.highlight .value {
    font-size: 1.5rem;
    color: var(--secondary);
}

.form-range::-webkit-slider-thumb { background: var(--primary); }
.form-range::-moz-range-thumb { background: var(--primary); }

.range-value {
    font-weight: 600;
    color: var(--primary);
    float: right;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
}

[data-bs-theme="dark"] .testimonial-card { background: var(--bg-section); }

.testimonial-card:hover { box-shadow: var(--shadow-lg); }

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}

[data-bs-theme="dark"] .faq-section .accordion-item { background: var(--bg-section); }

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 1.125rem 1.5rem;
    background: var(--white);
    color: var(--text-primary);
}

[data-bs-theme="dark"] .faq-section .accordion-button { background: var(--bg-section); }

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.faq-section .accordion-body {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0 1.5rem 1.25rem;
}

/* ============================================
   LEAD CAPTURE FORM
   ============================================ */
.lead-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.lead-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    color: var(--text-primary);
}

[data-bs-theme="dark"] .lead-form-card {
    background: var(--bg-section);
}

.lead-form-card h3 { margin-bottom: 0.5rem; }
.lead-form-card .form-label { font-weight: 500; font-size: 0.875rem; }

.form-control, .form-select {
    border-radius: var(--radius-sm);
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
    background: var(--bg-body);
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Honeypot — hidden from users, catches bots */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.form-success, .form-error {
    display: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.form-success { background: var(--secondary-light); color: var(--secondary-dark); }
.form-error { background: #fef2f2; color: #dc2626; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

[data-bs-theme="dark"] .cta-banner { background: var(--bg-section); border: 1px solid var(--border-color); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition);
}

[data-bs-theme="dark"] .blog-card { background: var(--bg-section); }

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 1.5rem; }

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    background: var(--secondary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
}

/* ============================================
   INSURANCE / REAL ESTATE / WEALTH CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition);
}

[data-bs-theme="dark"] .feature-card { background: var(--bg-section); }

.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card h4 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9375rem; color: var(--text-secondary); margin: 0; }

.wealth-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wealth-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.wealth-list li:last-child { border-bottom: none; }

.wealth-list i {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

/* ============================================
   ABOUT / CONTACT PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-align: center;
}

[data-bs-theme="dark"] .value-card { background: var(--bg-section); }

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

[data-bs-theme="dark"] .contact-info-card { background: var(--bg-section); }

.contact-info-card i {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Service detail page */
.service-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: calc(var(--header-height) + 3rem) 0 3rem;
}

.service-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); }
.service-hero p { opacity: 0.9; font-size: 1.125rem; }

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.benefit-list li i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

[data-bs-theme="dark"] .site-footer { background: #0a0f1a; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.25rem;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
}

.footer-contact i { color: var(--secondary); margin-top: 0.2rem; }
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

.fab:hover {
    transform: scale(1.1);
    color: var(--white);
}

.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--primary); animation: none; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 1020;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .header-actions { margin-top: 1rem; }
    .btn-cta { width: 100%; justify-content: center; }
    .hero-section { min-height: auto; padding-top: calc(var(--header-height) + 1rem); }
    .hero-section .hero-content { padding: 2rem 0; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-stat { text-align: left; }
    .hero-stat strong { font-size: 1.5rem; }
    .lead-form-card { padding: 1.5rem; }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .fab-container { bottom: 16px; right: 16px; }
    .cta-banner { padding: 2rem 1.5rem; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Print styles */
@media print {
    .site-header, .fab-container, .back-to-top, .lead-section { display: none !important; }
}
