:root {
    --primary-color: #0b4f9c;
    --secondary-color: #05284d;
    --accent-color: #ff6b00;
    --whatsapp-color: #25d366;
    --text-dark: #1f2a37;
    --text-light: #596579;
    --white: #ffffff;
    --bg-light: #f4f8fc;
    --shadow: 0 12px 30px rgba(11, 79, 156, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    padding-bottom: 64px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 70px 0; }
.bg-light { background: var(--bg-light); }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s ease;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
}

.btn-primary { background: var(--accent-color); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp-color); color: var(--white); }
.btn:hover { transform: translateY(-2px); opacity: 0.95; }

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 15px;
}

.top-bar {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.84rem;
    text-align: center;
}

.top-bar span { margin: 0 10px; display: inline-block; }

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}

.logo {
    font-size: 1.16rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo span { font-size: 0.9rem; color: var(--text-light); }

.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-dark); }
.nav-links a:hover { color: var(--primary-color); }

.nav-call {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.26);
}

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

.mobile-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.mobile-menu.active { display: flex; }

.hero {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(120deg, rgba(5, 40, 77, 0.7), rgba(11, 79, 156, 0.55)),
        url('images/ac-repair-kondhwa.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.2), rgba(0, 0, 0, 0.35));
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }
.eyebrow {
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.3px;
    font-weight: 700;
    margin-bottom: 14px;
    opacity: 0.95;
}

.hero h1 { font-size: 2.45rem; margin-bottom: 18px; line-height: 1.2; }
.hero p { font-size: 1.08rem; margin-bottom: 28px; opacity: 0.94; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 38px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
    border: 1px solid #e9eef5;
}

.service-card:hover { transform: translateY(-6px); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 20px; }
.card-content h3 { color: var(--primary-color); margin-bottom: 10px; }
.card-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 14px; }
.text-link { color: var(--accent-color); font-weight: 700; font-size: 0.9rem; }

.features-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.feature-box, .step-card {
    background: var(--white);
    padding: 26px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.feature-box { text-align: center; }
.feature-box i { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 14px; }

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.tag {
    background: #edf3fa;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    color: #304154;
    border: 1px solid #dbe8f5;
}

.google-review-cta {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e4edf6;
    max-width: 660px;
    margin: 0 auto;
}

.faq-section details {
    background: #fff;
    border: 1px solid #dce8f5;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.faq-section summary {
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.faq-section p { margin-top: 10px; color: var(--text-light); }

footer {
    background: #1e2733;
    color: #cbd5e1;
    padding: 50px 0 20px;
}

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

.footer-col h3 { color: var(--white); margin-bottom: 14px; }
.footer-col p, .footer-col a { color: #c1cce0; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: var(--white); }

.copyright {
    text-align: center;
    border-top: 1px solid #314053;
    padding-top: 16px;
    font-size: 0.85rem;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.sticky-btn {
    flex: 1;
    padding: 14px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.call-btn { background: var(--primary-color); }
.wa-btn { background: var(--whatsapp-color); }

@media (max-width: 860px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 1.9rem; }
    .hero { min-height: auto; padding: 100px 0; }
}

@media (max-width: 560px) {
    .top-bar { font-size: 0.74rem; }
    .section { padding: 58px 0; }
    .hero p { font-size: 0.96rem; }
    .trust-badges { font-size: 0.82rem; gap: 12px; }
}

.fas.fa-phone-alt {
    transform: rotate(90deg);
}
.row.contact-person {
    text-align: center;
    margin:50px 0;
}
.text-center {
    text-align: center;
}
.brands {
    line-height: 27px;
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}
@media (max-width:480px){
.row.contact-person img {
   width:100%;
}
img.img-fluid {
    width: 100%;
}
}