/* ==============================================
   ROADWISE REMOVALS COVENTRY
   Professional Website Stylesheet
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

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

:root {
    --navy:        #0c2461;
    --blue:        #1565c0;
    --blue-mid:    #1e88e5;
    --blue-light:  #64b5f6;
    --silver:      #90a4ae;
    --silver-light:#eceff1;
    --white:       #ffffff;
    --off-white:   #f5f8fc;
    --dark:        #08152a;
    --text:        #263238;
    --text-light:  #546e7a;
    --border:      #dde6f0;
    --shadow:      0 4px 24px rgba(12,36,97,.10);
    --shadow-lg:   0 10px 48px rgba(12,36,97,.18);
    --gradient:    linear-gradient(135deg,#0c2461 0%,#1565c0 60%,#1e88e5 100%);
    --hero-overlay:linear-gradient(135deg,rgba(12,36,97,.93) 0%,rgba(21,101,192,.80) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

h1,h2,h3,h4,h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .4px;
    transition: all .3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary  { background: var(--blue-mid); color: #fff; border-color: var(--blue-mid); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12,36,97,.3); }
.btn-outline  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 42px; font-size: 17px; }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,.80);
}
.top-bar-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.80); transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar-sep { margin: 0 14px; opacity: .4; }

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(12,36,97,.10);
}
.nav-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 62px; width: auto; }
.nav-logo-text h2 { font-size: 19px; color: var(--navy); font-weight: 800; line-height: 1.1; }
.nav-logo-text span { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 5px;
    transition: all .2s;
    letter-spacing: .2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--off-white); }
.nav-cta { margin-left: 12px; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO (home) ---- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    padding: 90px 24px;
    color: #fff;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.30);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.hero-content h1 { color: #fff; font-size: clamp(30px,5vw,58px); font-weight: 800; margin-bottom: 20px; max-width: 680px; }
.hero-content h1 span { color: var(--blue-light); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; }
.trust-icon { font-size: 20px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    background: var(--gradient);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-dim { position: absolute; inset: 0; background: rgba(12,36,97,.75); }
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: 0 auto;
    padding: 60px 24px;
    color: #fff;
    width: 100%;
}
.page-hero-content h1 { color: #fff; font-size: clamp(26px,4vw,46px); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.75); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.75); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.45); }

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.section-label { display: block; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px; }
.section-title { font-size: clamp(24px,3vw,40px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 580px; margin-bottom: 48px; line-height: 1.7; }
.text-center { text-align: center; }
.section-sub.center { margin-left: auto; margin-right: auto; }
.bg-off { background: var(--off-white); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--navy); }
.stats-inner { max-width: 1220px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 36px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.10); color: #fff; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ---- SERVICE CARDS (home overview) ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 26px; }
.card { background: #fff; border-radius: 8px; box-shadow: var(--shadow); transition: all .3s; overflow: hidden; border: 1px solid var(--border); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }
.card-icon { font-size: 38px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 15px; margin-bottom: 18px; line-height: 1.7; }
.card-link { color: var(--blue-mid); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.card-link:hover { gap: 10px; }

/* ---- SERVICES PAGE ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(310px,1fr)); gap: 26px; }
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 28px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card > p { color: var(--text-light); font-size: 15px; margin-bottom: 18px; line-height: 1.7; }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li { padding: 7px 0; font-size: 14px; color: var(--text-light); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--silver-light); }
.service-features li:last-child { border-bottom: none; }
.service-features li::before { content: '✓'; color: var(--blue-mid); font-weight: 700; flex-shrink: 0; }

/* ---- FEATURES (why choose us) ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 32px; }
.feature { text-align: center; padding: 32px 20px; }
.feature-icon { font-size: 52px; margin-bottom: 18px; display: block; }
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { color: var(--text-light); font-size: 15px; }

/* ---- PROCESS STEPS ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; }
.step { text-align: center; padding: 36px 20px; position: relative; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--silver); }
.step-num { width: 60px; height: 60px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: #fff; margin: 0 auto 18px; }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 14px; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 26px; }
.testimonial { background: #fff; border-radius: 8px; padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--blue-mid); position: relative; }
.stars { color: #fbc02d; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-size: 15px; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0; }
.t-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; }
.t-loc { font-size: 13px; color: var(--text-light); }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--gradient); color: #fff; text-align: center; padding: 80px 24px; }
.cta-banner h2 { color: #fff; font-size: clamp(22px,3.5vw,42px); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.88); font-size: 18px; max-width: 560px; margin: 0 auto 34px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--blue-light); display: block; margin-bottom: 6px; }

/* ---- COVERAGE PAGE ---- */
.region-section { margin-bottom: 56px; }
.region-title { font-size: 22px; color: var(--navy); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 3px solid var(--blue-mid); display: flex; align-items: center; gap: 10px; }
.location-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; }
.loc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 18px 14px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: inherit;
}
.loc-card:hover { border-color: var(--blue-mid); background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow); }
.loc-icon { font-size: 26px; }
.loc-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); }
.loc-link-text { font-size: 11px; color: var(--blue-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }

/* ---- THINGS TO DO ---- */
.todo-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 24px; }
.todo-card { background: #fff; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.todo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.todo-header { background: var(--gradient); padding: 22px 24px; color: #fff; }
.todo-header h3 { color: #fff; font-size: 21px; margin-bottom: 3px; }
.todo-region { font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.todo-body { padding: 20px 24px; }
.todo-body ul { list-style: none; margin-bottom: 18px; }
.todo-body ul li { padding: 7px 0; font-size: 14px; color: var(--text-light); border-bottom: 1px solid var(--silver-light); display: flex; align-items: center; gap: 8px; }
.todo-body ul li:last-child { border-bottom: none; }
.todo-body ul li::before { content: '📍'; font-size: 13px; }
.todo-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-mid); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; transition: gap .2s; }
.todo-link:hover { gap: 10px; }

/* ---- ABOUT PAGE ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col img { border-radius: 10px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; height: 420px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px 22px; transition: all .3s; }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 38px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.fleet-card { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.fleet-card img { width: 100%; height: 220px; object-fit: cover; }
.fleet-body { background: #fff; padding: 20px; border: 1px solid var(--border); border-top: none; }
.fleet-body h3 { font-size: 17px; margin-bottom: 6px; }
.fleet-body p { color: var(--text-light); font-size: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 32px; }
.team-card { text-align: center; }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 16px; }
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-role { color: var(--blue-mid); font-size: 14px; font-weight: 600; margin-bottom: 6px; display: block; }
.team-card span { color: var(--text-light); font-size: 14px; }
.accred-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.accred-badge { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 8px; padding: 16px 24px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); display: flex; align-items: center; gap: 10px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 56px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon { width: 48px; height: 48px; background: var(--off-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ci-text h4 { font-size: 15px; margin-bottom: 4px; }
.ci-text p, .ci-text a { color: var(--text-light); font-size: 15px; line-height: 1.6; }
.ci-text a:hover { color: var(--blue-mid); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Open Sans', sans-serif; font-size: 15px; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.form-control:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(30,136,229,.10); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box { background: linear-gradient(135deg,#e3f0fc 0%,#f0f7ff 100%); border: 1.5px solid #90caf9; border-radius: 10px; padding: 32px; margin-bottom: 48px; }
.highlight-box h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.highlight-box p { color: var(--text-light); font-size: 15px; margin-bottom: 0; }
.notice { background: var(--off-white); border-left: 4px solid var(--blue-mid); padding: 14px 20px; border-radius: 0 6px 6px 0; font-size: 15px; color: var(--text-light); margin-bottom: 30px; }

/* ---- FLOATING CTA ---- */
.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    background: var(--blue-mid);
    color: #fff;
    padding: 13px 22px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 28px rgba(30,136,229,.45);
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.float-cta:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(12,36,97,.4); }

