/* =========================================================
   Toughees Telecom — Design System
   Brand: Charcoal Black + Signal Red + White
   ========================================================= */

:root {
    --black: #14151a;
    --charcoal: #1e2027;
    --red: #e3131e;
    --red-dark: #b90f18;
    --red-light: #ff3b45;
    --white: #ffffff;
    --off-white: #f7f7f9;
    --gray-100: #f1f1f4;
    --gray-300: #d8d9df;
    --gray-500: #8b8d98;
    --gray-700: #4a4c56;
    --success: #1fa855;

    --font-head: 'Poppins', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 10px rgba(20,21,26,0.06);
    --shadow-md: 0 10px 30px rgba(20,21,26,0.10);
    --shadow-lg: 0 20px 50px rgba(20,21,26,0.16);
    --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.icon {
    width: 1.1em;
    height: 1.1em;
    display: inline-block;
    vertical-align: -0.18em;
    flex-shrink: 0;
}
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 36px; height: 36px; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 16px;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }

.container { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 7%; }
.page-solo { width: 100%; }
/* For standalone narrative paragraphs (no grid/split-media alongside them)
   that would otherwise stretch edge-to-edge on wide screens. Left-aligned,
   not centered, so it still lines up with the heading/hero above it. */
.prose { max-width: 760px; }
@media (max-width: 700px) { .container { padding: 0 5%; } }
.text-red { color: var(--red); }
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--gray-300); }

.section-tag {
    display: inline-block;
    background: rgba(227,19,30,0.1);
    color: var(--red);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-top: 44px;
    margin-bottom: 14px;
}
.section-tag:first-child { margin-top: 0; }
.section-head .section-tag { margin-top: 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray-100); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp .icon { width: 20px; height: 20px; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ============ HEADER ============ */
.top-bar {
    background: var(--black);
    color: var(--gray-300);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(227,19,30,0.35);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--gray-300); }
.top-bar a:hover { color: var(--red-light); }
.top-bar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-left span, .top-bar-left a { display: inline-flex; align-items: center; gap: 6px; }
.top-bar .icon { color: var(--red-light); width: 1rem; height: 1rem; }

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--red);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo-img { height: 64px; width: auto; display: block; }
@media (max-width: 560px) { .site-logo-img { height: 50px; } }
.footer-logo-img { background: var(--white); padding: 8px 14px; border-radius: var(--radius-sm); }
.logo-emblem {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(227,19,30,0.35);
}
.logo-emblem .icon { width: 22px; height: 22px; color: var(--white); }
.logo-mark {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--black);
}
.logo-mark span { color: var(--red); }
.logo-sub { font-size: 0.62rem; letter-spacing: 3px; color: var(--gray-700); font-weight: 600; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: all 0.15s;
    display: flex; align-items: center; gap: 8px;
}
.main-nav a:hover, .main-nav a.active { background: var(--gray-100); color: var(--red); }
.main-nav .icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Drawer chrome (logo/close header, CTA footer) is mobile-only */
.nav-mobile-header, .nav-mobile-footer { display: none; }
.nav-links-scroll { display: contents; }

/* Repair Services mega menu */
.nav-item.has-mega { position: static; display: inline-flex; align-items: center; gap: 2px; }
.nav-item.has-mega .nav-mega-trigger { margin: 0; }
.mega-toggle {
    background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--radius-sm);
    color: var(--charcoal); display: flex; align-items: center; justify-content: center;
}
.mega-toggle .icon { width: 15px; height: 15px; transition: transform 0.2s ease; }
.nav-item.has-mega:hover .mega-toggle .icon,
.nav-item.has-mega.mega-open .mega-toggle .icon { transform: rotate(180deg); }
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    width: min(1520px, 96vw);
    background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--red);
    padding: 32px 40px; margin-top: 4px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 400;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu,
