/* ============================================
   BEST CHOICE APPLIANCE REPAIRS - MAIN CSS
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #1a5f9e;
    --accent-yellow: #ffc107;
    --light-blue: #e9f4ff;
    --dark-blue: #0d3c6c;
    --gray-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e5e7eb;
    --success: #28a745;
    --whatsapp: #25D366;
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s;
}
a:hover { color: var(--dark-blue); }

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

section { padding: 80px 0; }

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

/* ============ SECTION TITLES ============ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 2rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--accent-yellow);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.cta-btns .btn:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width:fit-content;
}
.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
.btn-primary-custom:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,95,158,0.3);
}
.btn-yellow {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
}
.btn-yellow:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}
.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
}
.btn-lg {
    padding: 13px 30px;
    font-size: 1rem;
}

/* ============ NAVBAR ============ */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
}
.navbar-logo { height: 48px; width: auto; }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 6px 12px;
    border-radius: 4px;
    position: relative;
    font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: var(--primary-blue);
    bottom: 0;
    left: 15%;
}
.call-btn {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    font-size: 0.9rem;
}
.call-btn:hover {
    background: #e0a800;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,193,7,0.4);
}
.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* ============ MOBILE NAV ============ */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-yellow);
    padding: 12px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.mobile-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}

/* Brand two-line layout */
.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-line1 {
    font-size: 1.2rem;
    font-weight: 700;
}
.brand-line2 {
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.85;
}
 
/* Chevron rotates when dropdown is open */
.nav-chevron {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.2s ease;
    vertical-align: middle;
}
.nav-item-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}
 
/* Dropdown menu — hidden by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 6px 0;
    animation: dropdownFade 0.15s ease;
}
 
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* Show when parent has .open */
.nav-item-dropdown.open .dropdown-menu {
    display: block;
}
 
/* Ensure parent is positioned for absolute child */
.nav-item-dropdown {
    position: relative;
}
 
.dropdown-item {
    display: block;
    padding: 9px 18px;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.dropdown-item:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}
.dropdown-item.view-all {
    font-weight: 600;
    color: var(--primary-blue);
}
.dropdown-item.view-all:hover {
    background: var(--light-blue);
}
.dropdown-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 0;
}
 
/* Mobile: dropdown stacks inline */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary-blue);
        border-radius: 0;
        padding: 0;
        margin: 4px 0 4px 16px;
        animation: none;
        background: transparent;
    }
    .dropdown-item {
        padding: 8px 14px;
        font-size: 0.88rem;
        color: var(--text-dark);
    }
    .dropdown-item:hover {
        background: transparent;
        color: var(--primary-blue);
    }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--whatsapp);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 998;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    background: #1da851;
    color: white;
    transform: scale(1.1);
}

/* ============ HERO ============ */
.hero-section {
    background: linear-gradient(rgba(17,57,94,0.88), rgba(7,38,70,0.82)), url('../images/best_choice_hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 110px 0 80px;
    text-align: center;
    position: relative;
}
.hero-section h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.hero-section .lead {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 1.5rem;
    color: rgba(255,255,255,0.9);
}
.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}
.hero-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
}
.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    margin-top: 1rem;
}
.hero-stat {
    text-align: center;
}
.hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: block;
}
.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: var(--dark-blue);
    padding: 18px 0;
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

/* ============ SERVICE CARDS (HOME) ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26,95,158,0.15);
}
.service-card-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.service-card-body {
    padding: 20px;
    text-align: center;
}
.service-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.service-link:hover { color: var(--dark-blue); }

/* ============ WHY CHOOSE US ============ */
.why-section { background: var(--light-blue); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.why-card {
    background: white;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26,95,158,0.08);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--primary-blue);
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }


/* ============ BRANDS ============ */

.brands-section{
    background:#f8fafc;
}


.brand-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:15px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
}

.brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.brand-card img{
    max-width:100%;
    max-height:55px;
    object-fit:contain;
    display:block;
}


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

/* ============ PROCESS STEPS ============ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}
.step-num {
    width: 52px;
    height: 52px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ============ COVERAGE PREVIEW ============ */