/* ---- FOOTER ---- */
footer { background: var(--dark); color: rgba(255,255,255,.78); }
.footer-main { max-width: 1220px; margin: 0 auto; padding: 64px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 68px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.60); margin-bottom: 24px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,.10); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; font-size: 14px; font-weight: 700; color: #fff; }
.social-btn:hover { background: var(--blue-mid); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.60); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue-light); }
.f-contact { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.60); }
.f-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.f-contact a { color: rgba(255,255,255,.60); transition: color .2s; }
.f-contact a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px; }
.footer-bottom-inner { max-width: 1220px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color .2s; font-size: 13px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; gap: 36px; }
    .two-col img { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
    .stat-item:last-child { border-bottom: none; }
    .step:not(:last-child)::after { display: none; }
    section { padding: 60px 0; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .float-cta { bottom: 16px; right: 16px; padding: 11px 18px; font-size: 13px; }
}
@media (max-width: 680px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 20px; z-index: 999; }
    .nav-links.nav-open { display: flex; }
    .nav-links a { color: #fff; font-size: 18px; }
    .nav-cta { margin-left: 0; }
    .nav-toggle { display: block; }
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 16px; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .top-bar .top-bar-right { display: none; }
}

/* =============================================
   TRUST BAR – Google Rating Strip
   ============================================= */
.trust-bar {
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 3px 12px rgba(12,36,97,.08);
    position: relative;
    z-index: 10;
}
.trust-bar-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1.5px solid var(--border);
    flex-shrink: 0;
}
.google-g-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg,#4285f4 0%,#34a853 50%,#fbbc04 75%,#ea4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}
.trust-g-stars { color: #fbbc04; font-size: 17px; letter-spacing: 1px; line-height: 1; }
.trust-g-score { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); line-height: 1; }
.trust-g-label { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.trust-sep { color: var(--border); font-size: 18px; flex-shrink: 0; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text); }
.trust-item strong { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); }
.trust-view-link {
    margin-left: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a73e8;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: gap .2s;
    padding: 8px 16px;
    background: #e8f0fe;
    border-radius: 100px;
    border: 1.5px solid #c5d9fb;
}
.trust-view-link:hover { gap: 9px; background: #d2e3fc; }
@media (max-width: 900px) {
    .trust-sep { display: none; }
    .trust-bar-inner { gap: 12px; }
}
@media (max-width: 600px) {
    .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .trust-google-rating { border-right: none; padding-right: 0; }
    .trust-view-link { margin-left: 0; }
}

/* =============================================
   GOOGLE REVIEWS SECTION
   ============================================= */
.google-reviews-header {
    display: flex;
    align-items: center;
    gap: 36px;
    background: #fff;
    border-radius: 12px;
    padding: 32px 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.gr-big-score {
    font-size: 72px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}
.gr-stars { color: #fbbc04; font-size: 28px; letter-spacing: 3px; margin-bottom: 6px; }
.gr-count { font-size: 14px; color: var(--text-light); font-weight: 600; }
.gr-divider { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }
.gr-summary { flex: 1; min-width: 200px; }
.gr-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.gr-bar-label { font-size: 13px; color: var(--text-light); width: 30px; text-align: right; flex-shrink: 0; }
.gr-bar-track { flex: 1; height: 8px; background: var(--silver-light); border-radius: 4px; overflow: hidden; }
.gr-bar-fill { height: 100%; background: #fbbc04; border-radius: 4px; }
.gr-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a73e8;
    color: #fff;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all .3s;
    flex-shrink: 0;
}
.gr-google-link:hover { background: #1557b0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,115,232,.3); }
.g-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.g-review-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow .3s;
}
.g-review-card:hover { box-shadow: var(--shadow-lg); }
.g-reviewer { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.g-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    flex-shrink: 0;
}
.g-reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); }
.g-review-date { font-size: 12px; color: var(--text-light); margin-top: 1px; }
.g-review-stars { color: #fbbc04; font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.g-review-text { font-size: 14px; color: var(--text); line-height: 1.75; }
.g-verified { font-size: 11px; color: #1a73e8; font-weight: 600; margin-top: 10px; display: flex; align-items: center; gap: 4px; }

/* =============================================
   GOOGLE MAP SECTION (every page)
   ============================================= */
.map-section { overflow: hidden; }
.map-section-grid { display: grid; grid-template-columns: 360px 1fr; min-height: 400px; }
.map-info-panel {
    background: var(--navy);
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map-info-panel h3 { color: #fff; font-size: 22px; margin-bottom: 28px; }
.map-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.map-info-row:last-of-type { border-bottom: none; margin-bottom: 24px; }
.map-info-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.map-info-row strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.60); display: block; margin-bottom: 3px; }
.map-info-row span, .map-info-row a { font-size: 14px; color: rgba(255,255,255,.88); line-height: 1.6; }
.map-info-row a:hover { color: var(--blue-light); }
.map-embed-panel { min-height: 400px; }
.map-embed-panel iframe { width: 100%; height: 100%; border: none; display: block; min-height: 400px; }
@media (max-width: 800px) {
    .map-section-grid { grid-template-columns: 1fr; }
    .map-embed-panel { min-height: 300px; }
    .map-embed-panel iframe { min-height: 300px; }
}

/* =============================================
   GLOWING BUTTON ANIMATIONS
   ============================================= */
@keyframes btn-glow {
    0%   { box-shadow: 0 4px 15px rgba(30,136,229,.45); }
    50%  { box-shadow: 0 4px 28px rgba(30,136,229,.80), 0 0 45px rgba(30,136,229,.25); }
    100% { box-shadow: 0 4px 15px rgba(30,136,229,.45); }
}
@keyframes call-glow {
    0%   { box-shadow: 0 6px 20px rgba(12,36,97,.55); }
    50%  { box-shadow: 0 6px 32px rgba(30,136,229,.90), 0 0 55px rgba(30,136,229,.30); }
    100% { box-shadow: 0 6px 20px rgba(12,36,97,.55); }
}
@keyframes wa-glow {
    0%   { box-shadow: 0 6px 22px rgba(37,211,102,.55); }
    50%  { box-shadow: 0 6px 36px rgba(37,211,102,.90), 0 0 55px rgba(37,211,102,.30); }
    100% { box-shadow: 0 6px 22px rgba(37,211,102,.55); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.btn-primary {
    animation: btn-glow 2.8s ease-in-out infinite;
}
.btn-primary:hover {
    animation: none;
    box-shadow: 0 8px 36px rgba(30,136,229,.75);
}
.cta-phone {
    animation: call-glow 2.5s ease-in-out infinite;
}
.cta-phone:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(30,136,229,.80);
}

/* =============================================
   FLOATING BUTTON STACK (Call + WhatsApp)
   ============================================= */
.rw-float-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9000;
}
.rw-float-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.rw-float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    animation: pulse-ring 2.4s ease-out infinite;
}
.rw-float-btn:hover { transform: translateY(-3px) scale(1.04); }

.rw-float-call {
    background: linear-gradient(135deg, #0c2461, #1e88e5);
    animation: call-glow 2.6s ease-in-out infinite;
}
.rw-float-call::before { background: rgba(30,136,229,.35); }
.rw-float-call:hover { animation: none; box-shadow: 0 8px 36px rgba(30,136,229,.75); color: #fff; }

.rw-float-wa {
    background: linear-gradient(135deg, #128c7e, #25d366);
    animation: wa-glow 2.6s ease-in-out infinite;
}
.rw-float-wa::before { background: rgba(37,211,102,.35); }
.rw-float-wa:hover { animation: none; box-shadow: 0 8px 36px rgba(37,211,102,.75); color: #fff; }

@media (max-width: 600px) {
    .rw-float-stack { bottom: 16px; right: 14px; gap: 10px; }
    .rw-float-btn { padding: 11px 15px; font-size: 13px; }
}

/* =============================================
   AI CHAT WIDGET
   ============================================= */
#rw-chat-widget {
    position: fixed;
    bottom: 145px;
    right: 24px;
    z-index: 9100;
    font-family: 'Open Sans', sans-serif;
}
#rw-toggle {
    position: fixed;
    bottom: 145px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c2461, #1e88e5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(30,136,229,.55);
    transition: transform .2s, box-shadow .2s;
    z-index: 9100;
    animation: btn-glow 2.8s ease-in-out infinite;
}
#rw-toggle:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 36px rgba(30,136,229,.80); }
.rw-notify {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: pulse-ring 1.8s ease-out infinite;
}
#rw-window {
    position: fixed;
    bottom: 210px;
    right: 24px;
    width: 340px;
    max-height: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(12,36,97,.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: scale(.92) translateY(20px);
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 9099;
}
#rw-window.rw-open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}
#rw-header {
    background: linear-gradient(135deg, #0c2461, #1565c0);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.rw-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.35);
}
.rw-header-info { flex: 1; }
.rw-header-info strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 14px; }
.rw-online { font-size: 11px; color: #69f0ae; font-weight: 600; }
.rw-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 18px; cursor: pointer; padding: 4px 6px; border-radius: 4px; line-height: 1; }
.rw-close:hover { color: #fff; background: rgba(255,255,255,.12); }
#rw-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f5f8fc;
    scroll-behavior: smooth;
}
#rw-msgs::-webkit-scrollbar { width: 4px; }
#rw-msgs::-webkit-scrollbar-thumb { background: #c5d3e0; border-radius: 4px; }
.rw-msg { display: flex; align-items: flex-end; gap: 8px; }
.rw-msg-bot { flex-direction: row; }
.rw-msg-user { flex-direction: row-reverse; }
.rw-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c2461, #1e88e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}
.rw-bubble-wrap { max-width: 82%; }
.rw-bubble {
    display: inline-block;
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.65;
}
.rw-msg-bot .rw-bubble {
    background: #fff;
    color: #263238;
    border-radius: 4px 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(12,36,97,.09);
}
.rw-msg-user .rw-bubble {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    color: #fff;
    border-radius: 16px 16px 4px 16px;
    max-width: 100%;
}
.rw-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
}
.rw-typing span {
    width: 7px;
    height: 7px;
    background: #90a4ae;
    border-radius: 50%;
    display: inline-block;
    animation: rw-dot 1.3s ease-in-out infinite;
}
.rw-typing span:nth-child(2) { animation-delay: .18s; }
.rw-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes rw-dot {
    0%,80%,100% { transform: scale(.6); opacity: .5; }
    40%          { transform: scale(1);   opacity: 1; }
}
.rw-qrs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0 4px 36px;
}
.rw-qr-btn {
    background: #e8f0fe;
    color: #1565c0;
    border: 1.5px solid #c5d9fb;
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap;
}
.rw-qr-btn:hover { background: #1565c0; color: #fff; border-color: #1565c0; }
#rw-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #dde6f0;
    flex-shrink: 0;
}
#rw-input {
    flex: 1;
    border: 1.5px solid #dde6f0;
    border-radius: 24px;
    padding: 9px 15px;
    font-size: 13.5px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    color: #263238;
    transition: border-color .2s;
}
#rw-input:focus { border-color: #1e88e5; }
#rw-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c2461, #1e88e5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .18s, box-shadow .18s;
}
#rw-send:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(30,136,229,.55); }
@media (max-width: 400px) {
    #rw-window { width: calc(100vw - 32px); right: 16px; bottom: 200px; }
    #rw-toggle { right: 16px; }
}

