:root {
    --primary: #1B4E9B;
    --primary-dark: #143d7a;
    --secondary: #28B097;
    --dark-bg: #FFFFFF;
    /* White */
    --darker-bg: #F8FAFC;
    /* Light gray-blue */
    --text-main: #0F172A;
    /* Deep Navy for text */
    --text-white: #FFFFFF;
    /* Pure White (for hero/overlays) */
    --text-gray: #475569;
    /* Darker gray for slate text */
    --surface: #FFFFFF;
    /* White surface */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(27, 78, 155, 0.2);
    --gradient: linear-gradient(135deg, #1B4E9B 0%, #28B097 100%);
    --glow: radial-gradient(circle at center, rgba(27, 78, 155, 0.15) 0%, transparent 70%);
    --font-main: 'Metropolis', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

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

body {
    font-family: var(--font-main);
    font-weight: 400;
    /* Metropolis Regular */
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    /* Softens the square edges of the jpg */
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
    /* Hidden on desktop */
    align-items: center;
    gap: 30px;
}

/* Show download button on mobile and tablet devices */
@media (max-width: 991px) {
    .nav-links {
        display: flex !important;
    }
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    /* Metropolis Bold for CTA */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(27, 78, 155, 0.4);
    /* Cobalt Blue shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 78, 155, 0.3);
}

/* Shimmer Effect for Buttons */
.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.3rem;
    background: white;
    color: var(--primary-dark);
}

.btn-xl:hover {
    background: #f0f9ff;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-white);
    /* Force white text on video */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Cinematic Zoom Animation */
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Optional: maintain the zoom effect on the video too if desired, usually not needed for video */
    /* animation: zoomOut 20s ease-out forwards; */
}

/* 
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s ease-out forwards;
} 
*/

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.95) 90%, #020617 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    /* Semibold */
    letter-spacing: 1px;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--darker-bg);
    /* Use off-white for contrast */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-family: var(--font-main);
    font-weight: 800;
    /* ExtraBold */
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 32px;
    /* Bento rounded corners */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
}

.services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 78, 155, 0.12);
    border-color: rgba(27, 78, 155, 0.15);
}

/* Creative Storyboard & Warrior Timeline */
.overflow-hidden {
    overflow: hidden;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

/* The Animated Dotted Path (Central Spine) */
.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background-image: linear-gradient(to bottom, var(--secondary) 50%, transparent 50%);
    background-size: 100% 40px;
    animation: path-flow 20s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

.story-scene {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

/* Alternating Layout (Zig-Zag) */
.story-scene:nth-child(odd) {
    left: 0;
    align-items: flex-end;
    text-align: right;
}

.story-scene:nth-child(even) {
    left: 50%;
    align-items: flex-start;
    text-align: left;
}

/* Timeline Dots */
.story-scene::after {
    content: '';
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    right: -10px;
    background: var(--surface);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(40, 176, 151, 0.5);
}

.story-scene:nth-child(even)::after {
    left: -10px;
}

.scene-visual {
    width: 320px;
    height: 220px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

/* Antigravity Tilt Effect */
.scene-visual:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
    box-shadow: 20px 30px 50px rgba(0, 0, 0, 0.15);
}

.scene-content {
    max-width: 320px;
}

.scene-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.scene-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* SCENE 1: WARRIOR (Bike) - Smooth Glide */
.scene-arrival {
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warrior-wrapper {
    position: absolute;
    font-size: 3.5rem;
    color: var(--secondary);
    /* Teal Warrior */
    bottom: 40px;
    animation: glide-ride 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    z-index: 2;
}

.wind-lines {
    position: absolute;
    right: -30px;
    top: 10px;
    width: 40px;
    height: 2px;
    background: rgba(40, 176, 151, 0.3);
    box-shadow: 0 10px 0 rgba(40, 176, 151, 0.3), 0 20px 0 rgba(40, 176, 151, 0.3);
    animation: wind-stream 2s linear infinite;
}

.road {
    position: absolute;
    bottom: 40px;
    width: 100%;
    height: 3px;
    background: #94A3B8;
}

.house-marker {
    position: absolute;
    right: 30px;
    top: 50px;
    font-size: 1.8rem;
    color: var(--primary);
    animation: float-organic 4s ease-in-out infinite;
}

/* Physics-based Smooth Glide */
@keyframes glide-ride {
    0% {
        transform: translateX(-120px) rotate(-2deg);
    }

    50% {
        transform: translateX(10px) rotate(3deg);
    }

    100% {
        transform: translateX(120px) rotate(-2deg);
    }
}

@keyframes wind-stream {
    0% {
        transform: translateX(0) scaleX(1);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-40px) scaleX(1.5);
        opacity: 0;
    }
}

@keyframes float-organic {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes path-flow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 800px;
    }
}

/* SCENE 2: CLEANING - Magnetic hover */
.scene-clean {
    background: #F0FDFA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-wrapper {
    position: relative;
    font-size: 4rem;
    color: var(--text-main);
    animation: float-organic 5s ease-in-out infinite;
    /* Slower organic float */
}

.foam-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    border: 3px dashed var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin-clean 8s linear infinite;
    /* Slower, smoother spin */
    opacity: 0.6;
}

.shine-effect {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #FBBF24;
    font-size: 1.2rem;
}

.shine-effect i {
    position: absolute;
    animation: twinkle-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.shine-effect i:nth-child(2) {
    top: 25px;
    right: -25px;
    animation-delay: 0.5s;
}

.shine-effect i:nth-child(3) {
    top: -25px;
    right: 15px;
    animation-delay: 1.0s;
}

@keyframes spin-clean {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes twinkle-pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
        filter: blur(0px);
    }
}

/* SCENE 3: JOY - Cinematic Float */
.scene-joy {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.family-group {
    font-size: 4rem;
    color: var(--primary);
    display: flex;
    gap: 10px;
    align-items: flex-end;
    animation: float-organic 6s ease-in-out infinite;
    /* Cinematic slow float */
}

.child-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    animation: float-organic 4s ease-in-out infinite reverse;
    /* Counter-float */
}

.clock-reverse {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #94A3B8;
    opacity: 0.6;
    animation: spin-back 12s linear infinite;
}

@keyframes spin-back {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Responsive Zig-Zag to Stack */
@media (max-width: 768px) {
    .story-timeline::before {
        left: 30px;
        margin-left: 0;
    }

    .story-scene {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .story-scene:nth-child(odd),
    .story-scene:nth-child(even) {
        left: 0;
    }

    .story-scene::after,
    .story-scene:nth-child(even)::after {
        left: 21px;
        right: auto;
    }

    .scene-visual {
        width: 100%;
        max-width: 100%;
        height: 200px;
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
}

/* CTA Section */
.app-cta {
    background: var(--gradient);
    padding: 60px 0;
    text-align: center;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
/* Footer */
.footer {
    background: #020610;
    /* Dark Navy for anchor */
    padding: 80px 0 0;
    color: #94A3B8;
}

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

.footer-logo {
    margin-bottom: 20px;
    border-radius: 8px;
    /* Matching the navbar logo style */
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col a {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Contact Rows */
.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-row i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-row span {
    display: block;
    font-size: 0.8rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-row a {
    color: white;
    margin-bottom: 0;
}

.contact-row a:hover {
    color: var(--primary);
    transform: none;
}

.contact-row p {
    color: white;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Base Animations (Hero) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-bottom {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.fade-up {
    transform: translateY(30px);
}

/* Simple Responsive Tweaks */
/* Comprehensive Responsive Design & Mobile UX Optimization */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }

    .refer-banner {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-padding {
        padding: var(--section-padding) !important;
    }

    .hero {
        height: auto;
        padding: 120px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 0;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: flex !important;
        gap: 15px;
    }

    .nav-links .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .services-grid,
    .steps-grid,
    .promises-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-image {
        order: -1;
        margin-bottom: 30px;
    }

    .feature-list li {
        justify-content: center;
    }

    .infographic-stats {
        padding: 30px 20px;
        margin-top: 40px;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links,
    .contact-row {
        justify-content: center;
    }

    .refer-banner {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 20px;
    }

    .refer-visual {
        width: 100%;
        margin-top: 20px;
    }

    .avatar-network {
        transform: scale(0.85);
        margin: 0 auto;
        width: 330px;
        height: 330px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-group .btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .service-card,
    .promise-card {
        padding: 30px 20px;
    }

    .scene-visual {
        height: 180px;
        width: 100%;
    }
}

/* Section Padding Utility */
.section-padding {
    padding: 60px 0;
}

.bg-surface {
    background: var(--surface);
}

/* Badge in Hero */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Heartbeat Animation for Primary CTA */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.heartbeat-btn:hover {
    animation: heartbeat 1.5s infinite;
}

/* How It Works (Steps) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 30px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(27, 78, 155, 0.3);
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Transformation Section (Before/After) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--secondary);
    background: rgba(16, 185, 129, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.split-image {
    position: relative;
}

.before-after-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-light);
}

.before-after-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.before-after-container:hover img {
    transform: scale(1.03);
}

.badge-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stars {
    color: #FBBF24;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.6;
}

.user-info strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-row {
        justify-content: center;
    }

}

/* Reviews Section */
#reviews {
    background: var(--darker-bg);
    position: relative;
}

/* Google Badge - Modern Design */
.google-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    border: 2px solid rgba(27, 78, 155, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.google-badge-header:hover::before {
    left: 100%;
}

.google-badge-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
    border-color: rgba(27, 78, 155, 0.15);
}

.google-badge-header .fa-google {
    font-size: 1.2rem;
}

.google-g-logo {
    width: 20px;
    height: 20px;
}

/* Reviews Slider Container - Enhanced */
.reviews-slider-container {
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    width: 100%;
    overflow: hidden;
    padding: 50px 0 60px 0;
    position: relative;
    display: flex;
    margin: 30px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll-loop 40s linear infinite;
    flex-shrink: 0;
    /* Prevent shrinking */
    padding-right: 30px;
    /* Offset gap for loop smoothness */
}

/* Pause animation on hover */
.reviews-slider-container:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.review-card {
    background: white;
    min-width: 350px;
    /* Fixed width for slider consistency */
    max-width: 350px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 78, 155, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-profile {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.reviewer-info span {
    font-size: 0.75rem;
    color: #94A3B8;
}

.google-icon-small {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.review-stars {
    color: #FBBF24;
    /* Google Star Yellow */
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Review Actions - Closer to Reviews */
.review-actions {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    position: relative;
}

.review-actions::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.btn-dark-text {
    color: var(--text-main);
    border-color: rgba(27, 78, 155, 0.2);
    border-width: 2px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-dark-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn-dark-text:hover::before {
    width: 300px;
    height: 300px;
}

.btn-dark-text:hover {
    border-color: var(--primary);
    color: white;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 78, 155, 0.2);
}

.btn-dark-text .fa-google {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }

}

/* Infographic Stats Bar */
.infographic-stats {
    background: white;
    margin-top: 80px;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative background glow for stats */
.infographic-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(40, 176, 151, 0.05), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    background: #F0FDFA;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px) rotate(10deg);
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(40, 176, 151, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .infographic-stats {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

}

.colored-google-icon {
    background: linear-gradient(135deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.google-icon-color {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* Carmaa Promises Section - Premium UX Upgrade */
.promises-grid .promise-card {
    text-align: center;
    border: 1px solid var(--border-light);
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promises-grid .promise-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(27, 78, 155, 0.08);
    border-color: var(--primary);
}

.promises-grid .promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(27, 78, 155, 0.03), transparent 70%);
    z-index: -1;
}

/* Icon Box Styling */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    /* Squircle style */
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

/* Services Section Icon Styling */
.services .icon-box {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(27, 78, 155, 0.08) 0%, rgba(40, 176, 151, 0.08) 100%);
    border: 2px solid rgba(27, 78, 155, 0.12);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(27, 78, 155, 0.12);
}

.services .service-card:hover .icon-box {
    background: linear-gradient(135deg, rgba(27, 78, 155, 0.12) 0%, rgba(40, 176, 151, 0.12) 100%);
    border-color: rgba(27, 78, 155, 0.2);
    box-shadow: 0 12px 28px rgba(27, 78, 155, 0.18);
    transform: translateY(-4px) scale(1.05);
}

.floating {
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.icon-gold {
    color: #b45309;
    background: #fef3c7;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.15);
}

.icon-green {
    color: #047857;
    background: #d1fae5;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
}

.icon-blue {
    color: #1d4ed8;
    background: #dbeafe;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
}

.promise-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.promise-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Refer & Earn Section */
.refer-banner {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.refer-content {
    flex: 1;
    z-index: 2;
}

.refer-content .badge-pill {
    display: inline-block;
    background: #0EA5E9;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.refer-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0F172A;
}

.refer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #475569;
    max-width: 500px;
}

.refer-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

/* Avatar Network Animation */
.avatar-network {
    position: relative;
    width: 350px;
    height: 350px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    animation: float-avatar 6s ease-in-out infinite;
}

/* Icon Avatar Styling */
.icon-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    transition: all 0.3s ease;
}

.icon-avatar.car-icon {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: var(--primary);
    border-color: #7DD3FC;
}

.icon-avatar.person-icon {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: var(--secondary);
    border-color: #6EE7B7;
}

.icon-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.av-center {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(27, 78, 155, 0.2);
}

.av-center img {
    width: 100%;
    height: 100%;
}

.av-1 {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.av-2 {
    top: 40%;
    left: 10%;
    animation-delay: 1s;
}

.av-3 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.av-4 {
    bottom: 10%;
    left: 60%;
    animation-delay: 3s;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: spin-slow 20s linear infinite;
}

.connection-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(14, 165, 233, 0.3);
    border-radius: 50%;
}

@keyframes float-avatar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Footer Update */
.made-with-love {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #64748B;
    font-weight: 500;
}

/* End of Design System */