.nav-item.has-mega.mega-open .mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }
.mega-col-head {
    display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray-700);
    padding-bottom: 12px; margin-bottom: 10px; border-bottom: 2px solid var(--gray-100);
}
.mega-col-head .icon { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.mega-col-list { display: flex; flex-direction: column; gap: 2px; }
.mega-col-list li a {
    display: flex; align-items: center; gap: 6px; padding: 6px; border-radius: var(--radius-sm);
    font-size: 0.85rem; color: var(--charcoal); transition: background 0.15s, color 0.15s;
}
.mega-col-list li a .icon { width: 12px; height: 12px; color: var(--gray-500); flex-shrink: 0; transition: color 0.15s; }
.mega-col-list li a:hover { background: var(--gray-100); color: var(--red); }
.mega-col-list li a:hover .icon { color: var(--red); }
.mega-callout { margin-top: 16px; padding: 16px; background: rgba(227,19,30,0.06); border-radius: var(--radius-md); text-align: center; }
.mega-callout p { font-size: 0.83rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.mega-callout .btn { width: 100%; justify-content: center; color: var(--white); }
@media (max-width: 1100px) {
    .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 16px; }
.header-cta .btn-label { display: none; }
.header-cta .btn .icon { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--black); }

@media (max-width: 992px) {
    /* Top contact-info bar is redundant on mobile — Call/WhatsApp buttons already cover it */
    .top-bar { display: none; }

    /* Right-side flyout drawer: dark logo/close header, scrollable link list, sticky CTA footer */
    .main-nav {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 320px; max-width: 88vw;
        background: var(--white); display: flex; flex-direction: column; padding: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2); transition: right 0.3s ease; z-index: 600;
        overflow-x: hidden;
    }
    .main-nav.open { right: 0; }

    .nav-mobile-header {
        display: flex; align-items: center; justify-content: space-between;
        background: var(--white); padding: 14px 20px; flex-shrink: 0;
        border-bottom: 1px solid var(--gray-100);
    }
    .nav-mobile-logo { display: flex; align-items: center; gap: 10px; }
    .nav-close {
        width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1px solid var(--gray-300);
        background: transparent; color: var(--charcoal); display: flex; align-items: center; justify-content: center;
        cursor: pointer; flex-shrink: 0;
    }
    .nav-close .icon { width: 18px; height: 18px; }
    .nav-close:hover { background: var(--gray-100); }

    .nav-links-scroll { display: flex; flex-direction: column; flex: 1; overflow-y: auto; padding: 14px 16px; gap: 4px; }

    .main-nav a { padding: 13px 14px; border-radius: 12px; border-bottom: none; }
    .main-nav a:hover, .main-nav a.active { background: rgba(227,19,30,0.08); }
    .main-nav .icon { width: 18px; height: 18px; color: var(--red); }

    .nav-mobile-footer {
        display: flex; flex-direction: column; gap: 10px; padding: 16px 20px 22px;
        border-top: 1px solid var(--gray-100); flex-shrink: 0;
    }
    .nav-mobile-footer .btn-block { justify-content: center; }
    .nav-mobile-footer .btn-primary { color: var(--white); }
    .nav-mobile-footer-row { display: flex; gap: 10px; }
    .nav-mobile-footer-row .btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.85rem; }

    .nav-toggle { display: block; }
    .header-cta .btn-label { display: none; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 550; }
    .nav-overlay.open { display: block; }

    /* Mega menu collapses into a tap-to-expand accordion on mobile.
       Selectors are scoped under .main-nav so they always beat the
       desktop mega-menu rules regardless of source order. */
    .main-nav .nav-item.has-mega { flex-direction: column; align-items: stretch; width: 100%; position: relative; }
    .main-nav .nav-item.has-mega .nav-mega-trigger { flex: 1; }
    .main-nav .mega-toggle {
        position: absolute; top: 2px; right: 2px; width: 44px; height: 44px;
    }
    .main-nav .mega-menu {
        position: static !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
        transform: none !important; box-shadow: none; border-top: none; border-radius: 0;
        width: 100% !important; max-width: 100%; padding: 0; margin: 0;
        max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    }
    .main-nav .nav-item.has-mega.mega-open .mega-menu { max-height: 4000px; padding-bottom: 10px; }
    .main-nav .mega-menu-grid { display: block !important; }
    .main-nav .mega-col { width: 100%; max-width: 100%; margin: 14px 0 0 10px; box-sizing: border-box; }
    .main-nav .mega-col-head { font-size: 0.72rem; }
    .main-nav .mega-col-list { max-height: none; overflow: visible; min-width: 0; }
    .main-nav .mega-col-list li { min-width: 0; }
    .main-nav .mega-col-list li a {
        padding: 8px 6px; border-radius: var(--radius-sm);
        min-width: 0; white-space: normal; overflow-wrap: anywhere;
    }
    .main-nav .mega-callout { width: auto; margin: 14px 10px 0; }
}

/* ============ HERO ============ */
.hero {
    background:
        linear-gradient(120deg, rgba(20,21,26,0.94) 0%, rgba(20,21,26,0.88) 45%, rgba(20,21,26,0.72) 100%),
        url('../images/photos/hero-bg-photo.jpg') center 30% / cover no-repeat,
        url('../images/hero-bg.svg') center center / cover no-repeat,
        var(--black);
    color: var(--white);
    padding: 90px 0 120px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.hero::before, .hero::after {
    content: "";
    position: absolute; border-radius: 50%; filter: blur(10px);
    animation: heroFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.hero::before {
    right: -100px; top: -100px; width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(227,19,30,0.32), transparent 70%);
}
.hero::after {
    left: -80px; bottom: -80px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,59,69,0.18), transparent 70%);
    animation-delay: -4s;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.05); }
}
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }

/* Centers every child (including block-level h1 with its own max-width)
   as a true flex column — text-align alone can't center a block box. */
.hero-centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-centered .hero-badges { justify-content: center; }
.hero-centered h1 { max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(6px);
    padding: 8px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 600;
    color: var(--white);
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-badge:hover { background: rgba(227,19,30,0.25); transform: translateY(-2px); }

.hero-service-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 6px; }
.hero-service-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--red); color: var(--white);
    padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700;
    box-shadow: 0 4px 14px rgba(227,19,30,0.35);
}
.hero-service-chip .icon { width: 15px; height: 15px; }

.google-rating-block {
    display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
    margin-top: 22px; padding: 22px 40px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(6px); border-radius: var(--radius-lg);
}
.google-rating-number { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.google-rating-stars { display: flex; gap: 2px; margin: 4px 0 2px; }
.google-rating-stars .icon { width: 20px; height: 20px; }
.google-rating-block p { font-size: 0.88rem; color: var(--gray-300); margin: 0 0 8px; }
.google-rating-link { font-size: 0.85rem; font-weight: 700; color: var(--red-light); }
.google-rating-link:hover { text-decoration: underline; }
.hero-badge .icon { color: var(--red-light); }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.3); font-size: clamp(2.1rem, 3.6vw, 2.9rem); max-width: 620px; }
.hero p.lead { color: var(--gray-300); font-size: 1.12rem; max-width: 540px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-actions .icon { margin-right: 2px; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat .icon { width: 30px; height: 30px; color: var(--red-light); flex-shrink: 0; }
.hero-stat b { display: block; font-size: 1.5rem; color: var(--white); font-family: var(--font-head); line-height: 1.1; }
.hero-stat span { font-size: 0.78rem; color: var(--gray-300); }

.hero-visual {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 30px 30px 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
}
.hero-visual img { border-radius: var(--radius-md); }
.hero-visual-title { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-300); margin-bottom: 20px; font-weight: 700; }
.hero-device-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-device-pill {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); padding: 16px 14px;
    transition: transform 0.2s, background 0.2s;
}
.hero-device-pill:hover { transform: translateY(-3px); background: rgba(227,19,30,0.14); border-color: rgba(227,19,30,0.35); }
.hero-device-pill .icon-chip {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    background: rgba(227,19,30,0.16); display: flex; align-items: center; justify-content: center;
}
.hero-device-pill .icon { width: 18px; height: 18px; color: var(--red-light); flex-shrink: 0; }
.hero-device-pill span { font-size: 0.85rem; font-weight: 600; color: var(--white); line-height: 1.25; }
.hero-visual-foot { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--gray-300); font-size: 0.82rem; }
.hero-visual-foot .icon { color: var(--success); flex-shrink: 0; }