/* =============================================
   MOBILE – COMPREHENSIVE RESPONSIVE FIXES
   ============================================= */

/* Prevent horizontal scroll on all screens */
html, body { overflow-x: hidden; }

/* Safe-area insets for iPhone notch / home bar */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .rw-float-stack {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
    #rw-toggle, #rw-chat-widget {
        bottom: calc(140px + env(safe-area-inset-bottom));
    }
}

/* ---- Tablet & below (≤768px) ---- */
@media (max-width: 768px) {
    /* Reduce section padding */
    section { padding: 52px 0; }
    .container { padding: 0 18px; }

    /* Stats numbers smaller */
    .stat-number { font-size: 34px; }
    .stat-label  { font-size: 12px; }

    /* CTA banner tighter */
    .cta-banner { padding: 52px 20px; }
    .cta-phone  { font-size: 24px; }

    /* Footer padding */
    .footer-main { padding: 44px 20px; }

    /* Page hero */
    .page-hero-content { padding: 44px 20px; }

    /* Steps – remove arrows */
    .step:not(:last-child)::after { display: none; }
    .steps { grid-template-columns: 1fr 1fr; gap: 0; }

    /* Google reviews header */
    .gr-big-score { font-size: 56px; }
    .gr-stars     { font-size: 22px; }

    /* Map panel padding */
    .map-info-panel { padding: 30px 24px; }
}

