        :root {
            --color-bg-light: #E0F1F5;
            --color-bg-white: #ffffff;
            --color-bg-card: #ffffff;
            --color-bg-secondary: #f8f9fa;
            --color-primary: #1399AB;
            --color-primary-light: #22d3ee;
            --color-primary-dark: #0e7c8a;
            --color-primary-text: #0d7a8a;
            --color-text-dark: #1C2B4B;
            --color-text-body: #444444;
            --color-text-light: #666666;
            --color-text-muted: #888888;
            --color-border: #e0e0e0;
            --color-border-light: rgba(0, 0, 0, 0.05);
            --color-white: #ffffff;
            --color-gray-light: #f5f5f5;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Montserrat', sans-serif;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 2rem;
            --spacing-xl: 4rem;
            --radius-md: 8px;
            --radius-lg: 16px;
            --radius-full: 50px;
            --shadow-sm: 0 2px 4px rgba(28, 43, 75, 0.05);
            --shadow-md: 0 4px 6px rgba(28, 43, 75, 0.1);
            --shadow-lg: 0 10px 15px rgba(28, 43, 75, 0.1);
            --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.15);
            --color-footer-bg: #1C2B4B;
            --color-footer-text: #ffffff
        }

        body.dark-mode {
            --color-bg-light: #0f172a;
            --color-bg-white: #1e293b;
            --color-bg-card: #1e293b;
            --color-bg-secondary: #334155;
            --color-primary: #22d3ee;
            --color-primary-dark: #06b6d4;
            --color-primary-light: #67e8f9;
            --color-text-dark: #f8fafc;
            --color-text-body: #cbd5e1;
            --color-text-light: #94a3b8;
            --color-text-muted: #64748b;
            --color-border: #334155;
            --color-border-light: rgba(255, 255, 255, 0.1);
            --color-white: #1e293b;
            --color-gray-light: #0f172a;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
            --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
            --color-footer-bg: #020617;
            --color-footer-text: #f8fafc
        }

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

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text-dark);
            line-height: 1.6;
            background-color: var(--color-bg-white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            color: var(--color-text-dark);
            line-height: 1.2
        }

        /* Animation preparation class to avoid forced reflow */
        .animate-prepare {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

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

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md)
        }

        .section {
            padding: var(--spacing-xl) 0
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: var(--spacing-xl);
            position: relative
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--color-primary);
            margin: var(--spacing-sm) auto 0;
            border-radius: var(--radius-full)
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            font-family: var(--font-heading)
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: #1C2B4B
        }

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

        .btn-outline {
            border-color: var(--color-primary);
            color: var(--color-primary-text);
            background-color: transparent;
            border-width: 2px;
        }

        .btn-outline:hover {
            background-color: var(--color-primary);
            color: var(--color-white)
        }

        .header {
            background-color: var(--color-white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: var(--spacing-md) 0
        }

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

        .logo img {
            height: 54px;
            width: auto
        }

        .nav-list {
            display: flex;
            gap: var(--spacing-lg);
            align-items: center
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease
        }

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

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--color-text-dark);
            position: relative;
            transition: background-color 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--color-text-dark);
            position: absolute;
            transition: transform 0.3s ease;
        }

        .hamburger::before {
            top: -10px;
        }

        .hamburger::after {
            top: 10px;
        }

        .nav-toggle.active .hamburger {
            background-color: transparent;
        }

        .nav-toggle.active .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }

        .nav-toggle.active .hamburger::after {
            transform: rotate(-45deg);
            top: 0;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            color: var(--color-text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease
        }

        .theme-toggle:hover {
            color: var(--color-primary)
        }

        .header-controls {
            display: none !important;
        }

        @media (max-width: 768px) {
            .header-controls {
                display: flex !important;
            }

            .nav-list .theme-toggle {
                display: none !important;
            }
        }

        /* Hero Section Redesign */
        .hero {
            background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-white) 100%);
            padding: 10rem 0 8rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(19, 153, 171, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: 0;
            animation: pulse-glow 10s infinite alternate;
        }

        @media (max-width: 768px) {
            .hero::before {
                width: 100%;
                height: 100%;
                right: 0;
                top: 0;
                border-radius: 0;
            }
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-dark);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero-title span {
            color: var(--color-primary);
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: var(--color-text-body);
            max-width: 550px;
            line-height: 1.6;
        }

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

        .hero-buttons .btn {
            padding: 16px 32px;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .hero-visual {
            position: relative;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

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

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

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

        @keyframes pulse-glow {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }

            100% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        /* Dark Mode Adjustments for Hero */
        body.dark-mode .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        body.dark-mode .hero::before {
            background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, rgba(30, 41, 59, 0) 70%);
        }

        body.dark-mode .hero-title span {
            background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services {
            background-color: var(--color-white)
        }

        .services-carousel-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: var(--spacing-lg) 0;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .services-track {
            display: flex;
            gap: var(--spacing-lg);
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .services-track:hover {
            animation-play-state: paused;
        }

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

            100% {
                transform: translateX(calc(-50% - (var(--spacing-lg) / 2)));
            }
        }

        .service-card-link {
            flex: 0 0 280px;
            text-decoration: none;
            color: inherit;
            height: auto;
        }

        .service-card {
            background: var(--color-white);
            padding: var(--spacing-lg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            text-align: center;
            border: 1px solid var(--color-bg-light)
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary)
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto var(--spacing-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            background: var(--color-bg-light);
            border-radius: 50%;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--color-primary);
            color: var(--color-white);
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
            stroke-width: 1.5;
        }

        .service-card h3 {
            margin-bottom: 0.5rem;
            color: var(--color-primary)
        }

        .mini-calculator {
            background: var(--color-bg-card);
            padding: 2rem;
            border-radius: 24px;
            box-shadow: var(--shadow-card), 0 0 0 1px var(--color-border-light) inset;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden
        }

        .mini-calculator:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8) inset
        }

        .mini-calculator h2 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--color-text-dark);
            text-align: center;
            font-weight: 800;
            letter-spacing: -0.5px
        }

        .mini-calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem
        }

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

        .mini-input-group label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-text-light);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px
        }

        .mini-input-group input {
            width: 100%;
            padding: 12px 5px;
            border: 2px solid transparent;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-text-dark);
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05)
        }

        .mini-input-group input:focus {
            border-color: var(--color-primary);
            background: var(--color-bg-white);
            outline: none;
            box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.15)
        }

        .mini-result {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--color-bg-secondary);
            padding: 1rem 1.5rem;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            border: 1px solid var(--color-border-light)
        }

        .mini-result span {
            font-size: 0.95rem;
            color: var(--color-text-light);
            font-weight: 600
        }

        .mini-total {
            font-size: 1.8rem;
            color: var(--color-primary-dark);
            font-family: var(--font-heading);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
        }

        .mini-note {
            font-size: 0.75rem;
            text-align: center;
            color: var(--color-text-muted);
            margin-top: 0.8rem;
            font-style: italic
        }

        body.dark-mode .mini-note {
            color: var(--color-text-body);
        }

        .mini-calculator .btn-block {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border: none;
            padding: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            width: 100%
        }

        .mini-calculator .btn-block:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3)
        }

        @media (max-width:768px) {
            .hero-visual {
                margin-top: 4rem;
                margin-bottom: 4rem;
                display: flex;
                justify-content: center;
                padding: 0 1rem
            }

            .mini-calculator {
                max-width: 100%
            }
        }

        .about {
            background-color: var(--color-bg-light)
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center
        }

        .feature-list {
            margin-top: var(--spacing-lg);
            display: flex;
            justify-content: center;
            gap: var(--spacing-lg);
            flex-wrap: wrap
        }

        .feature-list li {
            font-weight: 600;
            font-size: 1.1rem
        }

        .process {
            background-color: var(--color-white)
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            text-align: center
        }

        .process-step {
            position: relative;
            padding: var(--spacing-lg)
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--color-primary);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto var(--spacing-md);
            box-shadow: var(--shadow-md)
        }

        .testimonials {
            background-color: var(--color-bg-light);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background element */
        .testimonials::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(19, 153, 171, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(19, 153, 171, 0.1);
            border-color: rgba(19, 153, 171, 0.2);
        }

        .quote-icon {
            margin-bottom: -0.5rem;
        }

        .quote-icon svg {
            color: rgba(19, 153, 171, 0.2);
            transition: color 0.3s ease;
        }

        /* Dark Mode Overrides for Testimonials */
        body.dark-mode .testimonial-card {
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .testimonial-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(34, 211, 238, 0.3);
        }

        body.dark-mode .quote-icon svg {
            color: rgba(34, 211, 238, 0.2);
        }

        body.dark-mode .reviewer-meta {
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--color-text-body);
            font-style: italic;
            flex-grow: 1;
        }

        .reviewer-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .reviewer-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .reviewer-details h3 {
            margin: 0 0 4px 0;
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-dark);
        }

        .rating-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        }

        .stars {
            color: #FFB703;
            letter-spacing: 1px;
        }

        .platform {
            color: #777;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .platform::before {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23EA4335' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%234285F4' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%23FBBC05' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/%3E%3Cpath fill='%2334A853' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        .faq {
            background-color: var(--color-white)
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md)
        }

        .faq-item {
            background: var(--color-bg-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: box-shadow 0.3s ease
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm)
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: var(--spacing-md) var(--spacing-lg);
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-heading);
            transition: color 0.3s ease
        }

        .faq-question:hover {
            color: var(--color-primary)
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.3s ease;
            color: var(--color-primary)
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg)
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-8px);
            transition: max-height 0.75s ease, opacity 0.5s ease,
                transform 0.75s cubic-bezier(0.2, 1.8, 0.2, 1);
            background-color: var(--color-white)
        }

        .faq-answer p {
            padding: var(--spacing-md) var(--spacing-lg);
            color: var(--color-text-body);
            line-height: 1.6;
            border-top: 1px solid rgba(0, 0, 0, 0.05)
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0)
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: var(--spacing-xl);
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg)
        }

        .contact-info-panel {
            padding: var(--spacing-xl);
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--color-bg-secondary);
            gap: var(--spacing-lg)
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-md);
            padding: var(--spacing-sm);
            border-radius: var(--radius-md);
            transition: background-color 0.3s ease
        }

        .info-item:hover {
            background-color: var(--color-white);
            box-shadow: var(--shadow-sm)
        }

        .info-icon {
            font-size: 1.5rem;
            background-color: var(--color-bg-light);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0
        }

        .info-content h3 {
            color: var(--color-text-dark);
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
            font-weight: 600
        }

        .info-content p {
            color: var(--color-text-body);
            font-size: 0.95rem;
            line-height: 1.4
        }

        .info-content a {
            color: var(--color-primary);
            font-weight: 500
        }

        .cta-box {
            margin-top: var(--spacing-md);
            padding: var(--spacing-lg);
            background: linear-gradient(135deg, var(--color-primary), #4CC9F0);
            border-radius: var(--radius-lg);
            text-align: center;
            color: var(--color-white);
            box-shadow: var(--shadow-md);
            border: none
        }

        .cta-box p {
            margin-bottom: var(--spacing-md);
            font-weight: 600;
            font-size: 1.1rem
        }

        .cta-box .btn {
            background-color: var(--color-white);
            color: var(--color-primary-dark);
            width: 100%;
            border: none
        }

        .cta-box .btn:hover {
            background-color: var(--color-bg-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
        }

        .map-wrapper {
            min-height: 400px;
            height: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--color-white)
        }

        .map-wrapper iframe {
            border: 0
        }

        @media (max-width:768px) {
            :root {
                --spacing-xl: 2.5rem;
                --spacing-lg: 1.5rem
            }

            .header {
                display: block
            }

            .section {
                padding: 3rem 0
            }

            .hero-circle {
                width: 280px;
                height: 280px
            }

            .nav-toggle {
                display: block
            }

            .nav-list {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--color-white);
                flex-direction: column;
                padding: var(--spacing-md);
                box-shadow: var(--shadow-md)
            }

            .nav-list.active {
                display: flex
            }

            .contact-layout {
                grid-template-columns: 1fr
            }

            .map-wrapper {
                height: 300px;
                min-height: 300px
            }

            .contact-info-panel {
                padding: var(--spacing-lg)
            }
        }

        .promo-banner {
            background-color: #FFD700;
            color: #333;
            text-align: center;
            padding: 0.5rem;
            position: relative;
            font-size: 0.9rem;
            z-index: 2000
        }

        .promo-banner a {
            text-decoration: underline;
            font-weight: bold;
            color: #000
        }

        .promo-banner button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0 5px
        }

        .comparison-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg)
        }

        .img-comp-container {
            position: relative;
            height: 400px;
            overflow: hidden
        }

        .img-comp-img {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden
        }

        .img-comp-before {
            width: 50%;
            z-index: 2;
            border-right: 3px solid white
        }

        .slider {
            position: absolute;
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 10;
            top: 0;
            left: 0;
            margin: 0;
            cursor: ew-resize
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 0;
            height: 0
        }

        .slider::-moz-range-thumb {
            width: 0;
            height: 0;
            border: 0
        }

        .slider-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--color-primary);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 5;
            pointer-events: none
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1)
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
            }
        }

        .business-hours-widget {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-border-light);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden
        }

        .business-hours-widget h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--color-text-dark);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem
        }

        .hours-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--color-border)
        }

        .hours-item:last-child {
            border-bottom: none
        }

        .hours-item .day {
            font-weight: 600;
            color: var(--color-text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem
        }

        .hours-item .time {
            color: #0d3d47;
            font-weight: 500;
            background: var(--color-bg-secondary);
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.9rem
        }

        .status-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 1rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            transition: all 0.3s ease
        }

        .status-badge.open {
            background: rgba(40, 167, 69, 0.1);
            color: #1e7e34;
            border: 1px solid rgba(40, 167, 69, 0.2)
        }

        .status-badge.closed {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border: 1px solid rgba(220, 53, 69, 0.2)
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            position: relative
        }

        .status-dot::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid currentColor;
            opacity: 0.5;
            animation: ripple 1.5s infinite
        }

        @keyframes ripple {
            0% {
                transform: scale(0.5);
                opacity: 1
            }

            100% {
                transform: scale(1.5);
                opacity: 0
            }
        }

        .floating-hours-badge {
            position: fixed;
            top: 110px;
            /* Increased to clear header */
            right: 15px;
            z-index: 1001;
            /* Increased to be above header if needed, but top spacing should handle it */
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none
        }

        @media (max-width: 768px) {
            .floating-hours-badge {
                top: 190px;
            }
        }

        .floating-hours-badge.show {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all
        }

        .floating-hours-badge.hide {
            opacity: 0;
            transform: translateX(400px);
            pointer-events: none
        }

        .floating-badge-content {
            background: var(--color-bg-card);
            padding: 0.65rem 1rem;
            border-radius: 50px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border: 1.5px solid transparent;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s ease
        }

        .floating-hours-badge.open .floating-badge-content {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(30, 130, 55, 0.95) 100%);
            border-color: rgba(255, 255, 255, 0.3)
        }

        .floating-hours-badge.closed .floating-badge-content {
            background: linear-gradient(135deg, rgba(189, 33, 48, 0.98) 0%, rgba(160, 28, 40, 0.98) 100%);
            border-color: rgba(255, 255, 255, 0.3)
        }

        .floating-badge-content:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2)
        }

        .floating-status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffffff;
            position: relative;
            flex-shrink: 0
        }

        .floating-hours-badge.open .floating-status-dot::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 1.5px solid #ffffff;
            opacity: 0.7;
            animation: ripple 1.5s infinite
        }

        .floating-badge-text {
            display: flex;
            flex-direction: column;
            gap: 0.05rem
        }

        .floating-status-text {
            font-weight: 700;
            font-size: 0.8rem;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            line-height: 1.2
        }

        .floating-closing-time {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            line-height: 1.2
        }

        .floating-badge-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #ffffff;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
            padding: 0
        }

        .floating-badge-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg)
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(400px)
            }

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

        @media (max-width:768px) {
            .floating-hours-badge {
                top: 100px;
                /* Increased for mobile */
                right: 50%;
                left: auto;
                transform: translateX(calc(400px + 50%))
            }

            .floating-hours-badge.show {
                transform: translateX(50%)
            }

            .floating-hours-badge.hide {
                transform: translateX(calc(400px + 50%))
            }

            .floating-badge-content {
                padding: 0.6rem 0.9rem;
                border-radius: 30px;
                gap: 0.5rem
            }

            .floating-status-dot {
                width: 7px;
                height: 7px
            }

            .floating-status-text {
                font-size: 0.75rem
            }

            .floating-closing-time {
                font-size: 0.6rem
            }

            .floating-badge-close {
                width: 18px;
                height: 18px;
                font-size: 0.9rem
            }
        }

        .footer {
            background-color: var(--color-footer-bg);
            color: var(--color-footer-text);
            padding: var(--spacing-xl) 0 var(--spacing-lg)
        }

        .footer-container {
            display: block
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-xl)
        }

        .payment-badge-hero {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-top: 2rem;
            padding: 1.75rem 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            width: fit-content;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .payment-badge-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
        }

        body.dark-mode .payment-badge-hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
            border-color: rgba(148, 163, 184, 0.2);
            box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4), inset 0 0 0 1px rgba(148, 163, 184, 0.08);
        }

        .badge-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-primary);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 2px 5px rgba(19, 153, 171, 0.3);
        }

        body.dark-mode .badge-icon {
            background: var(--color-primary-light);
            color: #0f172a;
            box-shadow: 0 4px 10px rgba(34, 211, 238, 0.25);
        }

        .payment-badge-hero span.badge-label {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-text-dark);
            letter-spacing: -0.01em;
        }

        body.dark-mode .payment-badge-hero span.badge-label {
            color: var(--color-text-dark);
        }

        .payment-logos-hero {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        body.dark-mode .payment-logos-hero {
            opacity: 0.95;
        }

        .bank-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            width: auto;
            transition: transform 0.3s ease;
            filter: grayscale(0%);
            opacity: 0.9;
        }

        .bank-logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        }

        .bank-logo:hover {
            transform: scale(1.15);
            opacity: 1;
            filter: grayscale(0%) !important;
        }

        body.dark-mode .bank-logo img {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        @media (max-width: 768px) {
            .payment-badge-hero {
                width: 100%;
                align-items: center;
                padding: 1.1rem 1.2rem;
            }

            .payment-logos-hero {
                justify-content: center;
                gap: 10px;
            }

            .bank-logo {
                height: 32px;
            }
        }

        .footer-column h3 {
            color: var(--color-footer-text);
            font-size: 1.2rem;
            margin-bottom: var(--spacing-md);
            position: relative;
            padding-bottom: var(--spacing-sm)
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--color-primary)
        }

        .footer-column p {
            color: #ffffff;
            font-size: 0.9rem;
            line-height: 1.6
        }

        .footer-links li {
            margin-bottom: 0.5rem
        }

        .footer-links a {
            color: #ffffff;
            font-size: 0.9rem;
            transition: color 0.3s ease
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-lg);
            text-align: center;
            font-size: 0.9rem;
            color: #ffffff
        }

        .social-links {
            display: flex;
            gap: var(--spacing-md);
            margin-top: var(--spacing-md)
        }

        .social-links a {
            color: var(--color-footer-text);
            font-weight: 500;
            opacity: 0.8;
            transition: opacity 0.3s ease
        }

        .social-links a:hover {
            opacity: 1
        }

        /* New Coverage Section Styles */
        .coverage-section {
            background-color: var(--color-bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .coverage-info-card {
            padding-right: 2rem;
        }

        .coverage-desc {
            font-size: 1.1rem;
            color: var(--color-text-body);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .districts-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .district-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2.5rem;
        }

        .district-pill {
            background: var(--color-white);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--color-text-dark);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .district-pill:hover {
            border-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .check-icon {
            color: var(--color-primary);
            font-weight: 800;
        }

        .coverage-cta {
            background: rgba(19, 153, 171, 0.12);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .coverage-cta p {
            font-weight: 600;
            color: #1a202c;
            margin: 0;
        }

        /* Ensure buttons in coverage-cta have proper contrast */
        .coverage-cta .btn-outline {
            border-color: var(--color-primary-dark);
            color: var(--color-primary-dark);
            background-color: white;
        }

        .coverage-cta .btn-outline:hover {
            background-color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            color: white;
        }

        .coverage-cta .btn-primary {
            background-color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
        }

        .coverage-cta .btn-primary:hover {
            background-color: #0a5f6d;
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 0.9rem;
            color: #1C2B4B
        }

        .btn-primary.btn-sm {
            color: #1C2B4B !important;
        }

        .coverage-map-wrapper {
            position: relative;
        }

        .map-frame {
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            position: relative;
            border: 8px solid var(--color-white);
        }

        .map-overlay-card {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 300px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .map-overlay-card:hover {
            transform: translateY(-5px);
        }

        .overlay-icon {
            width: 48px;
            height: 48px;
            background: var(--color-primary);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .overlay-content h4 {
            margin: 0 0 0.2rem 0;
            font-size: 1rem;
            color: #1a202c;
        }

        .overlay-content p {
            margin: 0 0 0.5rem 0;
            font-size: 0.85rem;
            color: #4a5568;
        }

        .directions-link {
            font-size: 0.85rem;
            color: var(--color-primary-text);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .directions-link:hover {
            text-decoration: underline;
            color: var(--color-primary-dark);
        }

        @media (max-width:768px) {
            .hero {
                padding: 6rem 0 4rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-title {
                font-size: 2.5rem;
                text-align: center;
            }

            .hero-description {
                max-width: 100%;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-visual {
                height: 300px;
            }

            /* Restore Coverage Grid Styles */
            .coverage-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .map-wrapper,
            .contact-map-wrapper {
                height: 300px;
                /* Ensure map has height on mobile */
                width: 100%;
            }

            .coverage-map-container {
                height: 300px;
            }

            .coverage-info-card {
                padding-right: 0;
                text-align: center;
            }

            .section-title {
                text-align: center !important;
            }

            .district-pills {
                justify-content: center;
            }

            .coverage-cta {
                flex-direction: column;
                text-align: center;
            }

            .map-frame {
                height: 350px;
            }

            .map-overlay-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: 20px;
                width: 90%;
            }

            .map-overlay-card:hover {
                transform: translateX(-50%) translateY(-5px);
            }
        }


        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse-green 2s infinite
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1)
        }

        .whatsapp-float svg {
            width: 40px;
            height: 40px
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7)
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
            }
        }

        .animate-in {
            opacity: 1 !important;
            transform: translateY(0) !important
        }

        .trust-bar {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: -3rem;
            /* Overlap with hero */
            position: relative;
            z-index: 10;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 768px) {
            .trust-bar {
                margin-top: 2rem;
            }
        }

        body.dark-mode .trust-bar {
            background: rgba(15, 23, 42, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        body.dark-mode .trust-item:hover {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        }

        body.dark-mode .trust-desc {
            color: var(--color-text-body);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
            border-radius: var(--radius-lg);
        }

        .trust-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
        }

        .trust-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .trust-item:hover .trust-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .trust-icon svg {
            width: 100%;
            height: 100%;
            stroke-width: 1.5;
        }

        .trust-title {
            font-weight: 700;
            color: var(--color-text-dark);
            font-size: 1.1rem;
            margin-bottom: 0.25rem
        }

        .trust-desc {
            font-size: 0.9rem;
            color: #555555
        }

        .chatbot-widget {
            position: fixed;
            bottom: 110px;
            left: 30px;
            width: 340px;
            background: var(--color-bg-card);
            border-radius: 22px;
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
            z-index: 9999;
            overflow: hidden;
            display: none;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.08);
            font-family: var(--font-body);
            animation: slideInUp 0.3s ease
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

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

        .chatbot-header {
            background: var(--color-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .chatbot-header h3 {
            margin: 0;
            font-size: 1rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            line-height: 1
        }

        .chatbot-body {
            padding: 16px 16px 56px;
            max-height: 360px;
            overflow-y: auto;
            background: var(--color-bg-secondary);
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .chatbot-body::after {
            content: '';
            display: block;
            height: 40px
        }

        .chat-message {
            max-width: 90%;
            animation: fadeIn 0.3s ease
        }

        .chat-message.bot {
            align-self: flex-start
        }

        .chat-message.user {
            align-self: flex-end
        }

        .chat-bubble {
            background: white;
            padding: 10px 12px;
            border-radius: 15px 15px 15px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            font-size: 0.85rem;
            color: var(--color-text-dark);
            line-height: 1.35;
            max-width: 240px
        }

        .chat-message.user .chat-bubble {
            background: var(--color-primary);
            color: white;
            border-radius: 15px 15px 0 15px
        }

        .chat-options {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 8px
        }

        .chat-option-btn {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
            border: 1px solid var(--color-border-light);
            color: var(--color-text-dark);
            padding: 10px 12px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 0.82rem;
            transition: all 0.2s ease;
            text-align: left;
            font-weight: 600;
            min-height: 54px;
            display: flex;
            align-items: center;
            justify-content: flex-start
        }

        .chat-option-btn:hover {
            background: var(--color-primary);
            color: white;
            border-color: transparent
        }

        .chat-options .chat-option-btn {
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.2), rgba(19, 153, 171, 0.12));
            border: 1px solid rgba(19, 153, 171, 0.3);
            box-shadow: 0 6px 12px rgba(19, 153, 171, 0.12);
        }

        .chat-options .chat-option-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 18px rgba(19, 153, 171, 0.2);
        }

        body.dark-mode .chat-options .chat-option-btn {
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(14, 116, 144, 0.14));
            border-color: rgba(34, 211, 238, 0.3);
        }

        .chat-option-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        body.dark-mode .chat-option-btn {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
            border-color: rgba(148, 163, 184, 0.2);
            color: var(--color-text-dark);
        }

        .chatbot-toggle {
            position: fixed;
            bottom: 40px;
            left: 40px;
            background: white;
            color: var(--color-primary);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: transform 0.3s
        }

        @media (max-width: 420px) {
            .chatbot-widget {
                left: 12px;
                right: 12px;
                width: auto;
                bottom: 96px;
            }

            .chatbot-body {
                max-height: 320px;
                padding: 14px 12px 52px;
            }

            .chat-options {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .chat-option-btn {
                min-width: 100%;
            }

            .chatbot-input {
                padding: 10px 12px;
            }

            .chatbot-toggle {
                left: 16px;
                bottom: 24px;
                width: 52px;
                height: 52px;
            }

            .whatsapp-float {
                right: 16px;
                bottom: 24px;
                width: 52px;
                height: 52px;
                font-size: 24px;
            }

            .whatsapp-float svg {
                width: 30px;
                height: 30px;
            }
        }

        .chatbot-toggle:hover {
            transform: scale(1.1)
        }

        .chatbot-toggle .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #ff4757;
            color: white;
            font-size: 0.75rem;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border: 2px solid white
        }

        .chatbot-input {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            background: var(--color-bg-card);
        }

        .chatbot-input-field {
            flex: 1;
            background: var(--color-bg-white);
            border: 1px solid var(--color-border-light);
            border-radius: 999px;
            padding: 10px 14px;
            color: var(--color-text-light);
            font-size: 0.9rem;
            min-height: 38px;
            display: flex;
            align-items: center;
        }

        .chatbot-input-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .chatbot-input-send {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: var(--color-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .chatbot-input-send svg {
            width: 16px;
            height: 16px;
        }

        body.dark-mode .chatbot-input {
            border-top-color: rgba(255, 255, 255, 0.08);
            background: var(--color-bg-secondary);
        }

        body.dark-mode .chatbot-input-field {
            background: var(--color-bg-card);
            border-color: var(--color-border);
            color: var(--color-text-body);
        }

        /* Dark Mode Chatbot Fixes */
        body.dark-mode .chat-bubble {
            background: var(--color-bg-secondary);
            color: var(--color-text-dark);
            border: 1px solid var(--color-border);
        }

        body.dark-mode .chat-message.user .chat-bubble {
            background: var(--color-primary);
            color: var(--color-bg-card);
            /* Dark text on bright cyan */
            border: none;
        }

        body.dark-mode .chat-option-btn {
            background: transparent;
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        body.dark-mode .chat-option-btn:hover {
            background: var(--color-primary);
            color: var(--color-bg-card);
        }

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

        .pricing-intro {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 2.5rem;
            color: var(--color-text-body);
        }

        .pricing-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin: -1rem auto 2rem;
            max-width: 720px;
        }

        .pricing-block {
            margin-bottom: 2.5rem;
        }

        .pricing-subtitle {
            font-size: 1.6rem;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--color-text-dark);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 1rem;
        }

        .pricing-card {
            background: var(--color-bg-white);
            border-radius: 16px;
            padding: 1.1rem 1.2rem;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .pricing-card h4 {
            font-size: 0.95rem;
            color: var(--color-text-dark);
        }

        .pricing-meta {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .pricing-price {
            display: inline-flex;
            align-self: flex-start;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-primary);
            background: rgba(19, 153, 171, 0.12);
        }

        .pricing-tools {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pricing-search input {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid var(--color-border);
            font-size: 0.95rem;
            background: var(--color-bg-white);
            color: var(--color-text-dark);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .pricing-search input:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(19, 153, 171, 0.15);
        }

        .pricing-search {
            position: relative;
        }

        .pricing-clear-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: var(--color-bg-secondary);
            color: var(--color-text-dark);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
        }

        .pricing-search.has-value .pricing-clear-btn {
            display: inline-flex;
        }

        .pricing-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .pricing-category-btn {
            border-radius: 999px;
            border: 1px solid var(--color-border-light);
            background: var(--color-bg-white);
            padding: 0.45rem 0.9rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-text-dark);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pricing-category-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .pricing-category-btn.active {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        .pricing-empty {
            text-align: center;
            padding: 1.5rem 1rem;
            color: var(--color-text-muted);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        @media (min-width: 900px) {
            .pricing-tools {
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .pricing-search {
                width: min(520px, 70%);
            }

            .pricing-categories {
                justify-content: center;
            }
        }

        body.dark-mode .pricing-card {
            background: var(--color-bg-card);
            border-color: rgba(148, 163, 184, 0.2);
        }

        body.dark-mode .pricing-search input {
            background: var(--color-bg-card);
            border-color: rgba(148, 163, 184, 0.2);
        }

        body.dark-mode .pricing-category-btn {
            background: var(--color-bg-card);
            border-color: rgba(148, 163, 184, 0.2);
            color: var(--color-text-dark);
        }

        body.dark-mode .pricing-category-btn.active {
            background: var(--color-primary);
            color: var(--color-bg-card);
        }

        body.dark-mode .pricing-price {
            background: rgba(34, 211, 238, 0.18);
        }

        @media (max-width: 768px) {
            .pricing-tools {
                position: sticky;
                top: 96px;
                z-index: 50;
                padding: 0.75rem 0;
                background: var(--color-bg-light);
            }

            .pricing-search input {
                font-size: 1rem;
                padding: 0.9rem 1rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }