:root {
            --color-primary: #0f172a;
            --color-primary-light: #1e293b;
            --color-accent: #dc2626;
            --color-accent-hover: #b91c1c;
            --color-secondary: #dc2626;
            --color-bg: #f8fafc;
            --color-surface: #ffffff;
            --color-text: #0f172a;
            --color-text-muted: #64748b;
            --color-white: #ffffff;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --radius-lg: 1.5rem;
            --radius-md: 0.75rem;
            --radius-sm: 0.5rem;
            --border-radius: 12px;
            --spacing-xl: 5rem;
            --spacing-lg: 3rem;
            --spacing-md: 1.5rem;
            --spacing-sm: 1rem;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-premium: 0 20px 50px rgba(15, 23, 42, 0.1);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.3);
            --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --gradient-secondary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-blur: blur(12px);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--color-white);
            color: var(--color-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
            color: var(--color-primary);
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            content-visibility: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        .section {
            padding: var(--spacing-xl) 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.25rem;
            margin-bottom: 3rem;
        }
        .bg-light {
            background-color: var(--color-bg);
        }
        .bg-dark {
            background: var(--gradient-primary);
            color: var(--color-white);
        }
        .text-white {
            color: var(--color-white) !important;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-primary {
            background-color: var(--color-accent);
            color: var(--color-white);
            border: none;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        .btn-primary:hover {
            background-color: var(--color-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        }
        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--color-white);
            backdrop-filter: blur(5px);
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        .btn-whatsapp {
            background-color: #25D366;
            color: var(--color-white);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .section-hero-image {
            padding: var(--spacing-md) 0 var(--spacing-lg);
            position: relative;
            z-index: 10;
            margin-top: 4rem;
            min-height: 400px;
        }
                .hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 4rem;
            position: relative;
            background-color: transparent;
            display: flex;
            justify-content: center;
        }
                .hero-image-container img {
            width: 100%;
            height: auto;
            max-height: 700px;
            object-fit: contain;
            mix-blend-mode: multiply;
            display: block;
            margin: 0 auto;
        }
        @media (max-width:768px) {
            .section-hero-image { padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg); margin-top: 0.5rem; min-height: 200px; }
        }
        .header {
            background-color: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            min-height: 70px;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
        }
        .logo span {
            color: var(--color-accent);
            margin-left: 2px;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav a:not(.btn) {
            font-weight: 500;
        }
        .nav a:hover {
            color: var(--color-secondary);
        }
        .hero {
            background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
            color: var(--color-white);
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 4rem;
        }
        .hero-content {
            flex: 1;
            z-index: 1;
            min-height: 300px;
        }
        .hero-text-card {
            background: rgba(30, 58, 138, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }
        .hero-content h1 {
            color: var(--color-white);
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .contact-header-image {
            width: 100%;
            margin-bottom: 2rem;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
            border: 1px solid var(--glass-border);
            aspect-ratio: 320 / 180;
            background-color: #f1f5f9;
        }
        .contact-header-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
            pointer-events: none;
            z-index: 2;
        }
        .contact-header-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        @media (max-width:768px) {
            .contact-header-image img {
                height: 100%;
            }
        }
        .contact-container h2 {
            margin-bottom: 2rem;
            text-align: center;
        }
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 0;
            opacity: 0.95;
            color: var(--color-white);
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            min-height: 50px;
        }

        /* ── Premium 3D CTA Buttons ── */
        .btn-3d-premium {
            display: inline-flex;
            align-items: center;
            gap: 0;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-3d-premium:hover {
            transform: translateY(-3px);
        }
        .btn-3d-premium:active {
            transform: translateY(0);
        }

        /* Red phone variant */
        .btn-3d-phone {
            background: linear-gradient(145deg, #e53030 0%, #b91c1c 100%);
            box-shadow: 0 6px 0 #7f1d1d, 0 10px 20px rgba(185,28,28,0.4);
            color: #fff;
        }
        .btn-3d-phone:hover {
            box-shadow: 0 8px 0 #7f1d1d, 0 14px 28px rgba(185,28,28,0.45);
        }
        .btn-3d-phone:active {
            box-shadow: 0 2px 0 #7f1d1d, 0 4px 10px rgba(185,28,28,0.3);
        }

        /* Dark form variant */
        .btn-3d-form {
            background: linear-gradient(145deg, #1e3a5f 0%, #0f172a 100%);
            box-shadow: 0 6px 0 #060d1a, 0 10px 20px rgba(15,23,42,0.5);
            color: #fff;
        }
        .btn-3d-form:hover {
            box-shadow: 0 8px 0 #060d1a, 0 14px 28px rgba(15,23,42,0.55);
        }
        .btn-3d-form:active {
            box-shadow: 0 2px 0 #060d1a, 0 4px 10px rgba(15,23,42,0.3);
        }

        .btn-3d-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 4px;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn-3d-phone .btn-3d-icon {
            background: rgba(255,255,255,0.25);
            filter: brightness(0) invert(1);
        }
        .btn-3d-label {
            padding: 0 1.5rem 0 1rem;
            font-family: var(--font-heading);
            font-size: 1rem;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }
        .btn-3d-label small {
            display: block;
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.8;
            font-family: var(--font-body);
        }
        @media (min-width:992px) {
            .hero-container {
                text-align: left;
            }
            .hero-actions {
                justify-content: flex-start;
                flex-direction: row;
            }
            .trust-badges {
                justify-content: flex-start;
            }
        }
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.25rem;
            margin-top: 3rem;
            min-height: 45px;
        }
        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .trust-badges span:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .trust-badges svg {
            width: 20px;
            height: 20px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
        }
        .badge-star svg {
            color: #fbbf24;
        }
        .badge-tuv svg {
            color: #60a5fa;
        }
        .badge-price svg {
            color: #34d399;
        }
        .badge-express svg {
            color: #f59e0b;
        }
        .badge-location svg {
            color: #f87171;
        }
        .benefit-item {
            text-align: center;
            padding: 2rem;
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            border: 1px solid rgba(15, 23, 42, 0.05);
        }
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .benefit-item .icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-bg);
            border-radius: 16px;
            font-size: 2rem;
            transition: all 0.3s ease;
            color: var(--color-accent);
        }
        .benefit-item:hover .icon {
            background: var(--gradient-secondary);
            color: var(--color-white);
            transform: scale(1.1) rotate(5deg);
        }
        .benefit-item .icon svg {
            width: 32px;
            height: 32px;
        }
        .trust-badges svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        .badge-star svg {
            color: #fbbf24;
        }
        .badge-tuv svg {
            color: #60a5fa;
        }
        .badge-price svg {
            color: #34d399;
        }
        .badge-express svg {
            color: #f59e0b;
        }
        .badge-location svg {
            color: #f87171;
        }
        .card {
            background-color: var(--color-white);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(15, 23, 42, 0.05);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-premium);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-secondary);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: var(--shadow-glow);
        }
        .benefit-item {
            text-align: center;
            padding: 1.5rem;
        }
        .benefit-item .icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }
        .service-list .service-item {
            background-color: var(--color-white);
            padding: 2rem 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            font-weight: 600;
            text-align: center;
            border-bottom: 4px solid var(--color-secondary);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
            position: relative;
            overflow: hidden;
        }
        .service-list .service-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            box-shadow: inset 0 0 15px rgba(255, 255, 255, 1), inset 0 0 2px rgba(0, 0, 0, 0.05);
            pointer-events: none;
            z-index: 2;
        }
        .service-list .service-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            transform: scale(1.15);
            will-change: transform;
        }
        .service-list .service-item:hover img {
            transform: scale(1.25) translateY(-5px);
        }
        .service-icon-wrapper {
            width: 140px;
            height: 100px;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            aspect-ratio: 140 / 100;
            background-color: #f8fafc;
        }
        .service-list .service-item span {
            font-size: 1.1rem;
            color: var(--color-primary);
        }
        .service-list .service-item:hover {
            background: var(--color-white);
            border-bottom-color: var(--color-primary);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .service-list .service-item:hover span {
            color: var(--color-secondary);
        }
        .review-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-premium);
            min-height: 250px;
        }
        .review-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
        }
        .review-card .stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            gap: 0.25rem;
        }
        .review-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            background: transparent !important;
        }
        .review-card .author {
            display: block;
            margin-top: auto;
            font-weight: 600;
            color: var(--color-white);
            opacity: 0.7;
            font-size: 0.95rem;
        }
        .faq-item {
            max-width: 800px;
            margin: 0 auto 1rem;
            border: 1px solid #e2e8f0;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .faq-question {
            background-color: var(--color-white);
            padding: 1.5rem;
            margin: 0;
            cursor: pointer;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--color-secondary);
            background: var(--gradient-secondary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #f8fafc;
        }
        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 200px;
        }
        .faq-item.active .faq-question::after {
            content: '-';
        }
        .section-contact {
            background: radial-gradient(circle at bottom left, #1e293b 0%, #0f172a 100%);
            color: var(--color-white);
            padding: var(--spacing-xl) 0;
        }
        .section-contact h2,
        .section-contact h3 {
            color: var(--color-white);
        }
        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-premium);
        }
        .contact-form-wrapper h2 {
            color: var(--color-white);
            text-align: center;
            margin-bottom: 2rem;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .form-group.full {
            grid-column: span 2;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.05);
            color: var(--color-white);
            font-family: inherit;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
        }
        .contact-info {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .contact-info h3 {
            color: var(--color-white);
            margin-bottom: 0.5rem;
        }
        .contact-info p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }
        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
            background: #22c35e;
        }
        @media (max-width:768px) {
            .contact-form-wrapper {
                padding: 2rem 1.5rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group.full {
                grid-column: span 1;
            }
        }
        .footer {
            background-color: var(--color-primary-light);
            color: #cbd5e1;
            padding: 3rem 0;
            text-align: center;
            margin-top: auto;
        }
        .footer-links {
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            margin: 0 1rem;
            color: var(--color-white);
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }
        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background-color: var(--color-primary);
            border-radius: 3px;
        }
        @media (max-width:768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--color-white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-lg);
            }
            .nav.active {
                display: flex;
            }
            .mobile-toggle {
                display: flex;
            }
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            .hero-actions {
                flex-direction: column;
                gap: 1rem;
            }
            .hero-actions .btn {
                width: 100%;
                margin: 0;
            }
            .hero-content h1 {
                font-size: 2.25rem;
            }
            .trust-badges {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            .trust-badges span:first-child {
                grid-column: span 2;
            }
            .trust-badges span {
                justify-content: center;
                padding: 0.5rem 0.75rem;
                font-size: 0.85rem;
            }
            .contact-container {
                flex-direction: column;
            }
        }
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        .floating-whatsapp:hover {
            transform: scale(1.1);
        }
        .form-group select option {
            background-color: var(--color-primary-light);
            color: var(--color-white);
        }
    
/* MODERN MOBILE STICKY CTA */
.mobile-sticky-cta {
    display: none; /* Hidden on desktop */
}
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 50px;
        padding: 8px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        z-index: 9999;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .mobile-sticky-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 0;
        border-radius: 40px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .btn-sticky-phone {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: white;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
    }
    .btn-sticky-wa {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: white;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    /* Hide the old single floating whatsapp pill on mobile because we have this new dual bar */
    
}


        /* Consistently Styled WhatsApp Pill */

        @media (max-width: 768px) {

        }
    

@media (max-width: 768px) {
    .stats-bar .stat-item {
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .stats-bar .stat-item:last-child {
        border-bottom: none;
    }
}


        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            border-color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.85);
        }
        .glass-card:hover .card-highlight {
            opacity: 1 !important;
        }
        .glass-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }
    

                    .district-btn {
                        background: white;
                        border: 1px solid #e2e8f0;
                        padding: 1rem;
                        border-radius: 12px;
                        text-align: center;
                        font-weight: 600;
                        color: #0f172a;
                        transition: all 0.3s ease;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
                    }
                    .district-btn:hover {
                        background: #f8fafc;
                        border-color: #dc2626;
                        color: #dc2626;
                        transform: translateY(-3px);
                        box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.1);
                    }