/* Hero enquiry form */
.hero-form-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
}
.hero-form-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-form-head .fb-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(227,19,30,0.2); color: var(--red-light);
    display: flex; align-items: center; justify-content: center;
}
.hero-form-head .fb-icon-wrap .icon { width: 22px; height: 22px; }
.hero-form-head h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 2px; }
.hero-form-head span { color: var(--gray-300); font-size: 0.8rem; }
.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form-card .form-group label { display: flex; align-items: center; gap: 6px; }
.hero-form-card .form-group label .icon { width: 13px; height: 13px; color: var(--red-light); }
.hero-form-card .form-control { padding: 13px 14px; font-size: 0.94rem; transition: border-color 0.2s, background 0.2s; }
.hero-form-card .form-control:focus { background: rgba(255,255,255,0.1); }
.hero-form-card .btn-primary { margin-top: 4px; }
.hero-form-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-form-trust span { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--gray-300); font-weight: 600; }
.hero-form-trust .icon { width: 14px; height: 14px; color: var(--success); }
@media (max-width: 560px) {
    .hero-form-row { grid-template-columns: 1fr; }
    .hero-form-card { padding: 24px; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); padding: 60px 0 80px; }
}

/* ============ PHOTOGRAPHY / MEDIA ============ */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }
.photo-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.photo-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-card:hover img { transform: scale(1.06); }
.photo-card-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: var(--white); font-weight: 700; font-size: 0.85rem;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .photo-grid, .photo-grid.cols-3 { grid-template-columns: 1fr 1fr; } }

.feature-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media {
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin: 30px 0;
}
.split-media .feature-media { aspect-ratio: 4/3; }
.split-media.center-items { align-items: center; }
.split-media.reverse { direction: rtl; }
.split-media.reverse > * { direction: ltr; }
@media (max-width: 800px) {
    .split-media, .split-media.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.service-block-media { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 18px; }
.service-block-media .feature-media { width: 220px; height: 160px; flex-shrink: 0; aspect-ratio: auto; }
.service-block-content { flex: 1; min-width: 0; }
@media (max-width: 700px) {
    .service-block-media { flex-direction: column; }
    .service-block-media .feature-media { width: 100%; height: 200px; }
}

/* Section header line accent (used under section-tag/h2 combos) */
.section-line { width: 60px; height: 3px; background: var(--red); border-radius: 3px; margin-top: 14px; }
.section-head.center .section-line { margin-left: auto; margin-right: auto; }

/* Image wrap with floating stat badges (hero-visual / why-choose / founder patterns) */
.img-badge-wrap { position: relative; }
.page-main > .img-badge-wrap { margin: 22px 0 12px; }
.img-badge-wrap .feature-media { aspect-ratio: 4/3; }
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 170px;
}
.floating-badge .fb-icon {
    width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
    background: rgba(227,19,30,0.1); color: var(--red);
    display: flex; align-items: center; justify-content: center;
}
.floating-badge .fb-icon .icon { width: 22px; height: 22px; }
.floating-badge .fb-num { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--black); line-height: 1.1; }
.floating-badge .fb-lbl { font-size: 0.76rem; color: var(--gray-700); font-weight: 600; }
.floating-badge.pos-tl { top: -18px; left: -18px; }
.floating-badge.pos-tr { top: -18px; right: -18px; }
.floating-badge.pos-bl { bottom: -18px; left: -18px; }
.floating-badge.pos-br { bottom: -18px; right: -18px; }
@media (max-width: 560px) {
    .floating-badge { padding: 10px 14px; min-width: 140px; gap: 8px; }
    .floating-badge .fb-icon { width: 34px; height: 34px; }
    .floating-badge .fb-num { font-size: 1.05rem; }
    .floating-badge.pos-tl, .floating-badge.pos-tr { top: -12px; }
    .floating-badge.pos-bl, .floating-badge.pos-br { bottom: -12px; }
    .floating-badge.pos-tl, .floating-badge.pos-bl { left: -10px; }
    .floating-badge.pos-tr, .floating-badge.pos-br { right: -10px; }
}

/* Why-choose-us: image + list layout with floating stats */
.why-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: start; }
.why-grid.center-items { align-items: center; }
.why-grid.reverse { grid-template-columns: 1.05fr 0.95fr; }
.why-item-row { display: flex; gap: 16px; margin-bottom: 24px; padding: 10px; margin-left: -10px; margin-right: -10px; border-radius: var(--radius-sm); transition: background 0.2s ease; }
.why-item-row:hover { background: var(--off-white); }
.why-item-row:hover .wi-icon { transform: scale(1.1); }
.wi-icon { transition: transform 0.25s ease; }
.why-item-row .wi-icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
    background: rgba(227,19,30,0.12); color: var(--red);
    display: flex; align-items: center; justify-content: center;
}
.why-item-row h4 { margin-bottom: 6px; font-size: 1.05rem; }
.why-item-row p { font-size: 0.92rem; margin-bottom: 0; }
@media (max-width: 900px) {
    .why-grid, .why-grid.reverse { grid-template-columns: 1fr; }
}

/* Founder section */
.founder-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: start; margin-top: 20px; }
.founder-img-wrap { position: relative; }
.founder-img-wrap .feature-media { aspect-ratio: 4/5; }
.founder-content .title { color: var(--red); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0; }
.vm-box { background: var(--off-white); border-radius: var(--radius-md); padding: 20px; border-left: 3px solid var(--red); }
.vm-box h4 { display: flex; align-items: center; gap: 8px; font-size: 0.98rem; margin-bottom: 8px; }
.vm-box .icon { color: var(--red); }
.vm-box p { font-size: 0.88rem; margin-bottom: 0; }
@media (max-width: 800px) {
    .founder-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
}

/* Icon checklist grid (points) */
.points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.point-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; }
.point-item .icon { color: var(--success); flex-shrink: 0; }
@media (max-width: 600px) { .points-grid { grid-template-columns: 1fr; } }

/* Chip category groups (model/brand chip-clouds) */
.chip-category { margin-bottom: 26px; }
.chip-category:last-child { margin-bottom: 0; }
.chip-category-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; color: var(--black); }
.chip-category-label .icon { color: var(--red); }

/* Landmark badge strip */
.landmark-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.landmark-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 30px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.landmark-chip .icon { color: var(--red); width: 15px; height: 15px; }

/* Stat strip band */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; background: var(--off-white); border-radius: var(--radius-lg); padding: 44px 36px; }
.stat-strip-item { text-align: center; }
.stat-strip-icon {
    width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 14px;
    background: rgba(227,19,30,0.1); color: var(--red);
    display: flex; align-items: center; justify-content: center;
}
.stat-strip-icon .icon { width: 26px; height: 26px; }
.stat-strip-item b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--black); line-height: 1.15; margin-bottom: 4px; }
.stat-strip-item span { font-size: 0.85rem; color: var(--gray-700); font-weight: 600; }
.stat-strip-item { transition: transform 0.25s ease; }
.stat-strip-item:hover { transform: translateY(-4px); }
@media (max-width: 800px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stat-strip { grid-template-columns: 1fr; } }

/* Dark-section-aware overrides for chips / stat-strip / cards placed on .section-dark */
.section-dark .chip-category-label { color: var(--white); }
.section-dark .chip {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); color: var(--white);
}
.section-dark .chip:hover { background: rgba(227,19,30,0.2); border-color: rgba(227,19,30,0.4); }
.section-dark .stat-strip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .stat-strip-icon { background: rgba(227,19,30,0.18); }
.section-dark .stat-strip-item b { color: var(--white); }
.section-dark .stat-strip-item span { color: var(--gray-300); }
.section-dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section-dark .card p { color: #c9cad2; }
.section-dark .card:hover { background: var(--red); border-color: var(--red); }
.section-dark .card:hover h3, .section-dark .card:hover p { color: var(--white); }
.section-dark .card:hover .card-icon { background: var(--white); color: var(--red); }

/* Chip-category redesigned as cards */
.chip-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.chip-category-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.chip-category-card:hover { transform: translateY(-6px); border-color: rgba(227,19,30,0.4); background: rgba(255,255,255,0.07); }
.chip-category-icon {
    width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
    background: rgba(227,19,30,0.18); color: var(--red-light);
    display: flex; align-items: center; justify-content: center;
}
.chip-category-icon .icon { width: 22px; height: 22px; }
.chip-category-card .chip-category-label { margin-bottom: 16px; font-size: 1.05rem; }
.chip-category-card .chip-group { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 9px; margin: 0; }
.chip-category-card .chip { font-size: 0.82rem; padding: 8px 14px; }
@media (max-width: 700px) { .chip-category-grid { grid-template-columns: 1fr; } }

/* Scroll-reveal animation system */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }
.reveal-delay-4.is-visible { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Brand logo scrolling strip */
.brand-scroll { overflow: hidden; position: relative; padding: 8px 0; }
.brand-scroll::before, .brand-scroll::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.brand-scroll::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.brand-scroll::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.brand-track { display: flex; gap: 20px; width: max-content; animation: brandScroll 42s linear infinite; }
.brand-scroll:hover .brand-track { animation-play-state: paused; }
@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-logo-card {
    width: 220px; height: 140px; flex-shrink: 0;
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.brand-logo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(227,19,30,0.4); }
.brand-logo-card img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; }
@media (max-width: 600px) {
    .brand-logo-card { width: 160px; height: 110px; padding: 18px; }
    .brand-logo-card img { max-height: 48px; }
    .brand-scroll::before, .brand-scroll::after { width: 40px; }
}

/* Testimonial scrolling carousel — JS-driven (see main.js) so it can
   auto-loop through every review AND support manual prev/next stepping. */
.testimonial-nav-wrap { display: flex; align-items: center; gap: 14px; }
.testimonial-scroll { overflow: hidden; position: relative; flex: 1; min-width: 0; }
.testimonial-scroll::before, .testimonial-scroll::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.testimonial-scroll::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.testimonial-scroll::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.section-alt .testimonial-scroll::before { background: linear-gradient(90deg, var(--off-white), transparent); }
.section-alt .testimonial-scroll::after { background: linear-gradient(270deg, var(--off-white), transparent); }
.testimonial-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.testimonial-track .testimonial-card { width: 360px; flex-shrink: 0; }
@media (max-width: 600px) {
    .testimonial-track .testimonial-card { width: 300px; }
}
.testimonial-nav-btn {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--gray-300); background: var(--white); color: var(--charcoal);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.testimonial-nav-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: scale(1.06); }
.testimonial-nav-btn .icon { width: 20px; height: 20px; }
.section-dark .testimonial-nav-btn, .section-alt .testimonial-nav-btn { background: transparent; border-color: rgba(0,0,0,0.15); }
.section-dark .testimonial-nav-btn { border-color: rgba(255,255,255,0.2); color: var(--white); }
@media (max-width: 600px) {
    .testimonial-nav-btn { width: 36px; height: 36px; }
    .testimonial-nav-btn .icon { width: 16px; height: 16px; }
}

/* Extra hover polish */
.landmark-chip, .area-item { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.landmark-chip:hover, .area-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.floating-badge { transition: transform 0.25s ease; }
.img-badge-wrap:hover .floating-badge { transform: translateY(-4px); }
.feature-media { overflow: hidden; }
.feature-media img { transition: transform 0.5s ease; }
.split-media:hover .feature-media img, .img-badge-wrap:hover .feature-media img { transform: scale(1.06); }
.testimonial-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Breadcrumb */
.breadcrumb-bar { background: var(--off-white); border-bottom: 1px solid var(--gray-100); padding: 14px 0; }
.breadcrumb-bar ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; color: var(--gray-700); }
.breadcrumb-bar a { color: var(--gray-700); font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--red); }
.breadcrumb-bar li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--gray-300); }
.breadcrumb-bar li:last-child { color: var(--black); font-weight: 600; }

/* Page layout: main content + sidebar */
.page-layout { display: grid; grid-template-columns: 2.1fr 1fr; gap: 40px; align-items: start; }
.page-main { min-width: 0; }
@media (max-width: 992px) { .page-layout { grid-template-columns: 1fr; } }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md);
    padding: 28px; box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.card:hover { background: var(--black); box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--black); }
.card:hover h3, .card:hover p { color: var(--white); }
.card:hover .card-icon { background: var(--red); color: var(--white); }
.card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    background: rgba(227,19,30,0.1); color: var(--red);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; transition: color 0.2s ease; }
.card p { transition: color 0.2s ease; }
.card p { font-size: 0.93rem; margin-bottom: 12px; }
.card a.card-link { font-weight: 700; color: var(--red); font-size: 0.88rem; }

