/* Base Styles & CSS Variables */
:root {
    --primary-color: #4f46e5; /* Indigo */
    --primary-hover: #4338ca;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-dark: #f8fafc; /* Light background */
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* Soft premium glass background */
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.brand-text span {
    color: var(--primary-color);
}

.brand-link--light .brand-text {
    color: #ffffff;
}

.brand-link--light .brand-text span {
    color: #ffffff;
    opacity: 0.8;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* Invert logo to white for dark footer */
.logo-img--light {
    filter: brightness(0) invert(1);
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Emerald dot mimicking "Available for work" */
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-phone {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--primary-color);
}

.nav-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.nav-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    /* Modern Insurance Related Image from Unsplash (Beautiful Home & Architecture) */
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2075&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dark, premium overlay gradient to make text readable and pop */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.75) 40%, rgba(15, 23, 42, 0.35) 100%);
    z-index: 1;
}

.hero-section .hero-subtitle {
    color: #cbd5e1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    /* Soft gradient for the title */
    background: linear-gradient(100deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px; /* Slightly rounded edges */
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.15);
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: clamp(2.25rem, 3.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.about-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-bullets li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bullet-text strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.bullet-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-image {
    position: relative;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px; /* Overlap nicely */
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9)); /* Premium Emerald gradient */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: -0.05em;
}

.experience-badge .label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Authority / Stats Section */
.stats-section {
    padding: 3rem 5% 5rem;
    background-color: var(--bg-dark);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 3.5rem 2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient background inside stats container */
.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

/* Add verical dividers between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* Gradient text */
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

/* Special styling for the plus/percent signs */
.stat-number span {
    background: none;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1.5rem;
        gap: 2rem 0;
    }
    .stat-item:nth-child(2)::after {
        display: none; /* remove divider after 2nd item on mobile */
    }
    
    /* Add horizontal divider below top row on mobile */
    .stat-item:nth-child(1)::before,
    .stat-item:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 10%;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
    }
}

@media (max-width: 576px) {
    .stats-section { padding-top: 1rem; }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2.5rem 0;
    }
    .stat-item:not(:last-child)::after {
        display: none; /* remove vertical completely */
    }
    .stat-item:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -1.25rem;
        left: 20%;
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
    }
    .stat-number { font-size: 3rem; }
}

/* Bundle / Discount Section */
.bundle-section {
    padding: 6rem 5%;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bundle-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
}