.coverage-preview-section { background: var(--gray-bg); }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.area-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent-yellow);
}
.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.area-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 3px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.area-list li::before {
    content: '✓';
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============ REVIEWS ============ */
.reviews-section { background: var(--gray-bg); padding: 80px 0; }
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.reviews-title h2 { font-size: 2rem; margin-bottom: 8px; }
.reviews-title p { color: var(--text-light); margin: 0; }
.google-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #555;
}
.google-badge-wrap img { height: 22px; }
.overall-rating {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
    min-width: 160px;
}
.overall-rating .rating-num { font-size: 2.8rem; font-weight: 800; color: var(--dark-blue); margin: 0; }
.stars { display: flex; justify-content: center; gap: 3px; margin: 6px 0; }
.stars i { color: #fbbc04; font-size: 16px; }
.overall-rating p { font-size: 0.8rem; color: #777; margin: 0; }

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-user { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; margin: 0; }
.review-date { font-size: 0.8rem; color: #777; }
.review-g { display: flex; align-items: center; gap: 5px; background: #d2e3fc; padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; color: #174ea6; font-weight: 600; }
.review-stars { margin: 8px 0; }
.review-stars i { color: #fbbc04; font-size: 13px; }
.review-text { font-size: 0.9rem; color: var(--text-dark); margin: 0; line-height: 1.55; }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    padding: 70px 0;
    text-align: center;
    color: white;
}
.cta-section h2 { color: white; font-size: 2.2rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============ FOOTER ============ */
.footer {
    background: #0a2e54;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer h5, .footer h6 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.footer h5 span { color: var(--accent-yellow); }
.footer p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact { margin-top: 16px; }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.footer-contact i { color: var(--accent-yellow); font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--accent-yellow); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a:hover { color: var(--accent-yellow); }
.footer-logo { height: 48px; width: auto; margin-bottom: 12px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent-yellow); }

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(rgba(13,60,108,0.72), rgba(7,38,70,0.75)), url('../images/best_choice_hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    text-align: center;
    color: white;
}
.page-hero h1 { color: white; font-size: 2.3rem; margin-bottom: 10px; }
.page-hero .lead { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

/* ============ SERVICES PAGE ============ */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row:last-child { border-bottom: none; }
.service-row-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.service-row-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.service-row-content h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
}
.service-row-content .lead {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.service-row-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.service-row-content ul li {
    padding: 5px 0;
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
}
.service-row-content ul li i { color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ============ INDIVIDUAL SERVICE PAGE ============ */
.service-detail-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: white;
}
.service-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(13,60,108,0.75), rgba(7,38,70,0.82));
}
.service-detail-hero .container { position: relative; z-index: 1; }
.service-detail-hero h1 { color: white; font-size: 2.4rem; }
.service-detail-hero p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

.service-content-section { padding: 70px 0; }
.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.service-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}
.sidebar-cta-card {
    background: var(--dark-blue);
    color: white;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.sidebar-cta-card h3 { color: white; font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-cta-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 16px; }
.sidebar-cta-card .btn { width: 100%; margin-bottom: 10px; }
.sidebar-services-card {
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid var(--border);
}
.sidebar-services-card h4 { font-size: 1rem; margin-bottom: 14px; }
.sidebar-services-list { list-style: none; padding: 0; margin: 0; }
.sidebar-services-list li { margin-bottom: 8px; }
.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.sidebar-services-list li a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
.sidebar-services-list li a.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.sidebar-services-list i{
    display: none;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.quick-form{
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-card-icon.blue { background: var(--light-blue); color: var(--primary-blue); }
.contact-card-icon.green { background: #e8f8f0; color: var(--whatsapp); }
.contact-card-icon.yellow { background: #fff8e1; color: #e0a800; }
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--text-light); margin: 0 0 10px; }
.contact-form-wrap {
    background: white;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap .sub { color: var(--text-light); font-size: 0.92rem; margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; }
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.93rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26,95,158,0.1);
}
.map-section { background: var(--gray-bg); padding: 70px 0; }
.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 25px rgba(0,0,0,0.1); }

/* ---- Quick Form Section ---- */
.quick-form-section {
    padding: 70px 0;
    background: var(--light-blue);
}
 
.quick-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
 
/* ---- Left Trust Panel ---- */
.qf-left {
    background: var(--primary-blue);
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
 
.qf-left-header h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}
 
.qf-left-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
}
 
.qf-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
}
 
.qf-trust-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
 
.qf-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
 
.qf-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
}
 
.qf-trust-text h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px;
}
 
.qf-trust-text p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}
 
/* Quick contact links */
.qf-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.qf-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
}
 
.qf-contact-link:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    text-decoration: none;
}
 
.qf-contact-link i {
    font-size: 1.1rem;
}
 
.qf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-top: auto;
}
 
.qf-badge i {
    font-size: 0.85rem;
    color: #5dd6a0;
}
 
/* ---- Right Form Panel ---- */
.qf-right {
    background: #fff;
    padding: 2.8rem 2.2rem;
}
 
.qf-right h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}
 
.qf-right .qf-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.6rem;
}
 
.qf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
 
/* Reuse your existing .form-group, .form-label, .form-control styles */
 
/* ---- Notification Banner ---- */
.qf-notification {
    display: none;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1.5px solid transparent;
}
 
.qf-notification.show {
    display: flex;
}
 
.qf-notification.success {
    background: #edfaf4;
    border-color: #34c47c;
    color: #1a6640;
}
 
.qf-notification.error {
    background: #fff3f3;
    border-color: #e05252;
    color: #7a1f1f;
}
 
.qf-notification-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.qf-notification.success .qf-notification-icon { color: #34c47c; }
.qf-notification.error   .qf-notification-icon { color: #e05252; }
 
.qf-notification-body strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}
 
/* ---- Submit button states ---- */
.qf-submit-btn {
    width: 100%;
    position: relative;
    transition: opacity 0.2s;
}
 
.qf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
 
.qf-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: qf-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
 
@keyframes qf-spin {
    to { transform: rotate(360deg); }
}
 
/* ---- Responsive ---- */
@media (max-width: 900px) {
    .quick-form-grid {
        grid-template-columns: 1fr;
    }
 
    .qf-left {
        display: none; /* hide on mobile — form only */
    }
}
 
@media (max-width: 600px) {
    .qf-form-row {
        grid-template-columns: 1fr;
    }
}

/* ---- Inline notification banner (reusable, same as quick form) ---- */
.cf-notification {
    display: none;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1.5px solid transparent;
}
 
.cf-notification.show {
    display: flex;
}
 
.cf-notification.success {
    background: #edfaf4;
    border-color: #34c47c;
    color: #1a6640;
}
 
.cf-notification.error {
    background: #fff3f3;
    border-color: #e05252;
    color: #7a1f1f;
}
 
.cf-notification-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.cf-notification.success .cf-notification-icon { color: #34c47c; }
.cf-notification.error   .cf-notification-icon { color: #e05252; }
 
.cf-notification-body strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
}
 
/* ---- Submit button loading state ---- */
.cf-submit-btn {
    width: 100%;
    transition: opacity 0.2s;
}
 
.cf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
 
.cf-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cf-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
 
@keyframes cf-spin {
    to { transform: rotate(360deg); }
}


/* ============ COVERAGE PAGE ============ */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.coverage-group {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.coverage-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-yellow);
}
.coverage-group-header i { color: var(--primary-blue); font-size: 1.1rem; }
.coverage-group-header h4 { font-size: 0.95rem; margin: 0; }
.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.area-chip {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ============ ABOUT PAGE ============ */
.about-hero-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-hero-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    text-align: center;
    padding: 28px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.value-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

/* ============ 404 PAGE ============ */
.not-found-section {
    padding: 100px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.not-found-section h1 {
    font-size: 7rem;
    color: var(--primary-blue);
    margin-bottom: 0;
    line-height: 1;
}
.not-found-section h2 { font-size: 2rem; margin-bottom: 12px; }
.not-found-section p { color: var(--text-light); max-width: 500px; margin: 0 auto 28px; font-size: 1.05rem; }
.not-found-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-row { grid-template-columns: 1fr; gap: 30px; }
    .service-row.reverse { direction: ltr; }
    .service-content-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .value-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; flex-direction: column; align-items: flex-start; width: 100%; background: white; padding: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    .navbar-nav.open { display: flex; }
    .navbar-toggler { display: block; }
    .mobile-call-btn { display: block; }
    .whatsapp-float { bottom: 65px; }
    body { padding-bottom: 48px; }

    .hero-section { padding: 80px 0 60px; }
    .hero-section h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }

    .reviews-header { flex-direction: column; align-items: flex-start; }
    .reviews-slider { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .coverage-grid { grid-template-columns: 1fr; }
    .value-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 1.7rem; }
    .page-hero h1 { font-size: 1.7rem; }
}

/* ============ BRAND PAGE EXTRAS ============ */
/* Fault grid responsive fix for brand pages */
@media (max-width: 600px) {
  .service-content-grid > div > div ul[style*="grid-template-columns:1fr 1fr"],
  .service-content-grid > div > div div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Brand page info cards */
.brand-info-card {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
}

/* Brand section cards on category pages */
.brand-card-link {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.25s, box-shadow 0.25s;
}
.brand-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,95,158,0.14);
    color: var(--text-dark);
}