/* Service anchor blocks (repair-services page) */
.service-block {
    border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 30px;
    margin-bottom: 22px; scroll-margin-top: 100px; box-shadow: var(--shadow-sm);
}
#laptop.service-block, #surface.service-block, #smartwatch.service-block, #camera.service-block { background: var(--off-white); }
.service-block h3 { display: flex; align-items: center; gap: 10px; }
.service-block h3 .icon { color: var(--red); flex-shrink: 0; }
.service-block ul.tick-list { margin-top: 10px; }

.tick-list li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 0.95rem; color: var(--gray-700); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }

.cross-list li { padding-left: 26px; position: relative; margin-bottom: 8px; font-size: 0.95rem; color: var(--gray-700); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; counter-reset: step; margin-top: 34px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; height: 100%; padding: 26px 20px 20px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; top: -16px; left: 20px; width: 34px; height: 34px; border-radius: 50%;
    background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-family: var(--font-head);
}

/* Pricing table */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.94rem; }
.price-table th, .price-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-100); text-align: left; }
.price-table th { background: var(--black); color: var(--white); font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.price-table tr:nth-child(even) { background: var(--off-white); }
.price-table td.price { font-weight: 700; color: var(--red); }
.price-note { font-size: 0.85rem; color: var(--gray-500); font-style: italic; }

/* Model chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 24px; }
.chip {
    background: var(--off-white); border: 1px solid var(--gray-300); padding: 8px 16px;
    border-radius: 30px; font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    display: inline-block;
}
a.chip:hover, .chip-group a.chip:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }

/* Inline in-page CTA row (used after content sections) */
.inline-cta-row { display: flex; justify-content: flex-start; margin: 28px 0; }
.inline-cta-row .btn { padding: 10px 20px; font-size: 0.85rem; }

/* Search-terms keyword paragraph ("People Also Search For") */
.search-terms-section { padding: 34px 0; }
.search-terms-section .section-tag { margin-top: 0; }
.search-terms-section h2 { font-size: 1.15rem; margin-bottom: 8px; }
.search-terms-para { margin-top: 10px; font-size: 0.8rem; line-height: 1.9; letter-spacing: 0.1px; color: rgba(255,255,255,0.55); }

/* FAQ accordion */
.faq-list { margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 20px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--black);
}
.faq-question .icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: transform 0.25s; color: var(--red); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 4px 20px; color: var(--gray-700); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 600px; }

/* Testimonials */
.testimonial-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: #f5a623; margin-bottom: 10px; display: flex; gap: 3px; }
.stars .icon { width: 16px; height: 16px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); }
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--black); }
.author-meta { font-size: 0.8rem; color: var(--gray-500); }

/* Area chips */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 700px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
.area-item { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; color: var(--red); }
.area-item .icon { color: var(--red); }
.area-item span { color: var(--charcoal); }