/* ---- Small phones (≤600px) ---- */
@media (max-width: 600px) {
    /* Top bar – compact single row */
    .top-bar { padding: 6px 0; font-size: 12px; }
    .top-bar-inner { justify-content: center; gap: 6px; }
    .top-bar-sep  { margin: 0 6px; }

    /* Navbar logo – shrink */
    .nav-logo img          { height: 46px; }
    .nav-logo-text h2      { font-size: 15px; }
    .nav-logo-text span    { font-size: 9.5px; letter-spacing: .8px; }

    /* Hero – reduce height & padding */
    .hero             { min-height: 420px; }
    .hero-content     { padding: 56px 18px 52px; }
    .hero-badge       { font-size: 10.5px; padding: 5px 14px; margin-bottom: 16px; }
    .hero-content h1  { margin-bottom: 14px; }
    .hero-content p   { font-size: 15px; margin-bottom: 24px; }

    /* Hero buttons – stack vertically, full width */
    .hero-actions      { flex-direction: column; gap: 10px; align-items: stretch; }
    .hero-actions .btn { text-align: center; }

    /* Hero trust badges – 2 per row */
    .hero-trust  { gap: 12px 20px; margin-top: 24px; }
    .trust-item  { font-size: 12.5px; }
    .trust-icon  { font-size: 17px; }

    /* Page hero */
    .page-hero-content { padding: 36px 18px; }

    /* Sections */
    section         { padding: 44px 0; }
    .container      { padding: 0 16px; }
    .section-sub    { font-size: 15px; margin-bottom: 28px; }

    /* Stats – 2 columns, smaller */
    .stats-inner    { grid-template-columns: 1fr 1fr; }
    .stat-item      { padding: 22px 10px; }
    .stat-number    { font-size: 30px; }

    /* Service cards – 1 column */
    .services-grid  { grid-template-columns: 1fr; gap: 16px; }
    .cards-grid     { grid-template-columns: 1fr; gap: 16px; }
    .card-body      { padding: 22px 18px; }

    /* Features – 2 column grid */
    .features-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature        { padding: 22px 12px; }
    .feature-icon   { font-size: 36px; margin-bottom: 12px; }
    .feature h3     { font-size: 14px; }
    .feature p      { font-size: 13px; }

    /* Steps – single column */
    .steps          { grid-template-columns: 1fr; }
    .step           { padding: 22px 16px; }

    /* Location grid – tighter */
    .location-grid  { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 10px; }
    .loc-card       { padding: 14px 10px; }

    /* Things to do – 1 column */
    .todo-grid      { grid-template-columns: 1fr; }

    /* Fleet grid */
    .fleet-grid     { grid-template-columns: 1fr; }

    /* Team grid – 2 col */
    .team-grid      { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Values grid – 1 col */
    .values-grid    { grid-template-columns: 1fr; gap: 14px; }

    /* Contact */
    .contact-grid   { gap: 28px; }
    .form-row       { grid-template-columns: 1fr; }

    /* CTA banner */
    .cta-banner     { padding: 44px 16px; }
    .cta-banner h2  { margin-bottom: 10px; }
    .cta-banner p   { font-size: 15px; margin-bottom: 24px; }
    .cta-phone      { font-size: 21px; margin-bottom: 4px; }
    .cta-actions    { flex-direction: column; align-items: center; gap: 10px; }
    .cta-actions .btn { width: 100%; max-width: 300px; text-align: center; }

    /* Google reviews header – stack vertically */
    .google-reviews-header {
        flex-direction: column;
        gap: 16px;
        padding: 22px 18px;
        text-align: center;
        align-items: center;
    }
    .gr-big-score   { font-size: 50px; }
    .gr-stars       { font-size: 20px; }
    .gr-divider     { width: 100%; height: 1px; align-self: auto; }
    .gr-summary     { width: 100%; }
    .gr-google-link { width: 100%; justify-content: center; }
    .g-reviews-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-main    { padding: 36px 16px; gap: 24px; }
    .footer-brand img { height: 54px; }
    .footer-bottom  { padding: 14px 16px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

    /* Map panel */
    .map-info-panel  { padding: 24px 18px; }
    .map-info-panel h3 { font-size: 18px; margin-bottom: 18px; }
    .map-embed-panel { min-height: 250px; }
    .map-embed-panel iframe { min-height: 250px; }

    /* Trust bar – compact vertical */
    .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 16px; }
    .trust-google-rating { border-right: none; padding-right: 0; }
    .trust-view-link { margin-left: 0; width: 100%; justify-content: center; }

    /* Highlight / notice boxes */
    .highlight-box  { padding: 22px 18px; }
    .notice         { padding: 12px 16px; font-size: 14px; }

    /* Accreditations */
    .accred-grid    { gap: 10px; }
    .accred-badge   { padding: 12px 16px; font-size: 13px; }

    /* Float stack – icon + short label */
    .rw-float-stack  { bottom: 14px; right: 12px; gap: 9px; }
    .rw-float-btn    { padding: 11px 15px; font-size: 13px; }

    /* Chat toggle position */
    #rw-toggle       { bottom: 138px; right: 12px; width: 50px; height: 50px; }
    #rw-chat-widget  { bottom: 138px; right: 12px; }

    /* Chat window – nearly full width */
    #rw-window {
        width: calc(100vw - 24px);
        right: 12px;
        left: 12px;
        bottom: 200px;
        max-height: calc(100svh - 230px);
    }
}