/* Brand specialists grid on homepage */
@media (max-width: 768px) {
  .brand-specialists-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============ BRANDS DROPDOWN NAV ============ */
.nav-item-dropdown {
    position: relative;
}
.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 210px;
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid var(--border);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}
.dropdown-menu a i {
    color: var(--primary-blue);
    font-size: 0.85rem;
    width: 16px;
}
.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}
.dropdown-menu a.view-all {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.88rem;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.open .dropdown-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        border-left: 3px solid var(--light-blue);
        margin: 4px 0;
    }
    .dropdown-menu::before { display: none; }
    .nav-link-dropdown { justify-content: space-between; }
}

/* ============ BRAND HUB PAGE ============ */
.brand-hub-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.brand-hub-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.brand-hub-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    padding: 14px 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: none;
}
.brand-hub-logo-wrap img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.brand-hub-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.brand-hub-hero p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 1.8rem;
}
.brand-hub-hero-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.brand-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.brand-service-card {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.brand-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26,95,158,0.14);
}
.brand-service-card i {
    font-size: 2.2rem;
    color: var(--primary-blue);
}
.brand-service-card h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-blue);
}
.brand-service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}
.brand-service-card a {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}
.brand-service-card a:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
}
.brand-issues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 20px 0;
}
.brand-issue-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid #f0f0f0;
}
.brand-issue-item i { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.related-brands-section {
    background: var(--gray-bg);
}
.related-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 28px;
}
.related-brand-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.related-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,95,158,0.12);
    color: var(--primary-blue);
}
.related-brand-card span {
    font-weight: 600;
    font-size: 0.95rem;
}
.related-brand-card small {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* Brands index page */
.brands-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a5f9e 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}
.brands-hero h1 { color: white; font-size: 2.5rem; }
.brands-hero p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.brand-hub-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.brand-hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(26,95,158,0.15);
}
.brand-hub-card-header {
    background: var(--light-blue);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}
.brand-hub-card-header img {
    height: 44px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
}
.brand-hub-card-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark-blue);
}
.brand-hub-card-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.brand-hub-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}
.brand-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.brand-service-link {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.brand-service-link:hover {
    background: var(--primary-blue);
    color: white;
}
.brand-hub-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.brand-hub-card-footer a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
}
.brand-hub-card-footer a:hover { color: var(--dark-blue); }

@media (max-width: 600px) {
    .brand-issues-grid { grid-template-columns: 1fr; }
    .brand-hub-hero h1 { font-size: 1.9rem; }
    .brands-hero h1 { font-size: 1.9rem; }
}

.brand-grid, .mobile-stack-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
}

.brand-grid{
    gap: 32px;
}

@media (max-width:768px){
    .brand-grid, .mobile-stack-grid{
        grid-template-columns:1fr;
        gap:24px;
    }
}

.appliance-img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
