 /* --- ROOT VARIABLES --- */
 :root {
     --primary: #0056b3;
     /* Trusted Blue */
     --primary-dark: #004494;
     --accent: #FF9800;
     /* Attention Orange */
     --whatsapp: #25D366;
     --dark: #2c3e50;
     --light: #f8f9fa;
     --white: #ffffff;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     --radius: 12px;
     --trans: all 0.3s ease;
 }

 /* --- RESET & BASE --- */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     outline: none;
 }

 html {
     scroll-behavior: smooth;
 }

 html,
 body {
     overflow-x: hidden;
 }

 /* Fix horizontal scrollbar globally */
 body {
     font-family: 'Poppins', sans-serif;
     background: var(--light);
     color: var(--dark);
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--trans);
 }

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

 ul {
     list-style: none;
 }

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

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

 .grid {
     display: grid;
     gap: 20px;
 }

 .text-center {
     text-align: center;
 }

 .hidden {
     display: none;
 }

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

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

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

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

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

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

 .anim-up {
     animation: fadeUp 0.8s ease forwards;
 }

 /* --- BUTTONS --- */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     border: none;
     gap: 8px;
     transition: var(--trans);
     font-size: 14px;
     text-transform: uppercase;
 }

 .btn-primary {
     background: var(--primary);
     color: white;
     box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
 }

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

 .btn-accent {
     background: var(--accent);
     color: white;
     box-shadow: none;
     /* Removed yellow shadow */
 }

 .btn-accent:hover {
     background: #e68900;
     transform: translateY(-2px);
 }

 .btn-whatsapp {
     background: var(--whatsapp);
     color: white;
 }

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

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

 /* --- HEADER --- */
 header {
     background: rgba(255, 255, 255, 0.98);
     position: sticky;
     /* Sticky on both mobile and desktop */
     top: 0;
     z-index: 1000;
     padding: 0px 0 10px;
     border-bottom: 1px solid #e5e5e5;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .logo {
     font-size: 22px;
     font-weight: 800;
     display: flex;
     align-items: center;
     gap: 8px;
     text-decoration: none;
 }

 .logo-circle {
     width: 40px;
     height: 40px;
     background: var(--dark);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: bold;
     border: 2px solid var(--primary);
 }

 .logo i {
     font-size: 24px;
     color: var(--primary);
 }

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

 .logo-text-dark {
     color: var(--dark);
 }

 .desktop-nav {
     display: flex;
     gap: 20px;
 }

 .desktop-nav a {
     font-weight: 500;
     font-size: 15px;
     color: #555;
     position: relative;
 }

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

 .nav-actions {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /* --- HERO SECTION (Interactive) --- */
 .hero {
     /* Fallback color */
     background-color: #f0f0f0;
     /* Gradient overlay + Image */
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-desktop.jpg');
     background-size: cover;
     background-position: center;
     padding: 60px 0 80px;
     position: relative;
     overflow: hidden;
     color: white;
     /* Text needs to be white on dark bg */
 }

 .hero-content {
     position: relative;
     z-index: 1;
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: white;
     line-height: 1.2;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero h1 span {
     color: var(--accent);
 }

 /* Highlighting span in orange/accent */
 .hero p {
     font-size: 1.1rem;
     color: #f0f0f0;
     margin-bottom: 30px;
     font-weight: 600;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
 }

 /* High Mode Badge */
 .high-mode-badge {
     display: inline-block;
     background: linear-gradient(90deg, #ff9800, #ff5722);
     color: white;
     padding: 8px 20px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 0.9rem;
     margin-bottom: 20px;
     box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
     letter-spacing: 0.5px;
 }

 /* --- COMPACT HORIZONTAL FORM --- */
 .hero-form-wrapper {
     background: var(--white);
     padding: 10px;
     border-radius: 60px;
     /* Pill shape */
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     display: inline-block;
     width: 100%;
     max-width: 900px;
     border: 1px solid #eee;
     position: relative;
 }

 .hero-form {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     width: 100%;
 }

 /* Inputs inside the horizontal bar */
 .form-input-group {
     position: relative;
     flex: 1;
     border-right: 1px solid #eee;
     padding: 5px 15px;
     text-align: left;
 }

 .form-input-group:last-child {
     border-right: none;
 }

 .form-input-group label {
     display: block;
     font-size: 10px;
     font-weight: 600;
     color: #999;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 2px;
 }

 .form-input-group input,
 .form-input-group select {
     width: 100%;
     border: none;
     font-size: 14px;
     font-weight: 500;
     color: #333;
     background: transparent;
     padding: 0;
     height: 24px;
     appearance: none;
     /* Remove default arrow */
     -webkit-appearance: none;
 }

 .form-input-group select:focus,
 .form-input-group input:focus {
     outline: none;
 }

 /* Custom Icon positioning */
 .form-input-group i.input-icon {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--primary);
     opacity: 0.5;
     pointer-events: none;
 }

 /* Prefix for Mobile */
 .mobile-prefix {
     position: absolute;
     left: 0;
     top: 28px;
     font-size: 14px;
     color: #333;
     font-weight: 500;
 }

 .input-with-prefix {
     padding-left: 28px !important;
 }

 .hero-submit-btn {
     background: var(--primary);
     color: white;
     border: none;
     padding: 12px 30px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     white-space: nowrap;
     transition: var(--trans);
     height: 100%;
     box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
 }

 .hero-submit-btn:hover {
     background: var(--accent);
     transform: scale(1.05);
 }

 /* --- BRANDS SECTION --- */
 .brand-section {
     background: white;
     padding: 30px 0;
 }

 .brands-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
 }

 .brand-item {
     width: 100px;
     text-align: center;
     padding: 10px;
     border: 1px solid #eee;
     border-radius: 8px;
     transition: 0.3s;
 }

 .brand-item:hover {
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .brand-logo {
     height: 40px;
     width: auto;
     margin: 0 auto 5px auto;
     display: block;
     /* Placeholder styling */
     background: #f9f9f9;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     color: #ccc;
 }

 .brand-name {
     font-size: 12px;
     font-weight: 600;
     color: #555;
 }

 /* --- SERVICES GRID (4 Columns) --- */
 .services-grid {
     grid-template-columns: repeat(4, 1fr);
     padding-top: 20px;
 }

 .service-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--trans);
     position: relative;
     border: 1px solid #f0f0f0;
     display: flex;
     flex-direction: column;
 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .service-img-box {
     overflow: hidden;
     height: 150px;
     position: relative;
 }

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

 .service-card:hover .service-img-box img {
     transform: scale(1.1);
 }

 .service-info {
     padding: 15px;
     text-align: center;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .service-info h3 {
     font-size: 16px;
     margin-bottom: 5px;
     color: var(--primary);
 }

 .service-info p {
     font-size: 12px;
     color: #666;
     margin-bottom: 12px;
     line-height: 1.5;
 }

 .service-btn {
     font-size: 12px;
     padding: 8px 15px;
     width: 100%;
     margin-top: auto;
 }

 /* --- FEATURES (WHY CHOOSE US) --- */
 .features-grid {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .feature-item {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 20px;
 }

 .feature-icon {
     width: 50px;
     height: 50px;
     background: rgba(0, 86, 179, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary);
     font-size: 20px;
     flex-shrink: 0;
 }

 .feature-text h4 {
     font-size: 16px;
     margin-bottom: 5px;
     color: var(--dark);
 }

 .feature-text p {
     font-size: 13px;
     color: #666;
     line-height: 1.5;
 }

 /* --- HELPLINE STRIP --- */
 .helpline-sec {
     background: var(--primary);
     color: white;
     padding: 40px 0;
 }

 .helpline-grid {
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     text-align: center;
 }

 .helpline-box {
     padding: 10px;
     border-right: 1px solid rgba(255, 255, 255, 0.2);
 }

 .helpline-box:last-child {
     border-right: none;
 }

 .helpline-box i {
     font-size: 30px;
     margin-bottom: 15px;
     opacity: 0.8;
 }

 .helpline-box h4 {
     font-size: 18px;
     margin-bottom: 5px;
 }

 .helpline-box p,
 .helpline-box a {
     font-size: 14px;
     opacity: 0.9;
     color: white;
 }

 /* --- LOCATIONS --- */
 .location-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
     margin-top: 30px;
 }

 .loc-pill {
     background: #f0f4f8;
     padding: 8px 20px;
     border-radius: 30px;
     font-size: 14px;
     color: #555;
     font-weight: 500;
 }

 .loc-pill i {
     color: var(--primary);
     margin-right: 5px;
 }

 /* --- REVIEWS --- */
 .review-card {
     background: white;
     padding: 20px;
     border-radius: 12px;
     box-shadow: var(--shadow);
     border: 1px solid #eee;
     margin-bottom: 20px;
 }

 .review-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
 }

 .review-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
     background: #ddd;
 }

 .stars {
     color: #FFD700;
     font-size: 12px;
     margin-top: 5px;
 }

 /* --- FAQ --- */
 .faq-item {
     background: white;
     border-radius: 8px;
     margin-bottom: 10px;
     border: 1px solid #eee;
     overflow: hidden;
 }

 .faq-item summary {
     padding: 15px;
     font-weight: 600;
     cursor: pointer;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-item summary::-webkit-details-marker {
     display: none;
 }

 .faq-item summary::after {
     content: '+';
     font-size: 20px;
     color: var(--primary);
 }

 .faq-item[open] summary::after {
     content: '-';
 }

 .faq-item p {
     padding: 0 15px 15px;
     color: #666;
     font-size: 14px;
     border-top: 1px solid #f9f9f9;
     margin-top: 5px;
 }

 /* --- ANIMATED CHAT BUTTONS (Bottom Right Desktop) --- */
 .desktop-chat {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 999;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .chat-float {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     cursor: pointer;
     transition: var(--trans);
     position: relative;
 }

 .chat-wa {
     background: var(--whatsapp);
     animation: pulse 2s infinite;
 }

 .chat-call {
     background: var(--primary);
 }

 .chat-float:hover {
     transform: scale(1.1);
 }

 .tooltip {
     position: absolute;
     right: 60px;
     background: #333;
     color: white;
     padding: 5px 10px;
     border-radius: 5px;
     font-size: 12px;
     opacity: 0;
     transition: 0.3s;
     white-space: nowrap;
     pointer-events: none;
 }

 .chat-float:hover .tooltip {
     opacity: 1;
     right: 65px;
 }

 /* --- MOBILE STICKY FOOTER --- */
 .mobile-footer {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     width: auto;
     /* Fix horizontal scroll */
     background: var(--white);
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
     z-index: 2000;
     padding: 10px 15px;
     display: none;
     justify-content: space-between;
     gap: 10px;
 }

 .mobile-btn {
     flex: 1;
     padding: 10px;
     border-radius: 8px;
     text-align: center;
     font-weight: 600;
     font-size: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     color: white;
 }

 .m-call {
     background: var(--primary);
 }

 .m-wa {
     background: var(--whatsapp);
 }

 /* --- FOOTER --- */
 footer {
     background: #1a1a1a;
     color: #888;
     padding: 50px 0 20px;
     font-size: 13px;
     margin-top: 50px;
 }

 footer h4 {
     color: white;
     font-size: 16px;
     margin-bottom: 20px;
 }

 footer a {
     color: #888;
     display: block;
     margin-bottom: 10px;
 }

 footer a:hover {
     color: white;
 }

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

 .footer-legal {
     border-top: 1px solid #333;
     padding-top: 20px;
     margin-top: 20px;
     font-size: 11px;
     line-height: 1.5;
     text-align: center;
 }

 /* --- RESPONSIVE CSS --- */
 @media (max-width: 992px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {

     /* Mobile Hero Background */
     .hero {
         background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-mobile.jpg');
         background-size: cover;
         background-position: center;
         padding: 40px 0 60px;
     }

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

     /* Stack the horizontal form on mobile: single column, full width */
     .hero-form-wrapper {
         border-radius: 20px;
         padding: 15px;
     }

     .hero-form {
         display: grid;
         grid-template-columns: 1fr;
         gap: 10px;
         width: 100%;
     }

     .hero-form>* {
         width: 100%;
         box-sizing: border-box;
     }

     .form-input-group {
         border-right: none;
         border-bottom: 1px solid #f0f0f0;
         padding: 8px 0;
     }

     .form-input-group:nth-child(2) {
         border-right: none;
     }

     .hero-submit-btn {
         width: 100%;
         border-radius: 10px;
         margin-top: 10px;
     }

     /* Hide desktop chats, show mobile footer */
     .desktop-chat {
         display: none;
     }

     .mobile-footer {
         display: flex;
     }

     /* Hide desktop menu on mobile */
     .desktop-nav {
         display: none;
     }

     .nav-actions {
         gap: 5px;
     }

     .nav-actions .btn {
         font-size: 10px;
         padding: 8px 12px;
     }

     .nav-actions .btn-accent {
         display: none;
     }

     /* Hide Book Service on mobile */

     /* Hide 'HelpLine' text on mobile */
     .logo-text-dark {
         display: none;
     }

     .container {
         padding: 0 15px;
     }

     /* Mobile Services Grid: 2 columns is usually okay, but if tight, use 1 */
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }

     .helpline-box {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding-bottom: 20px;
         margin-bottom: 20px;
     }

     .helpline-box:last-child {
         border-bottom: none;
         margin-bottom: 0;
     }

     .feature-item {
         margin-bottom: 25px;
     }

     .brands-grid {
         gap: 10px;
     }

     .brand-item {
         width: 80px;
     }
 }

 /* --- DISCLAIMER BAR --- */
 .disclaimer-bar {
     background: #fff3cd;
     color: #856404;
     text-align: center;
     font-size: 11px;
     padding: 8px 15px;
     border-bottom: 1px solid #ffeeba;
     line-height: 1.4;
     margin-bottom: 5px;
 }

 /* --- ABOUT SECTION --- */
 .about-sec {
     background: #fff;
     padding: 60px 0;
 }

 .about-content h2 {
     font-size: 28px;
     color: var(--primary);
     margin-bottom: 10px;
 }

 .about-subtitle {
     font-size: 16px;
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 20px;
 }

 .about-text p {
     margin-bottom: 15px;
     color: #555;
     font-size: 15px;
     line-height: 1.7;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-top: 30px;
 }

 .about-list h4 {
     color: var(--primary);
     margin-bottom: 15px;
     font-size: 18px;
 }

 .about-list ul li {
     margin-bottom: 10px;
     position: relative;
     padding-left: 20px;
     color: #444;
 }

 .about-list ul li::before {
     content: "\f00c";
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--whatsapp);
     font-size: 12px;
     top: 3px;
 }

 .legal-box {
     background: #f8f9fa;
     border-left: 4px solid var(--primary);
     padding: 15px;
     margin: 20px 0;
     font-size: 14px;
     color: #333;
 }

 .disclaimer-alert {
     background: #fff3cd;
     border: 1px solid #ffeeba;
     padding: 20px;
     margin-top: 30px;
     border-radius: 8px;
     color: #856404;
     font-size: 14px;
 }

 .disclaimer-alert h4 {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
     font-size: 16px;
     color: #856404;
 }

 @media (max-width: 768px) {
     .about-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
 }

 /* --- BRANDS WE REPAIR SECTION --- */
 .brands-sec {
     background: #f8f9fa;
     border-top: 1px solid #eee;
     border-bottom: 1px solid #eee;
 }

 .brands-repair-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .brand-repair-col {
     background: white;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid #f0f0f0;
     transition: transform 0.3s ease;
 }

 .brand-repair-col:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .brand-repair-col h3 {
     color: var(--primary);
     font-size: 18px;
     margin-bottom: 5px;
     border-bottom: 2px solid #f0f0f0;
     padding-bottom: 10px;
 }

 .brand-sub {
     font-size: 12px;
     color: #888;
     margin-bottom: 15px;
     font-style: italic;
     background: #f9f9f9;
     padding: 5px 10px;
     border-radius: 4px;
     display: inline-block;
     margin-top: 5px;
 }

 .brand-repair-col ul {
     list-style: none;
     padding: 0;
 }

 .brand-repair-col ul li {
     font-size: 13px;
     margin-bottom: 8px;
     padding-left: 20px;
     position: relative;
     color: #555;
     transition: color 0.2s;
 }

 .brand-repair-col ul li:hover {
     color: var(--primary);
 }

 .brand-repair-col ul li::before {
     content: "\f054";
     /* fa-chevron-right */
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     font-size: 10px;
     color: var(--accent);
     top: 5px;
 }

 @media (max-width: 992px) {
     .brands-repair-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {
     .brands-repair-grid {
         grid-template-columns: 1fr;
     }
 }