/* Glowing background effect pointing focus to the card */
.bundle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.glass-card {
    background: #ffffff;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444; /* Premium Rose/Red for urgency */
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse {
    0%, 100% { transform: scale(0.95); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.bundle-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.bundle-title span {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bundle-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.bundle-perks {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1.05rem;
}

.perk-icon {
    color: #10b981; /* Emerald */
    font-size: 1.2rem;
}

.bundle-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.bundle-btn {
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    border: none;
    color: white;
}

.bundle-btn:hover {
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
    background-color: var(--primary-hover);
    color: white;
}

.offer-ends {
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
}

/* Quote CTA Section */
.quote-section {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.quote-tabs {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--primary-color);
    background: #ffffff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Content Area */
.quote-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.quote-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quote-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.quote-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-form-area {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-form-area h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.quote-form-area p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f8fafc;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
}

.input-group input::placeholder {
    color: #94a3b8;
}

/* Our Services Section */
.services-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: top center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.services-slider-wrapper {
    width: 100%;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5.5rem;
    margin-bottom: 8rem;
    align-items: center;
}

.service-block.reversed {
    grid-template-columns: 1.2fr 1fr;
}

.service-category {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

/* Premium emerald star diamond bullet */
.service-features li::before {
    content: '✦';
    color: #10b981;
    font-size: 1.1rem;
}

/* Premium Image Collage */
.service-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    width: 100%;
    border-radius: 24px;
    padding: 16px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
}

.collage-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.collage-side1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.collage-side2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.service-collage div {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.service-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-collage div:hover img {
    transform: scale(1.05);
}

/* Mobile slider hidden by default on desktop */
.mobile-slider-controls {
    display: none; 
}

/* Why Choose Us Section */
.why-us-section {
    padding: 8rem 5%;
    background-color: #f1f5f9;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.why-us-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    padding: 3.5rem 2.5rem;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.15);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.2));
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1.25rem 5%;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 0 6%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .btn {
        width: 100%;
    }
    
    .quote-content.active {
        grid-template-columns: 1fr;
    }
    .quote-image {
        min-height: 250px;
    }
    .quote-form-area {
        padding: 3rem 2rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 1.25rem 1.5rem;
    }

    .glass-card {
        padding: 4rem 2rem;
    }
    
    .bundle-perks {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    /* Mobile Controls Only Show on Mobile */
    .mobile-slider-controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .swipe-text {
        color: var(--primary-color);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        animation: subtlePulse 2s infinite;
    }
    
    .swipe-text span {
        font-size: 1.1rem;
    }

    .slider-dots {
        display: flex;
        gap: 0.6rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background-color: #10b981;
        width: 20px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    
    @keyframes subtlePulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }

    /* Services Slider on Mobile */
    .services-slider-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
        padding-bottom: 2rem;
    }
    
    .services-slider-wrapper::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .services-container {
        display: flex;
        gap: 2rem;
        width: max-content; 
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .service-block, .service-block.reversed {
        scroll-snap-align: center;
        width: 85vw;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 0;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 2.5rem;
    }
    
    .service-block .service-content {
        order: 2; /* Text below image on mobile */
    }
    
    .service-block .service-collage {
        order: 1; /* Image on top */
        height: 350px;
        min-height: 350px;
        max-height: 350px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        padding: 2.5rem 2rem;
    }
}

/* Our Process Section */
.process-section {
    padding: 8rem 5%;
    background-color: #f1f5f9;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.process-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 6rem;
}

.desktop-process {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    aspect-ratio: 1000 / 500;
}

.process-line {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
}

.process-node {
    position: absolute;
    width: 16%; /* Better wrapping width */
    min-width: 160px;
}

.node-content {
    display: flex;
    flex-direction: column;
}

.node-icon {
    width: 32px;
    height: 32px;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.process-node h4 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.process-node p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Vertical Process */
.mobile-process {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-top: 2rem;
}

.mobile-process::before {
    content: '';
    position: absolute;
    top: 0; left: 16px;
    width: 3px; height: 100%;
    background: #6366f1; /* Indigo */
}

.mobile-node {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3.5rem;
}

.mobile-node::before {
    content: '';
    position: absolute;
    left: 8px; top: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #f8fafc;
    border: 4px solid #10b981;
}

.mobile-node h4 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mobile-node p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .desktop-process {
        display: none;
    }
    .mobile-process {
        display: block;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 5%;
    background-color: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.social-slider-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.social-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.social-slider::-webkit-scrollbar {
    display: none;
}

.social-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.policy-type {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-row .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.social-card .location {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.coverage-list li {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.coverage-list li::before {
    content: '\2022';
    color: #6366f1;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.time-ago {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .social-card {
        flex: 0 0 85vw; /* Almost full width on mobile */
    }
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 5%;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-controls {
    display: flex;
    gap: 1rem;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    min-width: calc(25% - 1.5rem); /* shows exactly 4 on desktop */
    scroll-snap-align: start;
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #f59e0b; /* Amber */
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.review-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: italic;
}

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

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.reviewer h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.reviewer span {
    font-size: 0.85rem;
    color: #64748b;
}

/* Reviews Responsive */
.mobile-controls {
    display: none;
}

@media (max-width: 1200px) {
    .review-card {
        min-width: calc(33.333% - 1.33rem); /* 3 on tablet */
    }
}

@media (max-width: 992px) {
    .review-card {
        min-width: calc(50% - 1rem); /* 2 on smaller tablet */
    }
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%; /* 1 on mobile */
        scroll-snap-align: center;
    }
    
    .desktop-controls {
        display: none;
    }
    
    .mobile-controls {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 5% 2rem;
}

.site-footer .logo {
    color: #f1f5f9;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact a,
.footer-contact span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h5 {
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #f1f5f9;
}

.footer-bottom {
    max-width: 1300px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f1f5f9;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-brand p { max-width: 100%; }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-legal-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}


/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100dvh;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--text-main);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-phone {
    color: #64748b;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.2s ease;
}

.mobile-phone:hover {
    color: var(--text-main);
}
