main, #main-content { margin-top: 0 !important; }
/* ==========================================================================

   BARANI ENTERPRISES - CORE DESIGN SYSTEM & PAGE STYLES

   ========================================================================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #851424;
            --primary-hover: #9E1F32;
            --primary-dark: #5C0D19;
            --secondary: #0B132B;
            --secondary-hover: #1C2541;
            --secondary-light: #2C3E5A;
            --accent: #F8FAFC;
            --accent-gold: #F59E0B;
            --dark: #070B14;
            --light: #F8FAFC;
            --gradient: linear-gradient(135deg, #0B132B 0%, #1C2541 60%, #0B132B 100%);
            --gradient-brand: linear-gradient(135deg, #851424 0%, #9E1F32 100%);
            --shadow-card: 0 10px 30px -10px rgba(11, 19, 43, 0.08), 0 4px 6px -2px rgba(11, 19, 43, 0.03);
            --shadow-hover: 0 20px 40px -12px rgba(11, 19, 43, 0.14), 0 8px 16px -4px rgba(133, 20, 36, 0.08);
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header{position:fixed;top:0;width:100%;background:rgba(255,255,255,0.98);backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,0.1);z-index:1000}
        nav{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem}
        .logo{display:flex;align-items:center;text-decoration:none}
        .nav-links{display:flex;gap:1.3rem;list-style:none;align-items:center}
        .nav-links a{text-decoration:none;color:var(--secondary);font-weight:600;transition:color .3s;position:relative;font-size:.93rem}
        .nav-links a::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--primary);transition:width .3s}
        .nav-links a:hover::after,.nav-links a.active::after{width:100%}
        .nav-links a.active{color:var(--primary)}
        .cta-button{background:var(--primary);color:white;padding:.75rem 1.5rem;border-radius:30px;text-decoration:none;font-weight:700;transition:all .3s;box-shadow:0 4px 15px rgba(133, 20, 36, 0.22);white-space:nowrap}
        .cta-button:hover{background:#9E1F32;transform:translateY(-2px)}
        .mobile-menu{display:none;background:white;padding:1rem 2rem 1.5rem;border-top:1px solid #eee;flex-direction:column;gap:0}
        .mobile-menu.open{display:flex}
        .mobile-menu a{display:block;padding:.65rem 0;font-weight:600;color:var(--secondary);text-decoration:none;border-bottom:1px solid #f0f0f0}
        .mobile-menu a:hover{color:var(--primary)}
        @media(max-width:768px){.nav-links{display:none}#menuBtn{display:block!important}nav{padding:1rem}}
        main{margin-top:0}

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 90vh;
            background: var(--gradient);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: gridMove 60s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -100px); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: 4.5rem;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--accent);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(133, 20, 36, 0.22);
        }

        .btn-primary:hover {
            background: #9E1F32;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(133, 20, 36, 0.28);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--secondary);
        }

        .hero-image {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .stat-number {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--primary);
            display: block;
        }

        .stat-label {
            color: white;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Locations Section */
        .locations {
            background: var(--light);
            padding: 6rem 2rem;
        }

        .locations-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .location-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }

        .location-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .location-card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .location-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .location-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(29, 53, 87, 0.2);
        }

        .feature-item h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.75rem;
        }

        .feature-item p {
            color: #666;
        }

        /* Contact Section */
        .contact {
            background: var(--gradient);
            padding: 6rem 2rem;
            color: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .contact-text a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .contact-text a:hover {
            opacity: 1;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .contact-form h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Work Sans', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #9E1F32;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(133, 20, 36, 0.22);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3, .footer-section .footer-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Gallery Hover Effects */
        .gallery img:hover {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Compact & balanced layout (no trailing-row gaps) ===== */
        .hero { min-height: auto; }
        .hero-content { padding: 3rem 2rem; gap: 3rem; }
        .hero-text h1 { font-size: 3.4rem; margin-bottom: 1rem; }
        .hero-text p { font-size: 1.1rem; margin-bottom: 1.5rem; }
        .hero-stats { margin-top: 1.5rem; gap: 1rem; }
        .stat-card { padding: 1rem; }
        .stat-number { font-size: 2.25rem; }
        .services, .locations, .why-choose, .contact { padding: 4rem 2rem; }
        .section-header { margin-bottom: 2.5rem !important; }
        .section-header h2 { font-size: 2.75rem; margin-bottom: 0.5rem; }
        .locations-grid, .features-grid { margin-top: 2rem; }
        .services-grid, .locations-grid, .features-grid, .flex-grid, .gallery-grid, .footer-content {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            justify-content: center;
        }
        .services-grid > * { flex: 1 1 320px; max-width: 440px; padding: 2rem; }
        .locations-grid > * { flex: 1 1 300px; max-width: 420px; }
        .features-grid > * { flex: 1 1 320px; max-width: 400px; padding: 1.25rem 1rem; }
        .feature-icon { width: 80px; height: 80px; font-size: 2.4rem; margin: 0 auto 1rem; }
        .gallery-grid > * { flex: 1 1 420px; max-width: 620px; }
        .flex-grid > * { flex: 1 1 260px; max-width: 400px; }
        .footer-content { justify-content: flex-start; gap: 2rem; }
        .footer-content > * { flex: 1 1 230px; max-width: 360px; }
        .faq-list { margin-top: 2rem !important; }
        section { scroll-margin-top: 90px; }
        @media (max-width: 768px) {
            .hero-content { padding: 2.5rem 1.25rem; }
            .hero-text h1 { font-size: 2.4rem; }
            .services, .locations, .why-choose, .contact { padding: 3rem 1.25rem; }
            .section-header h2 { font-size: 2.1rem; }
            .hero-stats { grid-template-columns: repeat(3, 1fr); }
        }

        /* ===== Floating contact buttons ===== */
        .float-stack{position:fixed;right:24px;bottom:24px;z-index:9999;display:flex;flex-direction:column;gap:12px}
        .float-btn{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 18px rgba(0,0,0,.22);text-decoration:none;transition:transform .2s ease,box-shadow .2s ease;position:relative}
        .float-btn:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 10px 24px rgba(0,0,0,.3)}
        .float-btn svg{width:28px;height:28px;fill:#fff}
        .float-wa{background:#25D366}
        .float-mail{background:#1D3557}
        .float-btn .float-tip{position:absolute;right:68px;top:50%;transform:translateY(-50%);background:#1D3557;color:#fff;font-size:.8rem;font-weight:600;padding:.4rem .7rem;border-radius:8px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s ease}
        .float-btn:hover .float-tip{opacity:1}
        @media(max-width:600px){.float-stack{right:16px;bottom:16px}.float-btn{width:50px;height:50px}.float-btn .float-tip{display:none}}

        /* --- 2026 conversion layout --- */
        .hero-seg{font-weight:700;letter-spacing:1px;color:#FFD700;text-transform:uppercase;font-size:1rem;margin-bottom:.75rem}
        .paths-sec{padding:3rem 1.5rem;background:#fff}
        .paths-grid{display:flex;flex-wrap:wrap;gap:1.25rem;justify-content:center;max-width:1200px;margin:0 auto}
        .path-card{flex:1 1 300px;max-width:380px;display:flex;flex-direction:column;gap:.5rem;text-decoration:none;background:#fff;border:2px solid #e6e8ec;border-radius:16px;padding:2rem 1.5rem;transition:.25s;box-shadow:0 6px 18px rgba(10,14,39,.05)}
        .path-card:hover{border-color:var(--primary);transform:translateY(-4px);box-shadow:0 16px 34px rgba(10,14,39,.12)}
        .path-ico{font-size:2.4rem;line-height:1}
        .path-card h3{font-size:1.5rem;color:var(--secondary);margin:0}
        .path-card p{color:#5a6472;font-size:1rem;margin:0}
        .path-cta{margin-top:.75rem;font-weight:800;color:var(--primary);font-size:1.02rem}
        .wa-strip{background:#0d7f3f;padding:2.25rem 1.5rem}
        .wa-strip-in{max-width:1200px;margin:0 auto;display:flex;flex-wrap:wrap;gap:1.25rem;align-items:center;justify-content:space-between}
        .wa-strip h2{color:#fff;font-size:1.9rem;margin:0 0 .25rem}
        .wa-strip p{color:rgba(255,255,255,.9);margin:0}
        .wa-strip-btns{display:flex;flex-wrap:wrap;gap:.75rem}
        .btn-wa-big{background:#fff;color:#0d7f3f;font-weight:800;padding:1rem 1.6rem;border-radius:10px;text-decoration:none;font-size:1.05rem}
        .btn-call-big{background:transparent;border:2px solid #fff;color:#fff;font-weight:800;padding:1rem 1.6rem;border-radius:10px;text-decoration:none;font-size:1.05rem}
        .trust-sec{padding:2.5rem 1.5rem;background:var(--light)}
        .trust-grid{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;max-width:1200px;margin:0 auto}
        .trust-item{flex:1 1 200px;max-width:230px;background:#fff;border:1px solid #e6e8ec;border-radius:12px;padding:1.1rem;text-align:center}
        .trust-item strong{display:block;color:var(--secondary);font-size:1.02rem;margin-bottom:.25rem}
        .trust-item span{color:#5a6472;font-size:.86rem}
        @media(max-width:640px){
            .paths-sec{padding:2rem 1rem}
            .path-card{flex:1 1 100%;max-width:100%;padding:1.5rem 1.25rem}
            .wa-strip h2{font-size:1.5rem}
            .btn-wa-big,.btn-call-big{flex:1 1 100%;text-align:center}
            .trust-item{flex:1 1 46%;max-width:none}
        }

        /* ============================================================
           CRITICAL ADVANTAGE STRIP & NAVIGATION SUBMENU STYLES
           ============================================================ */
        .ic {
            display: inline-block;
            width: 1.25em;
            height: 1.25em;
            stroke-width: 2;
            stroke: currentColor;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            vertical-align: middle;
        }

        /* Nav dropdown */
        .nav-links > li.has-sub {
            position: relative;
        }
        .nav-sub-toggle {
            background: none;
            border: 0;
            font: inherit;
            font-size: 0.93rem;
            font-weight: 600;
            color: var(--secondary);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0;
        }
        .nav-sub-toggle .ic-chev {
            width: 0.9em;
            height: 0.9em;
            transition: transform 0.2s ease;
        }
        .nav-links > li.has-sub:hover .nav-sub-toggle .ic-chev {
            transform: rotate(180deg);
        }
        .nav-sub {
            display: none;
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            min-width: 210px;
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            border-radius: 14px;
            padding: 0.5rem;
            box-shadow: 0 16px 35px -5px rgba(11, 19, 43, 0.15);
            list-style: none;
            z-index: 1000;
        }
        .nav-sub::before {
            content: "";
            position: absolute;
            top: -0.85rem;
            left: 0;
            right: 0;
            height: 0.85rem;
        }
        .nav-links > li.has-sub:hover .nav-sub,
        .nav-links > li.has-sub:focus-within .nav-sub,
        .nav-links > li.has-sub.open .nav-sub {
            display: block;
        }
        .nav-sub li {
            list-style: none;
            margin: 0;
        }
        .nav-sub a {
            display: block;
            padding: 0.65rem 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        .nav-sub a:hover, .nav-sub a:focus-visible {
            background: rgba(133, 20, 36, 0.08);
            color: var(--primary);
        }
        .nav-sub a::after {
            display: none !important;
        }

        /* The Barani Advantage Strip */
        .advantage-sec {
            background: #ffffff;
            padding: 3.5rem 1.5rem 3rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .adv-head {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2.25rem;
        }
        .adv-badge {
            display: inline-block;
            background: rgba(133, 20, 36, 0.08);
            color: var(--primary);
            font-weight: 800;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.35rem 0.95rem;
            border-radius: 999px;
            margin-bottom: 0.6rem;
        }
        .adv-head h2 {
            font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--secondary);
            line-height: 1.15;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }
        .adv-head p {
            color: #5c6b7d;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 980px) {
            .adv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 620px) {
            .adv-grid {
                grid-template-columns: 1fr;
            }
        }
        .adv-card {
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            position: relative;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 4px 18px rgba(11, 19, 43, 0.04);
        }
        .adv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 35px -10px rgba(11, 19, 43, 0.12);
            border-color: rgba(133, 20, 36, 0.3);
        }
        .adv-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .adv-ico-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--secondary);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(11, 19, 43, 0.15);
        }
        .adv-ico-wrap.accent-red { background: var(--primary); }
        .adv-ico-wrap.accent-green { background: #047857; }
        .adv-ico-wrap svg, .adv-ico-wrap .ic {
            width: 22px;
            height: 22px;
            stroke: #ffffff;
            fill: none;
        }
        .adv-pill {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 0.28rem 0.7rem;
            border-radius: 999px;
            background: rgba(133, 20, 36, 0.08);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .adv-pill.pill-green {
            background: rgba(16, 185, 129, 0.1);
            color: #047857;
        }
        .adv-pill.pill-gold {
            background: rgba(245, 158, 11, 0.12);
            color: #b45309;
        }
        .adv-content h3 {
            font-size: 1.12rem;
            color: var(--secondary);
            margin-bottom: 0.35rem;
            font-weight: 800;
            line-height: 1.3;
        }
        .adv-content p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }


/* === Video Facade Styles === */
.vfacade{position:relative;width:100%;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:12px;background:#111;cursor:pointer}
.vfacade img,.vfacade iframe,.vfacade .vfb{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover}
.vfacade .vplay{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:74px;height:74px;border-radius:50%;background:#851424;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,.45);transition:transform .2s}
.vfacade:hover .vplay{transform:translate(-50%,-50%) scale(1.08)}
.vfacade .vplay::after{content:"";margin-left:5px;border-style:solid;border-width:14px 0 14px 22px;border-color:transparent transparent transparent #fff}
.vfacade .vfb{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;text-align:center;padding:1.5rem;background:linear-gradient(135deg,#1D3557 0%,#0b1a2b 100%);color:#fff}
.vfacade .vfb strong{font-size:1.5rem;letter-spacing:.5px}
.vfacade .vfb span{font-size:.95rem;opacity:.85;max-width:480px}
.vfacade .vfb a{background:#851424;color:#fff;padding:.9rem 1.8rem;border-radius:30px;font-weight:800;text-decoration:none}


/* === UX Fixes === */
.path-card{position:relative}
        .path-cta{text-decoration:none;color:var(--primary);font-weight:700}
        .path-card,.otr-cat-card{cursor:pointer}
        .path-card:focus-within{outline:2px solid var(--primary);outline-offset:3px}
        .path-cta::after,.otr-cat-card .stretch-cta::after{content:"";position:absolute;inset:0;z-index:1}
        .otr-cat-card:hover{transform:translateY(-5px);box-shadow:0 14px 40px rgba(0,0,0,.14)}
        .otr-cat-card:focus-within{outline:2px solid var(--primary);outline-offset:3px}


/* === Facility Slider Styles === */
.fac-slider{position:relative;margin-top:2rem;overflow:hidden;border-radius:15px}
        .fac-track{display:flex;transition:transform .7s cubic-bezier(.22,.61,.36,1);will-change:transform}
        .fac-slide{flex:0 0 50%;padding:0 .75rem;box-sizing:border-box}
        .fac-card{position:relative;overflow:hidden;border-radius:15px;height:300px;box-shadow:0 10px 40px rgba(0,0,0,.3);background:#111}
        .fac-card img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.04);transition:transform 1.2s ease,filter .4s ease}
        .fac-card:hover img{transform:scale(1.1)}
        .fac-cap{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.85));padding:2rem 1.5rem 1.25rem;color:#fff;transform:translateY(8px);opacity:0;transition:transform .5s ease,opacity .5s ease}
        .fac-slide.is-active .fac-cap{transform:translateY(0);opacity:1}
        .fac-cap .fac-cap-t{display:block;font-family:'Bebas Neue',cursive;font-size:1.5rem;margin-bottom:.35rem;letter-spacing:.5px}
        .fac-cap p{font-size:.9rem;opacity:.9;margin:0}
        .fac-nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;border:none;background:rgba(255,255,255,.92);color:#0A0E27;font-size:1.35rem;line-height:1;cursor:pointer;z-index:3;box-shadow:0 6px 18px rgba(0,0,0,.35);transition:background .25s ease,transform .25s ease}
        .fac-nav:hover{background:var(--primary);color:#fff;transform:translateY(-50%) scale(1.08)}
        .fac-prev{left:16px}.fac-next{right:16px}
        .fac-dots{display:flex;justify-content:center;gap:.5rem;margin-top:1.25rem}
        .fac-dot{width:9px;height:9px;border-radius:50%;border:none;padding:0;background:rgba(255,255,255,.35);cursor:pointer;transition:background .3s ease,width .3s ease}
        .fac-dot.is-on{background:var(--primary);width:26px;border-radius:6px}
        @media (max-width:768px){.fac-slide{flex:0 0 100%;padding:0 .4rem}.fac-card{height:240px}.fac-nav{width:38px;height:38px}}
        @media (prefers-reduced-motion:reduce){.fac-track{transition:none}.fac-card img{transition:none;transform:none}}
    
/* === critical icon + nav + hero rules (inlined so a stale polish.css cannot break layout) === */
/* ---------- Icon system (SVG sprite, replaces emoji) ---------- */
.ic {
    width: 1em; height: 1em;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -0.14em; flex: 0 0 auto;
}
.ic-brand { fill: currentColor; stroke: none; }
.contact-icon .ic, .service-icon .ic, .feature-icon .ic { width: 1em; height: 1em; }
a .ic, button .ic, li .ic, p .ic, strong .ic { margin-right: 0.28em; }
.mbar a .ic { margin-right: 0; width: 1.2rem; height: 1.2rem; }

/* ---------- Navigation: grouped dropdown ---------- */
.nav-links { align-items: center; }
.nav-links > li { position: relative; list-style: none; }
.nav-sub-toggle {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: none; border: 0; cursor: pointer; padding: 0;
    font: inherit; font-size: 0.88rem; font-weight: 600;
    color: inherit; letter-spacing: inherit;
}
.nav-links > li.has-sub.active > .nav-sub-toggle,
.nav-links a.active { color: var(--primary); }
.ic-chev { width: 0.85em; height: 0.85em; transition: transform 0.2s ease; margin: 0; }
.nav-links > li.open .ic-chev { transform: rotate(180deg); }
.nav-sub {
    position: absolute; top: calc(100% + 0.85rem); left: -0.85rem;
    min-width: 230px; margin: 0; padding: 0.4rem;
    list-style: none; background: #fff;
    border: 1px solid rgba(10, 14, 39, 0.08); border-radius: 12px;
    box-shadow: 0 18px 40px -18px rgba(10, 14, 39, 0.45);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1200;
}
.nav-links > li.has-sub:hover .nav-sub,
.nav-links > li.has-sub:focus-within .nav-sub,
.nav-links > li.has-sub.open .nav-sub {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub::before { content: ""; position: absolute; top: -0.85rem; left: 0; right: 0; height: 0.85rem; }
.nav-sub a {
    display: block; padding: 0.6rem 0.75rem; border-radius: 8px;
    font-size: 0.9rem !important; color: var(--secondary); text-decoration: none;
}
.nav-sub a:hover, .nav-sub a:focus-visible { background: #F1FAEE; color: var(--primary); }
.nav-sub a::after { display: none !important; }

/* Mobile menu groups */
.mobile-menu .mm-head {
    margin: 0.9rem 0 0.1rem; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 1.2px; text-transform: uppercase; color: #8892a6;
}
.mobile-menu .mm-head:first-child { margin-top: 0.2rem; }
.mobile-menu a.active { color: var(--primary); }

/* ---------- Hero legibility on the blue gradient ---------- */
.hero .stat-card { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.34); }
.hero .stat-number { color: #FFD700; }
.hero .stat-label { color: rgba(255, 255, 255, 0.95); font-weight: 600; }
.hero .hero-seg { color: #FFD700; }
.hero.hero-solo .hero-content { grid-template-columns: 1fr !important; max-width: 860px; }
.hero.hero-solo .hero-text p { color: rgba(255, 255, 255, 0.95); }

/* ---------- One floating CTA only (mobile bar covers small screens) ---------- */
@media (max-width: 768px) {
    .float-stack { display: none !important; }
}

/* ---------- Internal link strip ---------- */
.ilinks { background: #F1FAEE; }
.ilinks-in { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sec-pad-x); }
.ilinks-in h2 { font-size: 1.15rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--secondary); }
.ilinks-in ul { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.ilinks-in li { margin: 0; }
.ilinks-in a {
    display: inline-block; background: #fff; border: 1px solid rgba(29, 53, 87, 0.18);
    border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600;
    color: var(--secondary); text-decoration: none;
}
.ilinks-in a:hover { border-color: var(--primary); color: var(--primary); }

/* Internal link strip must stay legible on dark-themed product pages too */
section.ilinks { background: #F1FAEE !important; }
section.ilinks .ilinks-in h2 { color: #1D3557 !important; }
section.ilinks .ilinks-in a { color: #1D3557 !important; background: #fff !important; }
section.ilinks .ilinks-in a:hover { color: #851424 !important; }


/* === POLISH & COMPONENT SYSTEM INTEGRATION === */
/* Barani Enterprises - global layout polish
   Purpose: consistent section rhythm, no orphan grid rows / blank tracks,
   balanced card widths and aligned card content across every page. */

html:root, :root {
    --sec-pad-y: 3.5rem;
    --sec-pad-x: 1.5rem;
    --wrap: 1200px;

    /* === LUXURY PERFORMANCE AUTOMOTIVE PALETTE === */
    --primary: #851424;                  /* Executive Deep Bordeaux / Garnet */
    --primary-hover: #9E1F32;            /* Controlled Rich Crimson */
    --primary-dark: #5C0D19;             /* Deep Velocity Wine */
    --primary-tint: rgba(133, 20, 36, 0.08); /* Subtle Bordeaux Wash */
    --primary-glow: rgba(133, 20, 36, 0.20);

    --secondary: #0B132B;                /* Obsidian Midnight Slate */
    --secondary-hover: #1C2541;          /* Deep Carbon Slate */
    --secondary-light: #2C3E5A;          /* Muted Blue-Grey Accent */
    
    --accent: #F8FAFC;                   /* Ultra-clean Ice White */
    --accent-gold: #F59E0B;              /* Prestige 24K Gold Accent */
    --accent-gold-light: #FEF3C7;        /* Gold badge wash */
    --accent-gold-glow: 0 0 16px rgba(245, 158, 11, 0.35);

    --dark: #070B14;                     /* Deep Charcoal / Space Black */
    --light: #F8FAFC;                    /* Crisp Porcelain */
    
    --surface-card: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --surface-ground: #F8FAFC;
    --border-color: #E2E8F0;
    --border-subtle: #F1F5F9;
    --border-highlight: rgba(133, 20, 36, 0.20);

    /* Text */
    --text-primary: #0B132B;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* Gradients */
    --gradient: linear-gradient(135deg, #0B132B 0%, #1C2541 60%, #0B132B 100%);
    --gradient-hero: radial-gradient(ellipse at 80% 20%, rgba(133, 20, 36, 0.15) 0%, transparent 55%), radial-gradient(ellipse at 15% 85%, rgba(44, 62, 90, 0.35) 0%, transparent 60%), linear-gradient(135deg, #070B14 0%, #0B132B 50%, #152238 100%);
    --gradient-brand: linear-gradient(135deg, #851424 0%, #9E1F32 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);

    /* Shadows */
    --shadow-subtle: 0 2px 10px rgba(11, 19, 43, 0.04);
    --shadow-card: 0 10px 30px -10px rgba(11, 19, 43, 0.08), 0 4px 6px -2px rgba(11, 19, 43, 0.03);
    --shadow-hover: 0 20px 40px -12px rgba(11, 19, 43, 0.14), 0 8px 16px -4px rgba(133, 20, 36, 0.12);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; background-color: var(--surface-ground); color: var(--text-primary); }

/* ---------- Section rhythm ---------- */
section { padding-top: var(--sec-pad-y) !important; padding-bottom: var(--sec-pad-y) !important; }
section[id] { scroll-margin-top: 90px; }
section > .container,
section > div { margin-left: auto; margin-right: auto; }
section:last-of-type { padding-bottom: var(--sec-pad-y) !important; }

/* Heroes keep a slightly larger top rhythm but never a fixed viewport height */
.hero, .phero, .hero-service { min-height: auto !important; padding-top: 3.75rem !important; padding-bottom: 3rem !important; }

/* Kill stray large vertical margins that create blank bands */
h1, h2, h3 { margin-top: 0; }
h2 { margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }
.section-header, .sec-head, .shead { margin-bottom: 2.25rem !important; }

/* ---------- Grids -> centered wrapping flex (removes orphan blank tracks) ---------- */
.card-grid, .service-grid, .branch-grid, .why-grid, .cat-grid,
.steps, .tgrid, .services-grid, .locations-grid, .features-grid,
.gallery-grid, .flex-grid, .footer-content {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: var(--wrap);
    margin-left: auto;
    margin-right: auto;
}

.card-grid > *      { flex: 1 1 260px; max-width: 340px; }
.service-grid > *   { flex: 1 1 300px; max-width: 380px; }
.branch-grid > *    { flex: 1 1 210px; max-width: 300px; }
.why-grid > *       { flex: 1 1 290px; max-width: 360px; }
.cat-grid > *       { flex: 1 1 300px; max-width: 380px; }
.steps > *          { flex: 1 1 230px; max-width: 300px; }
.tgrid > *          { flex: 1 1 300px; max-width: 360px; }
.services-grid > *  { flex: 1 1 300px; max-width: 380px; }
.locations-grid > * { flex: 1 1 300px; max-width: 380px; }
.features-grid > *  { flex: 1 1 320px; max-width: 400px; }
.gallery-grid > *   { flex: 1 1 420px; max-width: 620px; }
.flex-grid > *      { flex: 1 1 280px; max-width: 380px; }

/* Inline auto-fit grids inside content blocks */
section div[style*="auto-fit"], section div[style*="auto-fill"] {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
section div[style*="auto-fit"] > *, section div[style*="auto-fill"] > * {
    flex: 1 1 260px;
    max-width: 380px;
}

/* Cards: even heights, content aligned to top, actions pinned to bottom */
.card-grid > *, .service-grid > *, .why-grid > *, .cat-grid > *,
.services-grid > *, .locations-grid > *, .features-grid > * {
    display: flex;
    flex-direction: column;
}
.card-grid > * > :last-child,
.locations-grid > * > :last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer-content { align-items: flex-start; gap: 2rem !important; text-align: left; justify-content: space-between; max-width: 1200px; }
.footer-content > * { flex: 1 1 200px; max-width: 300px; }
footer { padding-top: 3rem !important; padding-bottom: 1.5rem !important; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-list > * + * { margin-top: 0.75rem; }

/* ---------- Media / chips ---------- */
img, iframe, video { max-width: 100%; }
.chips, .chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
    :root { --sec-pad-y: 3rem; }
    .gallery-grid > * { flex: 1 1 320px; max-width: 520px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    :root { --sec-pad-y: 2.5rem; --sec-pad-x: 1.1rem; }
    section { padding-left: var(--sec-pad-x) !important; padding-right: var(--sec-pad-x) !important; }
    .hero, .phero, .hero-service { padding: 2.75rem 1.1rem 2.25rem !important; }
    h1 { font-size: clamp(1.6rem, 7vw, 2.1rem) !important; line-height: 1.2 !important; }
    h2 { font-size: clamp(1.35rem, 5.6vw, 1.7rem) !important; line-height: 1.25 !important; }
    h3 { font-size: 1.1rem !important; }
    p, li { font-size: 0.95rem; line-height: 1.6; }
    .card-grid, .service-grid, .branch-grid, .why-grid, .cat-grid,
    .steps, .tgrid, .services-grid, .locations-grid, .features-grid,
    .gallery-grid, .flex-grid, .footer-content { gap: 1rem !important; }
    .card-grid > *, .service-grid > *, .branch-grid > *, .why-grid > *,
    .cat-grid > *, .steps > *, .tgrid > *, .services-grid > *,
    .locations-grid > *, .features-grid > *, .gallery-grid > *,
    .flex-grid > *, .footer-content > *,
    section div[style*="auto-fit"] > *, section div[style*="auto-fill"] > * {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .footer-content { text-align: center; }
    .footer-content > * { max-width: 100%; }
    .section-header, .sec-head, .shead { margin-bottom: 1.5rem !important; }
    /* keep floating buttons clear of content */
    body { padding-bottom: 0; }
}

/* ---------- Navigation ---------- */
nav { gap: 1rem; }
.nav-links { gap: 1rem !important; flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; font-size: 0.88rem !important; }
@media (max-width: 1150px) {
    .nav-links { display: none !important; }
    #menuBtn { display: block !important; }
}
.mobile-menu a { padding: 0.7rem 0 !important; }
@media (max-width: 600px) {
    header nav { padding: 0.75rem 1rem !important; }
    .logo img { height: 38px !important; width: 38px !important; }
    .logo span { font-size: 1.2rem !important; letter-spacing: 1px !important; }
    header .cta-button { display: none !important; }
}

/* ---------- Hero balance ---------- */
.hero-content, .hero > .container { align-items: center; }
.hero { padding-bottom: 2.5rem !important; }
.hero-stats { margin-bottom: 0 !important; }

/* ---------- Mobile overflow guards ---------- */
@media (max-width: 768px) {
    .hero-content, .contact-container, .hero > div { max-width: 100%; }
    .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 0.6rem !important; }
    .hero-stats > * { min-width: 0; padding: 0.75rem 0.4rem !important; }
    .stat-number { font-size: 1.5rem !important; }
    .hero-stats .stat-label, .hero-stats > * > :last-child { font-size: 0.68rem !important; letter-spacing: 0.5px; line-height: 1.3; }
    .hero-text h1 { font-size: clamp(1.6rem, 7vw, 2.1rem) !important; }
    section > *, .hero-content > * { min-width: 0; }
    [style*="grid-template-columns:repeat(2,1fr)"], [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }
    .btn-group, .hero-buttons { flex-wrap: wrap; justify-content: center; }
}

/* ---------- Tables ---------- */
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 0.6rem 0.9rem; vertical-align: middle; }
table th:last-child, table td:last-child { text-align: right; white-space: nowrap; }
.table-wrap, .table-scroll { overflow-x: auto; }
@media (max-width: 640px) {
    table th, table td { padding: 0.5rem 0.55rem; font-size: 0.85rem; }
}

/* ---------- Sticky mobile action bar ---------- */
.mbar { display: none; }
@media (max-width: 768px) {
    .mbar {
        display: flex !important;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
        background: #0A0E27; border-top: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 -6px 20px rgba(0,0,0,.25);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mbar a {
        flex: 1 1 0;
        min-width: 0;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 2px; padding: .55rem .15rem; min-height: 54px;
        color: #fff; text-decoration: none; font-weight: 700; font-size: .72rem;
        border-right: 1px solid rgba(255,255,255,.12);
        white-space: nowrap;
    }
    .mbar a:last-child { border-right: 0; }
    .mbar a span { font-size: 1.15rem; line-height: 1; }
    .mbar-wa { background: #25D366; color: #062e17 !important; }
    body { padding-bottom: 62px !important; }
    /* floating stack must clear the bar */
    .float-stack { bottom: 74px !important; }
    /* mobile simplicity: no motion */
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    * { animation: none !important; transition-duration: .15s !important; }
}

/* ---------- Product price & availability block ---------- */
.enq-sec { background: linear-gradient(135deg,#0A0E27 0%,#1D3557 100%); padding: 2.5rem 1.5rem; }
.enq-in { max-width: 1000px; margin: 0 auto; }
.enq-in h2 { color: #fff; font-size: 2rem; margin-bottom: 1.25rem; }
.enq-facts { display: flex; flex-wrap: wrap; gap: .75rem; margin: 0 0 1rem; }
.enq-facts > div { flex: 1 1 220px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: .85rem 1rem; }
.enq-facts dt { color: #FFD700; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; margin-bottom: .25rem; }
.enq-facts dd { color: #fff; margin: 0; font-size: .98rem; font-weight: 600; }
.enq-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.enq-chip { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: .82rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.enq-btns { display: flex; flex-wrap: wrap; gap: .7rem; }
.enq-wa, .enq-bulk, .enq-call { text-decoration: none; font-weight: 800; padding: .95rem 1.5rem; border-radius: 10px; font-size: 1rem; }
.enq-wa { background: #25D366; color: #062e17; }
.enq-bulk { background: #fff; color: #0A0E27; }
.enq-call { background: transparent; border: 2px solid #fff; color: #fff; }
@media (max-width: 640px) {
    .enq-in h2 { font-size: 1.5rem; }
    .enq-wa, .enq-bulk, .enq-call { flex: 1 1 100%; text-align: center; }
}

/* ---------- Icon system (SVG sprite, replaces emoji) ---------- */
.ic {
    width: 1em; height: 1em;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -0.14em; flex: 0 0 auto;
}
.ic-brand { fill: currentColor; stroke: none; }
.contact-icon .ic, .service-icon .ic, .feature-icon .ic { width: 1em; height: 1em; }
a .ic, button .ic, li .ic, p .ic, strong .ic { margin-right: 0.28em; }
.mbar a .ic { margin-right: 0; width: 1.2rem; height: 1.2rem; }

/* ---------- Navigation: grouped dropdown ---------- */
.nav-links { align-items: center; }
.nav-links > li { position: relative; list-style: none; }
.nav-sub-toggle {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: none; border: 0; cursor: pointer; padding: 0;
    font: inherit; font-size: 0.88rem; font-weight: 600;
    color: inherit; letter-spacing: inherit;
}
.nav-links > li.has-sub.active > .nav-sub-toggle,
.nav-links a.active { color: var(--primary); }
.ic-chev { width: 0.85em; height: 0.85em; transition: transform 0.2s ease; margin: 0; }
.nav-links > li.open .ic-chev { transform: rotate(180deg); }
.nav-sub {
    position: absolute; top: calc(100% + 0.85rem); left: -0.85rem;
    min-width: 230px; margin: 0; padding: 0.4rem;
    list-style: none; background: #fff;
    border: 1px solid rgba(10, 14, 39, 0.08); border-radius: 12px;
    box-shadow: 0 18px 40px -18px rgba(10, 14, 39, 0.45);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1200;
}
.nav-links > li.has-sub:hover .nav-sub,
.nav-links > li.has-sub:focus-within .nav-sub,
.nav-links > li.has-sub.open .nav-sub {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub::before { content: ""; position: absolute; top: -0.85rem; left: 0; right: 0; height: 0.85rem; }
.nav-sub a {
    display: block; padding: 0.6rem 0.75rem; border-radius: 8px;
    font-size: 0.9rem !important; color: var(--secondary); text-decoration: none;
}
.nav-sub a:hover, .nav-sub a:focus-visible { background: #F1FAEE; color: var(--primary); }
.nav-sub a::after { display: none !important; }

/* Mobile menu groups */
.mobile-menu .mm-head {
    margin: 0.9rem 0 0.1rem; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 1.2px; text-transform: uppercase; color: #8892a6;
}
.mobile-menu .mm-head:first-child { margin-top: 0.2rem; }
.mobile-menu a.active { color: var(--primary); }

/* ---------- Hero legibility on the blue gradient ---------- */
.hero .stat-card { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.34); }
.hero .stat-number { color: #FFD700; }
.hero .stat-label { color: rgba(255, 255, 255, 0.95); font-weight: 600; }
.hero .hero-seg { color: #FFD700; }
.hero.hero-solo .hero-content { grid-template-columns: 1fr !important; max-width: 860px; }
.hero.hero-solo .hero-text p { color: rgba(255, 255, 255, 0.95); }

/* ---------- One floating CTA only (mobile bar covers small screens) ---------- */
@media (max-width: 768px) {
    .float-stack { display: none !important; }
}

/* ---------- Internal link strip ---------- */
.ilinks { background: #F1FAEE; }
.ilinks-in { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sec-pad-x); }
.ilinks-in h2 { font-size: 1.15rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--secondary); }
.ilinks-in ul { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.ilinks-in li { margin: 0; }
.ilinks-in a {
    display: inline-block; background: #fff; border: 1px solid rgba(29, 53, 87, 0.18);
    border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600;
    color: var(--secondary); text-decoration: none;
}
.ilinks-in a:hover { border-color: var(--primary); color: var(--primary); }

/* Internal link strip must stay legible on dark-themed product pages too */
section.ilinks { background: #F1FAEE !important; }
section.ilinks .ilinks-in h2 { color: #1D3557 !important; }
section.ilinks .ilinks-in a { color: #1D3557 !important; background: #fff !important; }
section.ilinks .ilinks-in a:hover { color: #851424 !important; }

/* ---------- 1. Real-time Branch Status Badge & Indicator ---------- */
.branch-live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1b4332;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.dot-open {
    background: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.25);
    animation: pulseDot 2s infinite;
}
.dot-closed {
    background: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.2);
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ---------- 2. GPS Nearest Branch Locator Widget ---------- */
.branch-locator-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 12px 35px rgba(10, 14, 39, 0.08);
    border: 1.5px solid rgba(29, 53, 87, 0.12);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.locator-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
}
.btn-detect-geo {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}
.btn-detect-geo:hover {
    background: #9E1F32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 20, 36, 0.28);
}
.geo-select {
    padding: 0.85rem 1.2rem;
    border-radius: 30px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--secondary);
    min-width: 250px;
    cursor: pointer;
}
.geo-select:focus {
    outline: none;
    border-color: var(--primary);
}
.nearest-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 14px;
    background: #f0f7ff;
    border: 1.5px solid #bee3f8;
    text-align: left;
    animation: fadeInLoc 0.3s ease-out;
}
@keyframes fadeInLoc {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.nb-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.nb-tag {
    background: var(--secondary);
    color: #ffffff;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nb-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0.2rem 0;
    line-height: 1.2;
}
.nb-addr {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.nb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.nb-map {
    background: var(--primary);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s;
}
.nb-map:hover { background: #9E1F32; }
.nb-call {
    background: var(--secondary);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.nb-page {
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ---------- 3. "The Barani Advantage" Value Offers Strip ---------- */
.advantage-sec {
    background: #ffffff;
    padding: 3rem 1.5rem 2.5rem;
    border-bottom: 1px solid #e9ecef;
}
.adv-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.adv-badge {
    display: inline-block;
    background: var(--primary-tint);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}
.adv-head h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.adv-head p {
    color: #5c6b7d;
    font-size: 1.05rem;
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 980px) {
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }
}
.adv-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 18px rgba(11, 19, 43, 0.04);
}
.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px -10px rgba(11, 19, 43, 0.12);
    border-color: rgba(133, 20, 36, 0.3);
}
.adv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.adv-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.adv-pill.pill-green {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}
.adv-pill.pill-gold {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
.adv-ico-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.adv-ico-wrap.accent-red { background: var(--primary); }
.adv-ico-wrap.accent-green { background: #047857; }
.adv-content h3 {
    font-size: 1.12rem;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    font-weight: 800;
    line-height: 1.3;
}
.adv-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Modern Service Spec Cards ---------- */
.service-card-spec {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.05);
}
.service-card-spec:hover {
    transform: translateY(-6px);
    border-color: rgba(133, 20, 36, 0.35);
    box-shadow: 0 18px 40px -12px rgba(11, 19, 43, 0.14);
}
.spec-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.spec-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.spec-card-title h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.65rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    line-height: 1.15;
}
.spec-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}
.spec-chip {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: #f1f5f9;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.spec-chip.chip-accent {
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    font-weight: 800;
}
.spec-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.spec-bullets li {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.spec-bullets li svg {
    width: 16px;
    height: 16px;
    color: #047857;
    flex-shrink: 0;
    margin-top: 2px;
}
.spec-card-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.spec-rate-box {
    display: flex;
    flex-direction: column;
}
.spec-rate-label {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.spec-rate-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
}
.spec-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-brand);
    color: #ffffff !important;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 10px rgba(133, 20, 36, 0.2);
}
.spec-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(133, 20, 36, 0.32);
}

/* ---------- 4. Google Reviews & Social Proof Section ---------- */
.reviews-sec {
    background: #fdfbf7;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid #f0eae1;
    border-bottom: 1px solid #f0eae1;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}
.rev-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.rev-score-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1.5px solid #e8dfd8;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.rev-stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: 2px; }
.rev-rating-num { font-weight: 800; font-size: 1.1rem; color: #1e293b; }
.rev-count { color: #64748b; font-size: 0.88rem; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.rev-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid #f1e9e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rev-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}
.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.rev-user-name { font-weight: 700; color: var(--secondary); font-size: 0.95rem; }
.rev-user-tag { font-size: 0.78rem; color: #64748b; display: block; }
.rev-quote {
    color: #334155;
    font-size: 0.93rem;
    line-height: 1.55;
    font-style: italic;
    margin: 0.5rem 0 1rem;
    flex-grow: 1;
}
.rev-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 0.75rem;
    font-size: 0.78rem;
    color: #8c98a9;
}
.rev-badge-google {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1d4ed8;
    font-weight: 600;
}

/* ---------- 5. Highway Emergency Breakdown & Tamil Support Bar ---------- */
.sos-strip {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
    color: #ffffff;
    padding: 2.5rem 1.5rem;
    border-top: 4px solid #ef4444;
}
.sos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.sos-badge-tag {
    background: #ef4444;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.4rem;
}
.sos-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.4rem;
    color: #ffffff;
}
.sos-desc {
    color: #fecaca;
    font-size: 0.98rem;
    max-width: 650px;
    margin: 0;
}
.sos-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.btn-sos-call {
    background: #ffffff;
    color: #991b1b;
    padding: 0.85rem 1.6rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}
.btn-sos-call:hover { transform: translateY(-2px); }
.btn-sos-wa {
    background: #25D366;
    color: #ffffff;
    padding: 0.85rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-tamil-help {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    padding: 0.65rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-tamil-help:hover { background: rgba(255,255,255,0.25); }

/* ---------- 6. Luxury Header & Top Trust Marquee Ticker ---------- */
.top-ribbon {
    background: #070B14;
    color: #cbd5e1;
    font-size: 0.78rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
    overflow: hidden;
    white-space: nowrap;
}
.top-marquee-wrap {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}
.marquee-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: ribbonMarquee 34s linear infinite;
    will-change: transform;
}
.top-marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
    flex-shrink: 0;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #cbd5e1;
}
.marquee-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}
.marquee-wa {
    color: #4ade80 !important;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}
.marquee-wa:hover {
    color: #86efac !important;
}
.ribbon-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 0.18rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.ribbon-phone {
    color: #fca5a5;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}
.ribbon-phone:hover { color: #ffffff; }

@keyframes ribbonMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        overflow-x: auto;
    }
}

header {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 20px -4px rgba(11, 19, 43, 0.06) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}
.cta-button {
    background: var(--gradient-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16) !important;
    border-radius: 30px !important;
    padding: 0.6rem 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
}
.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(133, 20, 36, 0.28) !important;
}

/* ---------- 7. Cinematic Hero Elevation ---------- */
.hero {
    background: radial-gradient(ellipse at 80% 20%, rgba(133, 20, 36, 0.15) 0%, transparent 55%), radial-gradient(ellipse at 15% 85%, rgba(44, 62, 90, 0.35) 0%, transparent 60%), linear-gradient(135deg, #070B14 0%, #0B132B 50%, #152238 100%) !important;
    position: relative;
}
.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.4rem, 5vw, 4rem) !important;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFFFFF 50%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05 !important;
    margin-bottom: 0.6rem !important;
}
.hero-award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    color: #f1f5f9;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}
.hero-award-badge .badge-star {
    color: #fbbf24;
    font-weight: 800;
}
.hero .stat-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(12px) !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}
.hero .stat-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
}
.hero .stat-number {
    color: #F59E0B !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
}
.btn-primary {
    background: var(--gradient-brand) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 0.85rem 1.8rem !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(133, 20, 36, 0.32) !important;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 30px !important;
    padding: 0.85rem 1.6rem !important;
    font-weight: 700 !important;
    backdrop-filter: blur(10px) !important;
    transition: background 0.25s, transform 0.25s !important;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-3px) !important;
}

/* ---------- 8. Interactive Wheel Alignment Diagnostic Component ---------- */
.align-diag-sec {
    background: #ffffff;
    padding: 4.5rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.diag-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.diag-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.diag-badge {
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.74rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.diag-head h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}
.diag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.diag-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 18px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.diag-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.diag-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(133, 20, 36, 0.25);
    box-shadow: var(--shadow-hover);
}
.diag-card:hover::before { opacity: 1; }
.diag-symptom-tag {
    display: inline-block;
    background: #FEE2E2;
    color: #991B1B;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}
.diag-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.diag-desc {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}
.diag-fix {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed #cbd5e1;
    font-size: 0.86rem;
    color: #047857;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

/* ---------- 9. Floating Bottom Action Dock ---------- */
.mbar {
    display: flex !important;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
    background: rgba(11, 19, 43, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3) !important;
    padding-bottom: env(safe-area-inset-bottom);
}
.mbar a {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    transition: color 0.2s !important;
    padding: 0.55rem 0.1rem;
    white-space: nowrap;
}
.mbar a:hover, .mbar a:focus {
    color: #F59E0B !important;
}
.mbar-wa {
    background: rgba(37, 211, 102, 0.18) !important;
    border-radius: 8px;
    color: #4ade80 !important;
}

/* Floating WhatsApp Button - Always 100% visible, placed safely above bottom bars */
.float-stack, .whatsapp-float {
    position: fixed !important;
    right: 24px !important;
    bottom: 84px !important;
    z-index: 10005 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.float-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25D366 !important;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45) !important;
    text-decoration: none !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
    position: relative !important;
}
.float-btn:hover {
    transform: scale(1.08) translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6) !important;
}
.float-btn svg {
    width: 32px !important;
    height: 32px !important;
    fill: #ffffff !important;
}
@media (max-width: 768px) {
    .float-stack, .whatsapp-float {
        right: 16px !important;
        bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .float-btn {
        width: 52px !important;
        height: 52px !important;
    }
    .float-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ============================================================
   10. Smart Tyre Studio (Option B): Package Estimator & Health
   ============================================================ */
.sts-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 5px solid var(--primary);
    box-shadow: 0 20px 50px -10px rgba(11, 19, 43, 0.08);
    overflow: hidden;
}

.sts-health-only {
    max-width: 1080px;
    padding: 0;
}

.sts-health-header {
    padding: 2.25rem 2.5rem 1.4rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.sts-health-header h3 {
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    font-weight: 800;
    color: var(--secondary);
    margin: 0.5rem 0 0.5rem;
    letter-spacing: -0.3px;
}

.sts-health-header p {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
}

.sts-mini-badge {
    display: inline-block;
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
    border: 1px solid rgba(133, 20, 36, 0.15);
}

/* Segmented Tab Bar */
.sts-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
}
.sts-tab-btn {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    font-family: inherit;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.sts-tab-btn:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.6);
}
.sts-tab-btn.active {
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.sts-tab-ic {
    font-size: 1.2rem;
}

/* Tab Panels */
.sts-pane {
    display: none;
    padding: 2.25rem;
    animation: stsFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sts-pane.active {
    display: block;
}
@keyframes stsFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2-Column Responsive Layout with Generous Inner Padding */
.sts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: stretch;
    padding: 2.25rem 2.5rem 2.5rem;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .sts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 1.25rem 2rem;
    }
    .sts-pane {
        padding: 1.5rem;
    }
    .sts-tab-btn {
        font-size: 0.88rem;
        padding: 0.75rem 0.5rem;
    }
}

/* Field Controls & Alignment */
.sts-field {
    margin-bottom: 1.75rem;
}
.sts-field:last-child {
    margin-bottom: 0;
}
.sts-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 0.65rem 0;
}
.sts-field-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}
.sts-field-head .sts-label {
    margin-bottom: 0;
}
.sts-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(133, 20, 36, 0.1);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    flex-shrink: 0;
}
.sts-live-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.8px;
    background: rgba(133, 20, 36, 0.06);
    padding: 0.2rem 0.65rem;
    border-radius: 8px;
}

/* Category Chips */
.sts-cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.sts-cat-chip {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}
.sts-cat-chip:hover {
    border-color: #cbd5e1;
    background: #e2e8f0;
}
.sts-cat-chip.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(133, 20, 36, 0.25);
}

/* Select Dropdown */
.sts-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    background: #ffffff;
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.sts-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(133, 20, 36, 0.12);
}

/* Quantity Button Group */
.sts-qty-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.sts-qty-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.85rem 0.5rem;
    text-align: center;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s ease;
}
.sts-qty-btn:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}
.sts-qty-btn.active {
    border-color: var(--primary);
    background: rgba(133, 20, 36, 0.04);
    box-shadow: 0 6px 18px rgba(133, 20, 36, 0.10);
}
.sts-q-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
    line-height: 1;
}
.sts-qty-btn.active .sts-q-num {
    color: var(--primary);
}
.sts-q-sub {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 700;
    margin-top: 0.2rem;
}
.sts-qty-tag {
    position: absolute;
    top: -9px;
    background: #047857;
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(4, 120, 87, 0.3);
    white-space: nowrap;
}

/* Summary Card (Right Side) */
.sts-summary-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.sts-sum-head {
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}
.sts-sum-badge {
    display: inline-block;
    background: rgba(133, 20, 36, 0.08);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.sts-sum-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    color: var(--secondary);
    line-height: 1.1;
    margin: 0 0 0.3rem;
}
.sts-sum-size {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.35rem;
}
.sts-sum-pat {
    font-size: 0.88rem;
    color: #047857;
    font-weight: 700;
}

/* Price Bracket */
.sts-price-bracket {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.1rem;
    margin-bottom: 1.25rem;
}
.sts-price-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 0.25rem;
}
.sts-price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.5px;
}
.sts-price-note {
    font-size: 0.76rem;
    color: #64748b;
    margin-top: 0.35rem;
}

/* Perks List */
.sts-perks-box {
    margin-bottom: 1.5rem;
}
.sts-perks-title {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}
.sts-perks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.sts-perks-list li {
    font-size: 0.86rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.sts-perks-list li .ic {
    width: 1.05rem;
    height: 1.05rem;
    color: #047857;
    flex-shrink: 0;
}
.sts-perk-saved {
    font-size: 0.76rem;
    font-weight: 700;
    color: #047857;
    margin-left: auto;
}
.sts-highlight-perk {
    background: rgba(4, 120, 87, 0.08);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-weight: 700;
    color: #065f46 !important;
}
.sts-locked-perk {
    font-size: 0.82rem;
    color: #94a3b8 !important;
    background: #f1f5f9;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}
.sts-lock-icon {
    font-size: 0.85rem;
    margin-right: 0.2rem;
}
.sts-total-saved {
    padding-top: 0.65rem;
    border-top: 1px dashed #cbd5e1;
    font-size: 0.88rem;
    color: var(--secondary);
}
.sts-total-saved strong {
    color: #047857;
    font-size: 1rem;
}

/* WhatsApp CTA */
.sts-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.95rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.sts-wa-btn:hover {
    background: #1eb857;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}
.sts-disc {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin: 0.75rem 0 0;
    line-height: 1.4;
}

/* Range Slider */
.sts-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    margin: 0.75rem 0 0.35rem;
}
.sts-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(133, 20, 36, 0.4);
    border: 3px solid #ffffff;
    transition: transform 0.15s ease;
}
.sts-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.sts-range-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Tile Buttons (Health age & tread) */
.sts-btn-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}
.sts-btn-tiles.tiles-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
    .sts-btn-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .sts-btn-tiles.tiles-3 {
        grid-template-columns: 1fr;
    }
}
.sts-tile-btn {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 0.6rem;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.2s ease;
}
.sts-tile-btn:hover {
    border-color: #94a3b8;
}
.sts-tile-btn.active {
    border-color: var(--primary);
    background: rgba(133, 20, 36, 0.04);
}
.sts-tile-btn strong {
    font-size: 0.88rem;
    color: var(--secondary);
    display: block;
}
.sts-tile-btn span {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 0.2rem;
}
.sts-tread-badge {
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

/* Health Gauge & Output */
.sts-col-summary {
    display: flex;
    flex-direction: column;
}
@media (min-width: 901px) {
    .sts-col-summary {
        position: sticky;
        top: 95px;
        align-self: start;
    }
}
.sts-health-card {
    text-align: center;
    align-items: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.85rem 1.6rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
    width: 100%;
}
.sts-dial-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0.5rem auto 1rem;
}
.sts-dial-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.sts-dial-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 10;
}
.sts-dial-meter {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
}
.sts-dial-meter.health-safe { stroke: #047857; }
.sts-dial-meter.health-caution { stroke: #d97706; }
.sts-dial-meter.health-danger { stroke: #991b1b; }

.sts-dial-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sts-dial-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
}
.sts-dial-score.health-safe { color: #047857; }
.sts-dial-score.health-caution { color: #d97706; }
.sts-dial-score.health-danger { color: #991b1b; }
.sts-dial-caption {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
}

.sts-verdict-tag {
    display: inline-block;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.sts-verdict-tag.health-safe { background: #d1fae5; color: #065f46; }
.sts-verdict-tag.health-caution { background: #fef3c7; color: #92400e; }
.sts-verdict-tag.health-danger { background: #fee2e2; color: #991b1b; }

.sts-health-metrics {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem;
    margin-bottom: 1.1rem;
}
.sts-metric-label {
    display: block;
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}
.sts-metric-val {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 800;
    display: block;
    margin-top: 0.2rem;
}

.sts-health-advice {
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem;
    margin-bottom: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}
.sts-advice-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.sts-health-advice p {
    font-size: 0.84rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.sts-bridge-btn {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    border: 0;
    padding: 0.9rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.92rem;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(133, 20, 36, 0.28);
    transition: all 0.25s ease;
}
.sts-bridge-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(133, 20, 36, 0.38);
}



/* ---------- Sticky Header Scroll Offset Guard ---------- */
section[id], #reviews, #locations, #services, #contact, #tyre-finder-section, #tyre-health-section {
    scroll-margin-top: 130px !important;
}

/* Fail-safe avatar & review card styles */
.rev-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}
.reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
}
.rev-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 1.6rem !important;
    border: 1px solid #f1e9e0 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.rev-meta {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    margin-bottom: 0.9rem !important;
}
.reviews-sec {
    background: #fdfbf7 !important;
    padding: 4.5rem 1.5rem !important;
    border-top: 1px solid #f0eae1 !important;
    border-bottom: 1px solid #f0eae1 !important;
}


/* Card and Module Title Classes (converted from H3 for SEO heading balance) */
.adv-card-title {
    font-size: 1.12rem !important;
    color: var(--secondary) !important;
    margin-bottom: 0.35rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}
.diag-title {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 1.35rem !important;
    color: var(--secondary) !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 0.5px !important;
}
.cat-title, .branch-title, .otr-cat-title, .faq-question-title, .form-title {
    font-family: 'Bebas Neue', cursive !important;
    letter-spacing: 0.5px !important;
}
