/* ======================================================
   RITE CHOICE WINDOWS - COMPLETE CSS OVERWRITE
   Files included: ritechoice.css and style.css
   ====================================================== */

:root {
    --red: #d71920;
    --red-dark: #a90f16;
    --dark: #101214;
    --charcoal: #1b1e22;
    --light: #f6f6f6;
    --grey: #6b7280;
    --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: #111827; background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* TOP BAR / HEADER */
.top-strip { background: #111; color: #fff; font-size: 12px; }
.top-strip-inner { display: flex; justify-content: space-between; gap: 20px; padding: 7px 0; }
.top-strip a { color: #fff; text-decoration: underline; }

.site-header {
    position: sticky; top: 0; z-index: 999;
    min-height: 86px; display: flex; background: #fff; border-bottom: 1px solid #eee;
}
.brand-panel {
    width: 255px; background: #050505; display: flex; align-items: center; justify-content: center; padding: 10px;
}
.brand img { height: 62px; width: auto; display: block; }
.nav-panel { flex: 1; display: flex; align-items: center; padding: 0 34px; gap: 24px; }
.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: 14px; font-weight: 800; }
.main-nav > a, .nav-drop > a { display: flex; align-items: center; min-height: 86px; position: relative; }
.main-nav > a:hover, .nav-drop > a:hover { color: var(--red); }
.main-nav > a:first-child:after {
    content: ""; position: absolute; left: 0; bottom: 24px; width: 100%; height: 3px; background: var(--red);
}
.nav-drop { position: relative; }
.nav-drop:after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 14px; }
.nav-drop > div {
    display: none; position: absolute; top: 100%; left: 0; min-width: 270px;
    background: #fff; border-top: 4px solid var(--red);
    box-shadow: 0 15px 40px rgba(0,0,0,.17); padding: 10px; z-index: 9999;
}
.nav-drop:hover > div, .nav-drop > div:hover { display: block; }
.nav-drop > div a { display: block; padding: 12px 13px; color: #222; font-weight: 800; border-radius: 4px; }
.nav-drop > div a:hover { background: #f7f7f7; color: var(--red); }
.menu-toggle { display: none; }

.header-cta, .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 3px; padding: 14px 24px; font-weight: 900; font-size: 14px; border: 0; line-height: 1;
}
.header-cta, .btn-red { background: var(--red); color: #fff; }
.header-cta:hover, .btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-outline { background: rgba(0,0,0,.35); color: #fff; border: 1px solid rgba(255,255,255,.75); }
.btn-outline:hover { background: #fff; color: #111; }

/* HERO */
.hero-home {
    position: relative; min-height: 610px; color: #fff;
    background: linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.48) 38%,rgba(0,0,0,.08) 72%),
                url('/assets/img/ritechoice-hero.jpg') center/cover no-repeat;
}
.hero-home:before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg,rgba(4,10,18,.75),rgba(4,10,18,.12)); pointer-events: none;
}
.hero-content { position: relative; min-height: 610px; display: flex; align-items: center; }
.hero-copy { max-width: 650px; padding: 60px 0 120px; }
.event-ribbon {
    display: inline-block; background: var(--red); color: #fff; text-transform: uppercase;
    font-weight: 900; padding: 11px 18px; font-size: 13px; margin-bottom: 22px; position: relative;
}
.event-ribbon:after {
    content: ""; position: absolute; right: -22px; top: 0;
    border-top: 19px solid transparent; border-bottom: 19px solid transparent; border-left: 22px solid var(--red);
}
.hero-copy h1 { font-size: 52px; line-height: 1.04; margin: 0 0 18px; letter-spacing: -1px; }
.hero-copy p { font-size: 19px; line-height: 1.55; margin: 0 0 22px; }
.hero-checks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; font-weight: 800; }
.hero-checks li { position: relative; padding-left: 32px; }
.hero-checks li:before {
    content: "✓"; position: absolute; left: 0; top: -2px; width: 22px; height: 22px; border-radius: 50%;
    background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* QUOTE BAND */
.quote-band { position: relative; z-index: 5; margin-top: -58px; }
.quote-band-inner {
    background: linear-gradient(90deg,#18202a,#0e1116); border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 18px 45px rgba(0,0,0,.28); border-radius: 8px; color: #fff;
    display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 24px 28px;
}
.quote-intro h2 { margin: 0 0 8px; font-size: 30px; line-height: 1.05; }
.quote-intro h2 span { color: var(--red); }
.quote-intro p { margin: 0; font-size: 13px; line-height: 1.5; }
.quote-fields { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.quote-inline input[type=text], .quote-inline input[type=email] {
    width: 100%; border: 0; border-radius: 4px; padding: 15px 14px; font-weight: 700;
}
.quote-options-label { text-align: center; font-size: 12px; font-weight: 900; margin: 12px 0 8px; }
.quote-options { display: grid; grid-template-columns: repeat(5,1fr) 170px; gap: 8px; align-items: stretch; }
.quote-options label {
    border: 1px solid rgba(255,255,255,.3); border-radius: 4px; min-height: 52px; padding: 9px 8px;
    display: flex; align-items: center; justify-content: center; text-align: center; cursor: pointer; font-size: 12px; font-weight: 900;
}
.quote-options input { display: none; }
.quote-options label:hover { background: rgba(255,255,255,.08); }
.quote-options button {
    border: 0; border-radius: 4px; background: var(--red); color: #fff; font-weight: 900; cursor: pointer; text-transform: uppercase;
}
.quote-options button:hover { background: var(--red-dark); }

/* SECTIONS */
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title span { display: block; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.section-title h2 { font-size: 34px; margin: 0; color: #111; position: relative; }
.section-title h2:after { content: ""; display: block; width: 48px; height: 3px; background: var(--red); margin: 12px auto 0; }
.section-title.compact { margin-bottom: 24px; }

/* PRODUCT CARDS */
.product-image-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.image-card {
    background: #fff; border: 1px solid #e9e9e9; box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border-radius: 4px; overflow: hidden; text-align: center; position: relative; transition: .2s;
}
.image-card:hover { transform: translateY(-5px); border-color: var(--red); }
.card-img { height: 178px; background: #ddd center/cover no-repeat; }
.image-card.windows .card-img { background-image: url('/assets/img/install-window.jpg'); }
.image-card.doors .card-img { background-image: url('/assets/img/install-door.jpg'); }
.image-card.bifolds .card-img { background-image: url('/assets/img/install-bifold.jpg'); }
.image-card.conservatory .card-img { background-image: url('/assets/img/install-conservatory.jpg'); }
.round-icon {
    width: 66px; height: 66px; border-radius: 50%; background: #fff; color: var(--red); border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,.16); display: flex; align-items: center; justify-content: center;
    margin: -33px auto 14px; font-size: 28px; font-weight: 900; position: relative;
}
.image-card h3 { margin: 0 18px 10px; font-size: 21px; }
.image-card p { margin: 0 24px 20px; font-size: 14px; line-height: 1.45; }
.image-card strong {
    display: inline-block; background: var(--red); color: #fff; padding: 12px 20px;
    border-radius: 3px; margin-bottom: 24px; text-transform: uppercase; font-size: 12px;
}

/* PAGE CONTENT */
.page-hero { background: #151515; color: #fff; padding: 86px 0; }
.page-hero h1 { font-size: 48px; margin: 0 0 12px; }
.service-hero { background: linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.35)), url('/assets/img/ritechoice-hero.jpg') center/cover no-repeat; }
.page-main { background: #f7f7f7; }
.content-layout { display: grid; grid-template-columns: 1fr 360px; gap: 42px; align-items: start; }
.content-layout aside {
    position: sticky; top: 110px; background: #fff; border: 1px solid #eee; padding: 24px;
    border-radius: 10px; box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.content-card, .inner-block {
    background: #fff; border: 1px solid #e9e9e9; border-radius: 8px;
    padding: 30px; margin-bottom: 28px; box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.content-rich, .article-content { font-size: 17px; line-height: 1.75; }
.content-rich h2, .article-content h2 { font-size: 34px; margin-top: 0; }
.content-rich h3, .article-content h3 { font-size: 26px; margin-top: 32px; }
.content-rich ul { padding-left: 24px; }
.content-rich li { margin-bottom: 10px; }

.mini-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mini-card {
    display: block; background: #fff; border: 1px solid #e6e6e6; border-left: 4px solid var(--red);
    border-radius: 6px; padding: 18px;
}
.mini-card strong { display: block; color: #111; margin-bottom: 8px; }
.mini-card span { display: block; color: #555; line-height: 1.45; }

.related-link-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.related-link-grid a { background: #20252b; color: #fff; padding: 14px; border-radius: 4px; text-align: center; font-weight: 800; }
.related-link-grid a:hover { background: var(--red); }

.quote-form h3 { margin-top: 0; }
.quote-form input, .quote-form textarea, .quote-form select {
    width: 100%; margin-bottom: 11px; border: 1px solid #ddd; border-radius: 4px; padding: 13px; font-size: 15px;
}
.quote-form button {
    width: 100%; border: 0; background: var(--red); color: #fff; padding: 15px; font-weight: 900; border-radius: 4px; cursor: pointer;
}
.quote-form button:hover { background: var(--red-dark); }

/* NEWS FINAL - OVERRIDES LISTS INTO 2x2 IMAGE CARDS */
.news-home-section { background: #f7f7f7; padding: 80px 0; }
.news-two-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 40px !important;
    margin-top: 35px !important;
    list-style: none !important;
    padding-left: 0 !important;
}
.news-two-grid > * { list-style: none !important; }
.news-tile {
    display: block !important; background: #fff !important; border: 0 !important;
    box-shadow: none !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important;
}
.news-tile-image {
    display: block !important; width: 100% !important; height: 320px !important;
    background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
    border-radius: 8px !important; margin-bottom: 20px !important;
}
.news-tile-content { display: block !important; padding: 0 !important; }
.news-date {
    display: block !important; color: var(--red) !important; font-size: 13px !important;
    font-weight: 800 !important; text-transform: uppercase !important; margin-bottom: 10px !important;
}
.news-tile h2 {
    font-size: 30px !important; line-height: 1.18 !important; margin: 0 0 18px !important; color: #151515 !important;
}
.news-read-more {
    display: inline-block !important; background: var(--red) !important; color: #fff !important;
    padding: 13px 24px !important; border-radius: 3px !important; font-size: 13px !important;
    font-weight: 900 !important; text-transform: uppercase !important;
}
.news-read-more:hover { background: var(--red-dark) !important; color: #fff !important; text-decoration: none !important; }
.article-main-image {
    display: block !important; width: 100% !important; min-height: 420px !important;
    background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
    border-radius: 8px !important; margin-bottom: 30px !important;
}

/* AREAS SEO */
.area-intro-panel {
    background: #fff; border: 1px solid #e7e7e7; border-left: 6px solid var(--red);
    border-radius: 8px; padding: 35px; margin-bottom: 35px; box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.area-intro-panel h2 { margin-top: 0; font-size: 34px; }
.area-intro-panel p { font-size: 17px; line-height: 1.8; }
.area-grid-expanded { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 18px !important; }
.area-grid-expanded a {
    background: #20252b !important; color: #fff !important; padding: 22px !important;
    border-radius: 8px !important; text-align: center !important; transition: .25s;
}
.area-grid-expanded a:hover { background: var(--red) !important; color: #fff !important; }
.area-grid-expanded strong { display: block; font-size: 20px; margin-bottom: 8px; }
.area-grid-expanded span { display: block; font-size: 12px; color: rgba(255,255,255,.75); }

.seo-service-grid { display: grid !important; grid-template-columns: repeat(2,1fr) !important; gap: 18px !important; }
.seo-service-grid a {
    display: block; background: #fff !important; border: 1px solid #e5e5e5 !important;
    border-left: 5px solid var(--red) !important; border-radius: 8px !important; padding: 22px !important; transition: .25s;
}
.seo-service-grid a:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.seo-service-grid strong { display: block; color: #111; font-size: 18px; margin-bottom: 8px; }
.seo-service-grid span { display: block; color: #666; line-height: 1.6; }

/* FOOTER */
.site-footer { background: #101214; color: #fff; padding: 46px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.3fr; gap: 42px; }
.footer-logo { height: 54px; background: #fff; padding: 6px; border-radius: 2px; }
.site-footer p { color: #d6d6d6; line-height: 1.55; }
.site-footer h4 { margin: 0 0 16px; text-transform: uppercase; font-size: 14px; }
.site-footer a { display: block; color: #ddd; margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom { text-align: center; border-top: 1px solid #2c2f34; margin-top: 34px; padding: 18px; color: #aaa; font-size: 13px; }

.whatsapp-float {
    position: fixed; right: 22px; bottom: 74px; background: #25d366; color: #fff;
    width: 74px; height: 74px; border-radius: 50%; font-weight: 900; z-index: 90;
    box-shadow: 0 12px 25px rgba(0,0,0,.25); display: flex; flex-direction: column;
    align-items: center; justify-content: center; font-size: 10px; gap: 2px;
}
.whatsapp-float i { font-size: 28px; }
.mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3,1fr);
    z-index: 100; background: #111;
}
.mobile-cta a { color: #fff; text-align: center; padding: 15px 10px; font-weight: 900; border-right: 1px solid #333; }
.mobile-cta a:first-child, .mobile-cta a:last-child { background: var(--red); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .main-nav { gap: 14px; font-size: 13px; }
    .area-grid-expanded { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 1050px) {
    .site-header { min-height: 80px; }
    .brand-panel { width: 210px; }
    .nav-panel { padding: 0 18px; }
    .quote-band-inner { grid-template-columns: 1fr; }
    .quote-fields { grid-template-columns: repeat(2,1fr); }
    .quote-options { grid-template-columns: repeat(2,1fr); }
    .product-image-grid, .area-grid-dark { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .news-two-grid, .seo-service-grid, .area-grid-expanded, .footer-grid,
    .content-layout, .mini-card-grid, .related-link-grid, .showroom-section {
        grid-template-columns: 1fr !important;
    }
    .article-main-image, .news-tile-image {
        min-height: 230px !important; height: 230px !important;
    }
}
@media (max-width: 760px) {
    body { padding-bottom: 54px; }
    .top-strip { display: none; }
    .site-header { display: flex; min-height: 78px; }
    .brand-panel { width: 185px; }
    .brand img { height: 52px; }
    .menu-toggle {
        display: block; margin-left: auto; background: var(--red); color: #fff; border: 0;
        padding: 11px 15px; border-radius: 4px; font-weight: 900;
    }
    .main-nav {
        display: none; position: absolute; top: 78px; left: 0; right: 0; background: #fff;
        padding: 20px; flex-direction: column; align-items: flex-start; box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }
    .nav-open .main-nav { display: flex; }
    .main-nav > a, .nav-drop > a { min-height: auto; padding: 10px 0; }
    .nav-drop { width: 100%; }
    .nav-drop > div {
        position: static; display: block; box-shadow: none; border-top: 1px solid #eee;
        padding: 5px 0 10px; min-width: 100%;
    }
    .header-cta { display: none; }
    .hero-home, .hero-content { min-height: auto; }
    .hero-copy { padding: 54px 0 100px; }
    .hero-copy h1 { font-size: 36px; }
    .hero-copy p { font-size: 17px; }
    .quote-band { margin-top: -44px; }
    .quote-band-inner { padding: 22px; }
    .quote-fields, .quote-options, .product-image-grid, .area-grid-dark { grid-template-columns: 1fr; }
    .content-layout aside { position: static; }
    .whatsapp-float { bottom: 68px; width: 58px; height: 58px; font-size: 8px; }
    .whatsapp-float i { font-size: 22px; }
    .page-hero h1 { font-size: 34px; }
}
.news-three-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
}

.news-card {
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.08) !important;
    list-style: none !important;
}

.news-card-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block !important;
}

.news-card-content {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.news-date {
    color: #d71920 !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.news-card h2 {
    font-size: 23px !important;
    line-height: 1.25 !important;
    margin: 0 0 20px !important;
}

.news-read-more {
    margin-top: auto !important;
    display: inline-block !important;
    background: #d71920 !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    font-weight: 900 !important;
    width: fit-content !important;
}

@media(max-width:1200px) {
    .news-three-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width:768px) {
    .news-three-grid {
        grid-template-columns: 1fr !important;
    }
}

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

.gallery-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

.gallery-card-content {
    padding: 20px;
}

.gallery-card h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.gallery-card p {
    color: #666;
    line-height: 1.5;
}

.gallery-link {
    display: inline-block;
    background: #d71920;
    color: #fff;
    padding: 12px 20px;
    font-weight: 900;
    border-radius: 4px;
}

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

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

.review-heading {
    text-align: center;
    margin-bottom: 26px
}

    .review-heading span {
        display: block;
        color: #d71920;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 12px;
        margin-bottom: 6px
    }

    .review-heading h2 {
        font-size: 34px;
        margin: 0 0 8px
    }

    .review-heading p {
        color: #666;
        margin: 0
    }

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

.review-card {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.06)
}

.stars {
    color: #d71920;
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.muted-star {
    color: #ddd
}

.review-card p {
    line-height: 1.65;
    color: #444
}

.review-card strong {
    display: block;
    margin-top: 16px;
    color: #111
}

.review-card small {
    display: block;
    color: #777;
    margin-top: 4px
}

.gallery-strip-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.gallery-strip-item {
    display: block;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.06)
}

    .gallery-strip-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block
    }

    .gallery-strip-item span {
        display: block;
        padding: 14px;
        font-weight: 900;
        color: #111
    }

.center-link {
    text-align: center;
    margin-top: 24px
}

@media(max-width:900px) {
    .review-grid, .gallery-strip-grid {
        grid-template-columns: 1fr
    }

    .gallery-strip-item img {
        height: 230px
    }
}

.whatsapp-float {
    position: fixed !important;
    right: 22px !important;
    bottom: 82px !important;
    width: auto !important;
    height: auto !important;
    min-width: 185px !important;
    padding: 13px 18px !important;
    border-radius: 999px !important;
    background: #25d366 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.28) !important;
    z-index: 9999 !important;
}

    .whatsapp-float i {
        font-size: 24px !important;
    }

    .whatsapp-float span {
        display: inline-block !important;
    }

    .whatsapp-float:hover {
        background: #1ebe5d !important;
        color: #fff !important;
        transform: translateY(-2px);
    }

@media(max-width: 760px) {
    .whatsapp-float {
        right: 14px !important;
        bottom: 70px !important;
        min-width: 155px !important;
        padding: 11px 14px !important;
        font-size: 13px !important;
    }

        .whatsapp-float i {
            font-size: 21px !important;
        }
}

@media(max-width: 760px) {
    .main-nav {
        display: none !important;
    }

    body.nav-open .main-nav {
        display: flex !important;
        position: absolute !important;
        top: 78px !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        padding: 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        z-index: 99999 !important;
        box-shadow: 0 20px 40px rgba(0,0,0,.18) !important;
    }

        body.nav-open .main-nav a {
            color: #111 !important;
            width: 100% !important;
            padding: 10px 0 !important;
        }

    .nav-drop {
        width: 100% !important;
    }

        .nav-drop > div {
            display: block !important;
            position: static !important;
            box-shadow: none !important;
            border-top: 1px solid #eee !important;
            padding-left: 15px !important;
        }
}

/* Phase 6 - Technical SEO + conversion styling */

.trust-conversion-band {
    background: #111820;
    color: #fff;
    padding: 32px 0;
}

.trust-conversion-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

    .trust-conversion-grid div {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 8px;
        padding: 18px;
    }

    .trust-conversion-grid strong {
        display: block;
        font-size: 17px;
        margin-bottom: 7px;
        color: #fff;
    }

    .trust-conversion-grid span {
        display: block;
        color: #d7d7d7;
        font-size: 14px;
        line-height: 1.5;
    }

.sticky-conversion-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(760px, calc(100% - 30px));
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

    .sticky-conversion-bar a {
        padding: 12px 18px;
        text-align: center;
        color: #111;
        border-right: 1px solid #e6e6e6;
    }

        .sticky-conversion-bar a:last-child {
            border-right: 0;
        }

    .sticky-conversion-bar strong {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
    }

    .sticky-conversion-bar span {
        display: block;
        font-size: 12px;
        color: #666;
    }

.sticky-quote {
    background: #d71920;
    color: #fff !important;
}

    .sticky-quote span {
        color: #fff !important;
    }

.sticky-whatsapp {
    background: #25d366;
    color: #fff !important;
}

    .sticky-whatsapp span {
        color: #fff !important;
    }

@media(max-width: 900px) {
    .trust-conversion-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .sticky-conversion-bar {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }
}

@media(max-width: 600px) {
    .trust-conversion-grid {
        grid-template-columns: 1fr;
    }

    .sticky-conversion-bar a {
        padding: 11px 6px;
    }

    .sticky-conversion-bar strong {
        font-size: 12px;
    }

    .sticky-conversion-bar span {
        font-size: 10px;
    }
}
/* Phase 7 SEO content + photos */

.visual-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-size: 13px;
    color: rgba(255,255,255,.82);
}

    .visual-breadcrumb a {
        color: #fff;
        font-weight: 900;
    }

    .visual-breadcrumb strong {
        color: #fff;
    }

.photo-feature-block {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 26px;
    align-items: center;
    background: #111820;
    color: #fff;
    overflow: hidden;
}

.photo-feature-copy span {
    color: #d71920;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.photo-feature-copy h2 {
    font-size: 34px;
    margin: 8px 0 12px;
}

.photo-feature-copy p {
    color: #ddd;
    line-height: 1.65;
}

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

.photo-feature-card {
    display: block;
    background: #fff;
    color: #111;
    border-radius: 8px;
    overflow: hidden;
}

    .photo-feature-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        display: block;
    }

    .photo-feature-card strong {
        display: block;
        padding: 12px;
        font-size: 14px;
    }

.seo-copy-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

    .seo-copy-grid div {
        background: #f7f7f7;
        border-left: 4px solid #d71920;
        border-radius: 8px;
        padding: 20px;
    }

    .seo-copy-grid h3 {
        margin-top: 0;
    }

.nearby-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .nearby-area-links a {
        background: #20252b;
        color: #fff;
        padding: 10px 14px;
        border-radius: 999px;
        font-weight: 900;
        font-size: 13px;
    }

        .nearby-area-links a:hover {
            background: #d71920;
            color: #fff;
        }

.seo-local-block {
    background: linear-gradient(180deg, #fff, #f7f7f7);
}

@media(max-width: 1000px) {
    .photo-feature-block,
    .seo-copy-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 760px) {
    .photo-feature-grid {
        grid-template-columns: 1fr;
    }

    .photo-feature-card img {
        height: 230px;
    }
}
/* REMOVE OLD MOBILE BAR */
.mobile-cta {
    display: none !important;
}

/* SINGLE STICKY CONVERSION BAR */
.sticky-conversion-bar {
    position: fixed !important;
    left: 50% !important;
    bottom: 14px !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    width: min(620px, calc(100% - 28px)) !important;
    background: #fff !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.28) !important;
}

    .sticky-conversion-bar a {
        padding: 11px 14px !important;
        text-align: center !important;
        color: #111 !important;
        border-right: 1px solid #e8e8e8 !important;
        line-height: 1.15 !important;
    }

        .sticky-conversion-bar a:last-child {
            border-right: 0 !important;
        }

    .sticky-conversion-bar strong {
        display: block !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        font-weight: 900 !important;
    }

    .sticky-conversion-bar span {
        display: block !important;
        font-size: 11px !important;
        color: #666 !important;
        margin-top: 3px !important;
    }

.sticky-quote {
    background: #d71920 !important;
    color: #fff !important;
}

    .sticky-quote span {
        color: #fff !important;
    }

.sticky-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}

    .sticky-whatsapp span {
        color: #fff !important;
    }

@media(max-width: 760px) {
    body {
        padding-bottom: 68px !important;
    }

    .sticky-conversion-bar {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
    }

        .sticky-conversion-bar a {
            padding: 12px 6px !important;
        }

        .sticky-conversion-bar strong {
            font-size: 11px !important;
        }

        .sticky-conversion-bar span {
            font-size: 9px !important;
        }
}

.bot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.success-notice {
    background: #e9f9ef;
    border-left: 4px solid #16a34a;
    color: #14532d;
    padding: 12px;
    margin-bottom: 14px;
}

.error-notice {
    background: #fff1f2;
    border-left: 4px solid #d71920;
    color: #7f1d1d;
    padding: 12px;
    margin-bottom: 14px;
}

.h-captcha {
    margin: 12px 0;
}

.whatsapp-float {
    min-width: 175px !important;
    border-radius: 999px !important;
}
/* Phase 8 - Authority & Topical SEO */

.authority-grid,
.guide-link-grid,
.cost-factor-grid,
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

    .authority-card,
    .guide-link-grid a,
    .cost-factor-grid div,
    .comparison-grid div {
        background: #fff;
        border: 1px solid #e7e7e7;
        border-left: 5px solid #d71920;
        border-radius: 8px;
        padding: 22px;
        box-shadow: 0 8px 20px rgba(0,0,0,.05);
    }

        .authority-card h3,
        .guide-link-grid h3,
        .cost-factor-grid h3,
        .comparison-grid h3 {
            margin-top: 0;
            font-size: 22px;
        }

        .authority-card p,
        .guide-link-grid p,
        .cost-factor-grid p,
        .comparison-grid p {
            color: #555;
            line-height: 1.65;
        }

        .authority-card a,
        .guide-link-grid a strong {
            color: #d71920;
            font-weight: 900;
        }

.authority-callout {
    background: #111820;
    color: #fff;
    padding: 28px;
    border-radius: 10px;
    margin: 28px 0;
}

    .authority-callout h2,
    .authority-callout h3 {
        color: #fff;
        margin-top: 0;
    }

    .authority-callout p {
        color: #ddd;
    }

.authority-list {
    columns: 2;
    margin: 22px 0;
}

    .authority-list li {
        margin-bottom: 10px;
    }

.price-note {
    background: #f7f7f7;
    border-left: 5px solid #d71920;
    padding: 18px;
    border-radius: 8px;
    margin: 20px 0;
}

@media(max-width: 900px) {
    .authority-grid,
    .guide-link-grid,
    .cost-factor-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .authority-list {
        columns: 1;
    }
}
/* Phase 9 Admin */

.admin-body {
    background: #f4f5f7;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.admin-login-card {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

    .admin-login-card h1 {
        margin: 0 0 10px;
    }

    .admin-login-card label {
        display: block;
        font-weight: 900;
        margin: 16px 0 6px;
    }

    .admin-login-card input {
        width: 100%;
        padding: 13px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    .admin-login-card button,
    .admin-button,
    .admin-filter button {
        display: inline-block;
        background: #d71920;
        color: #fff;
        border: 0;
        border-radius: 6px;
        padding: 13px 20px;
        font-weight: 900;
        cursor: pointer;
        text-decoration: none;
    }

    .admin-login-card button {
        width: 100%;
        margin-top: 20px;
    }

.admin-error {
    background: #fff1f2;
    border-left: 4px solid #d71920;
    color: #7f1d1d;
    padding: 12px;
    margin: 16px 0;
}

.admin-topbar {
    background: #111820;
    color: #fff;
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .admin-topbar a {
        color: #fff;
        margin-left: 18px;
        font-weight: 900;
    }

.admin-shell {
    width: min(1240px, 94%);
    margin: 34px auto;
}

.admin-page-title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

    .admin-page-title h1 {
        margin: 0 0 6px;
    }

    .admin-page-title p {
        margin: 0;
        color: #666;
    }

.admin-filter {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 220px 140px 110px 80px;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

    .admin-filter input[type=text],
    .admin-filter select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

.admin-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 13px;
}

.admin-table-wrap {
    background: #fff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        background: #f0f1f3;
        text-align: left;
        padding: 14px;
        font-size: 13px;
        text-transform: uppercase;
    }

    .admin-table td {
        padding: 14px;
        border-top: 1px solid #eee;
        vertical-align: top;
    }

.unread-row {
    background: #fff8f8;
    font-weight: 900;
}

.badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.badge-new {
    background: #d71920;
    color: #fff;
}

.badge-read {
    background: #e5e7eb;
    color: #111;
}

.admin-actions a {
    display: inline-block;
    margin-right: 8px;
    color: #d71920;
    font-weight: 900;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
}

.admin-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

    .admin-detail-card h2 {
        margin-top: 0;
    }

    .admin-detail-card dt {
        font-weight: 900;
        margin-top: 14px;
    }

    .admin-detail-card dd {
        margin-left: 0;
        margin-top: 4px;
    }

.admin-message {
    white-space: pre-line;
    line-height: 1.7;
}

@media(max-width: 900px) {
    .admin-filter,
    .admin-detail-grid,
    .admin-page-title {
        grid-template-columns: 1fr;
        display: grid;
    }

    .admin-topbar {
        display: block;
    }

        .admin-topbar nav {
            margin-top: 12px;
        }

        .admin-topbar a {
            margin-left: 0;
            margin-right: 14px;
        }
}
/* Phase 10 - image performance */

.news-card-image,
.article-main-img,
.gallery-card-img,
.gallery-strip-img,
.photo-feature-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.news-card-image {
    height: 250px;
}

.article-main-img {
    max-height: 480px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.gallery-card-img {
    height: 260px;
}

.gallery-strip-img {
    height: 220px;
}

.photo-feature-img {
    height: 190px;
}

picture {
    display: block;
}

.gallery-card picture,
.news-card picture,
.gallery-strip-item picture,
.photo-feature-card picture {
    width: 100%;
}

@media(max-width: 768px) {
    .news-card-image,
    .gallery-card-img,
    .gallery-strip-img,
    .photo-feature-img {
        height: 230px;
    }
}