/* ---- Very small phones (≤380px) ---- */
@media (max-width: 380px) {
    /* Hide logo text, keep just the logo image */
    .nav-logo-text   { display: none; }

    /* Stats – 1 column */
    .stats-inner     { grid-template-columns: 1fr; }
    .stat-item       { border-right: none; }

    /* Features – 1 column */
    .features-grid   { grid-template-columns: 1fr; }

    /* Team – 1 column */
    .team-grid       { grid-template-columns: 1fr; }

    /* Location – 2 col with smaller min */
    .location-grid   { grid-template-columns: 1fr 1fr; }

    /* Buttons full width in hero */
    .btn-lg          { padding: 13px 22px; font-size: 14px; }

    /* Float buttons – icon only to save space */
    .rw-float-btn    { padding: 13px; border-radius: 50%; font-size: 18px; gap: 0; }
    .rw-float-btn span.rw-btn-label { display: none; }

    /* Chat toggle */
    #rw-toggle       { bottom: 130px; right: 10px; width: 46px; height: 46px; }
    #rw-window       { width: calc(100vw - 20px); right: 10px; left: 10px; }
}

/* ---- Touch-friendly tap targets ---- */
@media (hover: none) {
    /* Remove hover transforms on touch – they stay stuck */
    .card:hover, .service-card:hover, .value-card:hover,
    .fleet-card:hover, .todo-card:hover, .loc-card:hover { transform: none; }

    /* Make nav links bigger tap targets */
    .nav-links a    { padding: 10px 14px; }

    /* Increase touch target size for buttons */
    .btn            { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .rw-qr-btn      { min-height: 38px; padding: 8px 14px; }
}

