/* ============================================================
   PROTEKLY INSURANCE — GLOBAL DESIGN SYSTEM
   Theme: Orange Primary | Light Background | Brown Typography
   ============================================================ */

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

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    /* Primary — Vibrant Orange */
    --primary:          #e8560a;
    --primary-light:    #f47332;
    --primary-dark:     #c04208;
    --primary-50:       #fff4ee;
    --primary-100:      #ffe4d1;

    /* Accent — Amber Gold */
    --accent:           #f5a623;
    --accent-dark:      #d48c10;
    --accent-light:     #ffd580;

    /* Backgrounds — Light Theme */
    --bg-white:         #ffffff;
    --bg-light:         #fff8f4;
    --bg-section:       #fef3e8;
    --bg-card:          #ffffff;
    --bg-overlay:       rgba(232, 86, 10, 0.06);

    /* Typography — Brown Tones */
    --text-heading:     #2d1200;
    --text-dark:        #3d1a00;
    --text-body:        #5c3317;
    --text-muted:       #8b6347;
    --text-light:       #b8906e;
    --text-white:       #ffffff;

    /* Status */
    --success:          #16a34a;
    --success-light:    #dcfce7;
    --danger:           #dc2626;
    --danger-light:     #fee2e2;
    --warning:          #d97706;
    --info:             #0284c7;

    /* Glass / Borders */
    --glass-bg:         rgba(255, 255, 255, 0.92);
    --glass-border:     rgba(232, 86, 10, 0.18);
    --border-light:     rgba(93, 51, 23, 0.10);
    --border-medium:    rgba(93, 51, 23, 0.20);

    /* Shadows */
    --shadow-sm:        0 1px 3px rgba(45, 18, 0, 0.08);
    --shadow-md:        0 4px 16px rgba(45, 18, 0, 0.10);
    --shadow-lg:        0 8px 32px rgba(45, 18, 0, 0.12);
    --shadow-orange:    0 4px 24px rgba(232, 86, 10, 0.20);
    --shadow-orange-lg: 0 8px 40px rgba(232, 86, 10, 0.28);

    /* Radii */
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --radius-xl:        28px;
    --radius-full:      9999px;

    /* Transitions */
    --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast:  all 0.15s ease;

    /* Navbar height */
    --nav-height:       72px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

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

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }

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

ul, ol { list-style: none; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── SECTION ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background-color: var(--bg-section); }
.section-white { background-color: var(--bg-white); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 12px auto 0; font-size: 1.05rem; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-white);
    box-shadow: var(--shadow-orange-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--primary-50);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-100);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-orange);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-heading);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--primary); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}
.nav-link.active { font-weight: 600; }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    text-decoration: none;
}
.dropdown-link:hover { background: var(--primary-50); color: var(--primary); }
.dropdown-link i { width: 18px; color: var(--primary); }

.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f4 0%, #ffffff 50%, #fef3e8 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.hero-shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -200px;
    animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: -100px; left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 150px; height: 150px;
    background: var(--primary);
    top: 30%; left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease both;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-trust-item i { color: var(--success); font-size: 1rem; }

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-card-main {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg), var(--shadow-orange);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}
.hero-card-float {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}
.hero-card-float-1 { top: -24px; right: -20px; animation-delay: 0s; }
.hero-card-float-2 { bottom: -20px; left: -20px; animation-delay: 2s; }
.hero-card-float .icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

/* ─── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 16px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ─── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-orange);
    border-color: var(--primary-100);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px; height: 70px;
    border-radius: var(--radius-lg);
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}
.service-card h3 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── SIP HIGHLIGHT SECTION ─────────────────────────────────── */
.sip-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.sip-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sip-inner { position: relative; z-index: 1; }
.sip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.sip-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.25);
}
.sip-heading { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.sip-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }

.sip-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.sip-stat-item { text-align: center; }
.sip-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 4px;
}
.sip-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* Mini SIP Calculator */
.sip-mini-calc {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(10px);
}
.calc-title { color: white; font-weight: 700; font-size: 1.1rem; margin-bottom: 24px; text-align: center; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; }
.calc-field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
    outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.calc-value-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.calc-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
}
.calc-result-box {
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
    margin-top: 8px;
}
.calc-result-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.calc-result-value { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent-light); }