/* ============ SIDEBAR ============ */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 94px; }
.widget { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.widget-title { font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }

.enquiry-widget { background: var(--black); color: var(--white); }
.enquiry-widget .widget-title { color: var(--white); border-color: var(--red); }
.enquiry-widget p { color: var(--gray-300); font-size: 0.88rem; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-300); }
.enquiry-widget .form-group label { color: var(--gray-300); }
.widget:not(.enquiry-widget) .form-group label { color: var(--charcoal); }
.form-control {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--font-body); font-size: 0.92rem;
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus { outline: none; border-color: var(--red); }
select.form-control option { color: #000; }
.form-msg { margin-top: 12px; font-size: 0.85rem; font-weight: 600; display: none; padding: 10px; border-radius: var(--radius-sm); }
.form-msg.success { display: block; background: rgba(31,168,85,0.15); color: #5be08a; }
.form-msg.error { display: block; background: rgba(227,19,30,0.15); color: var(--red-light); }

.other-services-list li { border-bottom: 1px solid var(--gray-100); }
.other-services-list a { display: flex; justify-content: space-between; padding: 11px 2px; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.other-services-list a:hover { color: var(--red); }
.other-services-list a::after { content: "›"; color: var(--gray-500); }

.sachin-card { text-align: center; }
.sachin-avatar {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 14px; background: var(--black);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; font-size: 1.6rem;
}
.sachin-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.sachin-role { color: var(--red); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.sachin-bio { font-size: 0.88rem; }

.contact-widget-list li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; align-items: flex-start; }
.contact-widget-list .ci { width: 34px; height: 34px; border-radius: 50%; background: rgba(227,19,30,0.1); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem; }
.contact-widget-list a { font-weight: 600; }
.contact-widget-list a:hover { color: var(--red); }

/* CTA band (legacy flat variant, kept for compatibility) */
.cta-band { background: var(--red); color: var(--white); padding: 50px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.9); }
.cta-band .btn-white { color: var(--red); }

/* Premium CTA card */
.cta-section { padding: 80px 0; background: var(--black); position: relative; }
.cta-card {
    position: relative;
    background: linear-gradient(135deg, #1c1e25 0%, #282a33 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 56px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.cta-card::before {
    content: ""; position: absolute; top: -90px; right: -70px; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(227,19,30,0.38), transparent 70%); border-radius: 50%;
    animation: heroFloat 9s ease-in-out infinite;
}
.cta-card::after {
    content: ""; position: absolute; bottom: -100px; left: -60px; width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,59,69,0.16), transparent 70%); border-radius: 50%;
    animation: heroFloat 9s ease-in-out infinite; animation-delay: -4.5s;
}
.cta-content { position: relative; z-index: 2; }
.cta-content .section-tag { background: rgba(227,19,30,0.18); }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content p { color: var(--gray-300); font-size: 1.05rem; max-width: 480px; margin-bottom: 0; }
.cta-trust-row { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--gray-300); }
.cta-trust-item .icon { color: var(--red-light); }
.cta-actions-col { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.cta-actions-col .btn { justify-content: center; padding: 16px 28px; font-size: 1rem; }
.cta-phone-highlight { text-align: center; color: var(--gray-300); font-size: 0.85rem; }
.cta-phone-highlight b { display: block; color: var(--white); font-size: 1.2rem; font-family: var(--font-head); margin-top: 2px; }

@media (max-width: 800px) {
    .cta-card { grid-template-columns: 1fr; padding: 40px 26px; text-align: center; }
    .cta-trust-row { justify-content: center; }
    .cta-content p { margin-left: auto; margin-right: auto; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--black); color: var(--gray-300); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--gray-300); }
.footer-col a:hover { color: var(--red-light); }
.footer-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-logo .logo-emblem { width: 36px; height: 36px; }
.footer-logo .logo-emblem .icon { width: 18px; height: 18px; }
.footer-logo span { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a { color: var(--gray-300); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--red); }

/* Floating WhatsApp button */
.float-location {
    position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
    background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 700;
    animation: pulse-loc 2.2s infinite;
}
/* Hide while the mobile menu drawer is open — it was overlapping the
   drawer's WhatsApp button in the bottom-right corner. */
body:has(.nav-overlay.open) .float-location { display: none; }
@keyframes pulse-loc {
    0% { box-shadow: 0 0 0 0 rgba(227,19,30,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(227,19,30,0); }
    100% { box-shadow: 0 0 0 0 rgba(227,19,30,0); }
}

/* Content typography helpers used inside long-form page copy */
.page-main h2 { margin: 40px 0 16px; }
.page-main h2:first-child { margin-top: 0; }
.page-main h3 { margin: 26px 0 12px; }
.section-tag + h2, .section-head .section-tag + h2 { margin-top: 0; }
.page-main p { font-size: 1rem; }
.page-main ul.tick-list, .page-main ul.cross-list { margin-bottom: 20px; }
.callout {
    background: var(--off-white); border-left: 4px solid var(--red); padding: 18px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-size: 0.95rem;
}
.callout strong { color: var(--black); }

/* Fallback shown wherever live Google reviews haven't loaded/aren't configured yet */
.reviews-pending {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
    padding: 40px 24px; background: var(--off-white); border-radius: var(--radius-md);
}
.reviews-pending .icon { width: 34px; height: 34px; color: var(--red); }
.reviews-pending p { max-width: 480px; color: var(--gray-500); }
.section-dark .reviews-pending { background: rgba(255,255,255,0.05); }
.section-dark .reviews-pending p { color: var(--gray-300); }

table.compare { width: 100%; border-collapse: collapse; margin: 20px 0; }
table.compare th, table.compare td { border: 1px solid var(--gray-100); padding: 12px; font-size: 0.9rem; text-align: left; }
table.compare th { background: var(--off-white); }