/* ─── PLAN CARDS ────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-orange); border-color: var(--primary-100); }
.plan-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.badge-lic { background: #fff0e0; color: #b45309; }
.badge-health { background: #dcfce7; color: #15803d; }
.badge-motor { background: #dbeafe; color: #1d4ed8; }
.badge-general { background: #fce7f3; color: #9d174d; }
.badge-sip { background: var(--primary-50); color: var(--primary); }

.plan-number { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.plan-features { margin: 16px 0; }
.plan-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 8px;
}
.plan-feature i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }
.plan-actions { display: flex; gap: 10px; margin-top: 20px; }
.plan-actions .btn { flex: 1; justify-content: center; font-size: 0.82rem; padding: 10px 16px; }

/* ─── CALCULATOR SECTION ────────────────────────────────────── */
.calc-section { background: var(--bg-white); }
.calc-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.calc-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border-medium);
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.calc-tab.active, .calc-tab:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.calc-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: none;
    animation: fadeInUp 0.4s ease;
}
.calc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.calc-inputs { }
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition-fast);
    outline: none;
}
.form-control:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px var(--primary-50); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23e8560a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.calc-result {
    background: linear-gradient(135deg, var(--primary-50), var(--bg-section));
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-xl);
    padding: 32px;
}
.calc-result-header { text-align: center; margin-bottom: 24px; }
.calc-result-header h4 { color: var(--text-heading); font-size: 1rem; margin-bottom: 4px; }

.result-big {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.result-big-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.result-big-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}
.result-row:last-child { border-bottom: none; }
.result-row-label { color: var(--text-muted); }
.result-row-value { font-weight: 700; color: var(--text-dark); }

.calc-bar { width: 100%; height: 8px; background: var(--border-light); border-radius: 8px; overflow: hidden; margin: 16px 0; }
.calc-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 8px; transition: width 0.8s ease; }

/* ─── LEAD FORM ─────────────────────────────────────────────── */
.lead-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-white) 100%);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.lead-info h2 { margin-bottom: 16px; }
.lead-info p { color: var(--text-muted); margin-bottom: 32px; }

.lead-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.lead-benefit-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lead-benefit-text h4 { font-size: 0.95rem; color: var(--text-heading); margin-bottom: 4px; }
.lead-benefit-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.lead-form-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.lead-form-title { font-size: 1.3rem; color: var(--text-heading); margin-bottom: 8px; }
.lead-form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert-success {
    background: var(--success-light);
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 10px;
}
.alert-success.show { display: flex; }

/* ─── BLOG CARDS ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 200px; overflow: hidden; background: var(--primary-50); position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-category {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.blog-read-more { display: flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-top: 16px; }

/* ─── WHY CHOOSE US ─────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.why-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-orange); }
.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-card h4 { font-size: 1rem; color: var(--text-heading); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
    background: var(--text-heading);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: white; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-decoration: none;
}
.social-btn:hover { background: var(--primary); color: white; }
.footer-heading { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent-light); text-decoration: none; }

/* ─── WHATSAPP BUTTON ───────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65); }
.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.5;
    animation: whatsapp-pulse 2.5s ease-out infinite;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.7; }
}
@keyframes whatsapp-pulse {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { gap: 32px; }
}

@media (max-width: 768px) {
    .navbar-nav, .navbar-actions .btn-outline { display: none; }
    .nav-toggle { display: flex; }

    .navbar-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: white;
        padding: 16px;
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }
    .nav-dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding-left: 16px; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid, .plans-grid { grid-template-columns: 1fr; }
    .sip-grid { grid-template-columns: 1fr; }
    .lead-grid { grid-template-columns: 1fr; }
    .calc-panel.active { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { flex-wrap: wrap; gap: 12px; }
    .section { padding: 56px 0; }
}

@media (max-width: 480px) {
    .why-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-tabs { gap: 6px; }
    .calc-tab { padding: 8px 16px; font-size: 0.8rem; }
    .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
}
