/*
Theme Name:        SWM Drainage
Theme URI:         https://swmdrainage.co.uk
Description:       Custom block theme for SWM Drainage — fully editable via the WordPress block editor.
Author:            Ice and a Slice
Version:           3.0.0
Requires at least: 6.3
Tested up to:      6.7
*/

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

        :root {
            --navy: #0b1728;
            --navy-mid: #122035;
            --navy-light: #1a2e4a;
            --blue: #1a6fc4;
            --blue-bright: #2288e8;
            --amber: #f5a623;
            --amber-light: #ffc04d;
            --white: #f0f4f8;
            --grey: #8da0b8;
            --grey-light: #c6d4e2;
            --font-display: 'Bebas Neue', sans-serif;
            --font-cond: 'Barlow Condensed', sans-serif;
            --font-body: 'Barlow', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ── TOPBAR ── */
        .topbar {
            background: var(--amber);
            color: var(--navy);
            text-align: center;
            padding: 8px 16px;
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .topbar a { color: var(--navy); text-decoration: none; font-weight: 700; }

        /* ── NAV ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 23, 40, 0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 111, 196, 0.3);
            padding: 0 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--blue);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 22px;
            color: white;
            letter-spacing: -1px;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-name {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--white);
            letter-spacing: 2px;
            line-height: 1;
        }

        .logo-tagline {
            font-family: var(--font-cond);
            font-size: 11px;
            color: var(--amber);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-cond);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--grey-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--amber); }

        .nav-cta {
            background: var(--amber);
            color: var(--navy) !important;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 700 !important;
            transition: background 0.2s !important;
        }

        .nav-cta:hover { background: var(--amber-light) !important; color: var(--navy) !important; }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            width: 26px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--navy-mid);
            padding: 24px 5%;
            border-bottom: 2px solid var(--blue);
            z-index: 99;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-family: var(--font-cond);
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--grey-light);
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mobile-menu a.cta-mobile {
            background: var(--amber);
            color: var(--navy);
            text-align: center;
            padding: 14px;
            border-radius: 4px;
            border: none;
            margin-top: 8px;
        }

        /* ── HERO ── */
        .hero {
            min-height: 92vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 0;
            padding: 80px 5% 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 70% 50%, rgba(26, 111, 196, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Diagonal divider */
        .hero::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 0;
            bottom: 0;
            width: 80px;
            background: var(--navy);
            transform: skewX(-3deg);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeUp 0.8s ease both;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 111, 196, 0.15);
            border: 1px solid rgba(26, 111, 196, 0.4);
            border-radius: 100px;
            padding: 6px 16px;
            font-family: var(--font-cond);
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amber);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(56px, 7vw, 100px);
            line-height: 0.9;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-title .line-accent { color: var(--amber); }
        .hero-title .line-blue { color: var(--blue-bright); }

        .hero-sub {
            font-size: 17px;
            line-height: 1.7;
            color: var(--grey-light);
            max-width: 480px;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--amber);
            color: var(--navy);
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 16px 28px;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-primary:hover {
            background: var(--amber-light);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid rgba(255,255,255,0.25);
            color: var(--white);
            font-family: var(--font-cond);
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 26px;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            border-color: var(--blue-bright);
            color: var(--blue-bright);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 52px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .stat-item {}

        .stat-num {
            font-family: var(--font-display);
            font-size: 42px;
            color: var(--amber);
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--grey);
            margin-top: 4px;
        }

        /* Hero image side */
        .hero-visual {
            position: relative;
            z-index: 0;
            padding-left: 5%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            animation: fadeIn 1s 0.3s ease both;
        }

        .truck-main {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .truck-thumbs {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .truck-thumb {
            width: 100%;
            height: 110px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.06);
            cursor: pointer;
            transition: all 0.2s;
            opacity: 0.7;
        }

        .truck-thumb:hover, .truck-thumb.active {
            opacity: 1;
            border-color: var(--amber);
        }

        /* Floating card */
        .hero-card {
            position: absolute;
            bottom: 24px;
            left: 10px;
            background: rgba(11, 23, 40, 0.92);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(26, 111, 196, 0.35);
            border-radius: 8px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            z-index: 5;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: var(--blue);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .card-text strong {
            display: block;
            font-family: var(--font-cond);
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
        }

        .card-text span {
            font-size: 12px;
            color: var(--amber);
            font-weight: 600;
        }

        /* ── TRUST BAR ── */
        .trust-bar {
            background: var(--navy-mid);
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 22px 5%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-cond);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--grey-light);
        }

        .trust-item svg, .trust-icon { color: var(--amber); font-size: 18px; }

        /* ── SECTIONS ── */
        section { padding: 100px 5%; }

        .section-label {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(38px, 5vw, 64px);
            line-height: 0.95;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-body {
            font-size: 16px;
            line-height: 1.75;
            color: var(--grey-light);
            max-width: 580px;
        }

        /* ── SERVICES ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-top: 60px;
            border-radius: 10px;
            overflow: hidden;
        }

        .service-card {
            background: var(--navy-mid);
            padding: 56px 48px;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .service-card:hover { background: var(--navy-light); }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue), var(--amber));
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 100px;
            color: rgba(255,255,255,0.04);
            position: absolute;
            top: 10px;
            right: 20px;
            line-height: 1;
            pointer-events: none;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: rgba(26, 111, 196, 0.15);
            border: 1px solid rgba(26, 111, 196, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 28px;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 36px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            line-height: 1.05;
        }

        .service-desc {
            font-size: 15px;
            line-height: 1.75;
            color: var(--grey-light);
            margin-bottom: 28px;
        }

        .service-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 36px;
        }

        .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--grey-light);
            line-height: 1.5;
        }

        .service-list li::before {
            content: '✓';
            color: var(--amber);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .service-link {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--blue-bright);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(34, 136, 232, 0.3);
            padding-bottom: 4px;
            transition: all 0.2s;
        }

        .service-link:hover {
            color: var(--amber);
            border-color: rgba(245,166,35,0.4);
        }

        /* ── WHY US ── */
        .why-section {
            background: var(--navy-mid);
        }

        .why-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-image-stack {
            position: relative;
        }

        .why-img-main {
            width: 100%;
            height: 440px;
            object-fit: cover;
            border-radius: 8px;
        }

        .why-img-accent {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 180px;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
            border: 4px solid var(--navy-mid);
        }

        .why-badge {
            position: absolute;
            top: 24px;
            right: -20px;
            background: var(--amber);
            color: var(--navy);
            border-radius: 8px;
            padding: 14px 18px;
            text-align: center;
        }

        .why-badge .num {
            font-family: var(--font-display);
            font-size: 36px;
            line-height: 1;
        }

        .why-badge .txt {
            font-family: var(--font-cond);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }

        .feature-item {
            background: rgba(11,23,40,0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 24px;
        }

        .feature-icon {
            font-size: 28px;
            margin-bottom: 12px;
            display: block;
        }

        .feature-title {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .feature-desc {
            font-size: 13px;
            color: var(--grey);
            line-height: 1.6;
        }

        /* ── SIGNS SECTION ── */
        .signs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .sign-card {
            background: var(--navy-mid);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 32px 28px;
            transition: transform 0.2s, border-color 0.2s;
        }

        .sign-card:hover {
            transform: translateY(-3px);
            border-color: rgba(26, 111, 196, 0.4);
        }

        .sign-num {
            font-family: var(--font-display);
            font-size: 54px;
            color: rgba(245, 166, 35, 0.15);
            line-height: 1;
            margin-bottom: 12px;
        }

        .sign-title {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 18px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .sign-desc {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.65;
        }

        /* ── DRAIN TECHNIQUES ── */
        .techniques-section {
            background: var(--navy-light);
        }

        .techniques-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 60px;
        }

        .techniques-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .technique-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            padding: 28px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .technique-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

        .technique-num {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--blue-bright);
            flex-shrink: 0;
            width: 40px;
        }

        .technique-text strong {
            display: block;
            font-family: var(--font-cond);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .technique-text p {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.6;
        }

        /* ── GALLERY STRIP ── */
        .gallery-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            padding: 0;
            overflow: hidden;
        }

        .gallery-strip img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s, opacity 0.3s;
            opacity: 0.75;
        }

        .gallery-strip img:hover {
            opacity: 1;
            transform: scale(1.04);
        }

        /* ── CONTACT CTA ── */
        .cta-section {
            background: linear-gradient(135deg, var(--blue) 0%, #0d3d6e 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: 'SWM';
            font-family: var(--font-display);
            font-size: 300px;
            color: rgba(255,255,255,0.04);
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            line-height: 1;
        }

        .cta-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(42px, 5vw, 70px);
            line-height: 0.95;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .cta-body {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 48px);
            color: var(--amber);
            text-decoration: none;
            transition: color 0.2s;
        }

        .phone-link:hover { color: var(--amber-light); }

        .phone-icon {
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .contact-form {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 40px;
        }

        .form-title {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 22px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-family: var(--font-cond);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 6px;
            padding: 12px 16px;
            color: white;
            font-family: var(--font-body);
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--amber);
        }

        .form-group select option { background: var(--navy); }
        .form-group textarea { resize: vertical; min-height: 100px; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

        .btn-submit {
            width: 100%;
            background: var(--amber);
            color: var(--navy);
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 8px;
            transition: all 0.2s;
        }

        .btn-submit:hover {
            background: var(--amber-light);
            transform: translateY(-1px);
        }

        /* ── FOOTER ── */
        footer {
            background: #060e1a;
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 60px 5% 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand .logo-name { font-size: 28px; margin-bottom: 4px; }

        .footer-desc {
            font-size: 14px;
            color: var(--grey);
            line-height: 1.7;
            margin-top: 16px;
            margin-bottom: 24px;
        }

        .footer-phone {
            font-family: var(--font-display);
            font-size: 30px;
            color: var(--amber);
            text-decoration: none;
        }

        .footer-col h4 {
            font-family: var(--font-cond);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--grey);
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col li {
            font-size: 14px;
            color: var(--grey-light);
        }

        .footer-col a {
            font-size: 14px;
            color: var(--grey-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: var(--amber); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 28px;
            font-size: 13px;
            color: var(--grey);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: var(--grey);
            text-decoration: none;
        }

        .footer-bottom-links a:hover { color: var(--white); }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero { grid-template-columns: 1fr; min-height: auto; }
            .hero::after { display: none; }
            .hero-visual { padding-left: 0; margin-top: 40px; }
            .hero-card { left: 0; }
            .services-grid { grid-template-columns: 1fr; }
            .why-inner { grid-template-columns: 1fr; }
            .why-img-accent { display: none; }
            .why-badge { right: 10px; }
            .cta-inner { grid-template-columns: 1fr; }
            .techniques-header { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .signs-grid { grid-template-columns: 1fr 1fr; }
            .gallery-strip { grid-template-columns: repeat(3, 1fr); }
            .features-grid { grid-template-columns: 1fr 1fr; }
            /* Portable toilet responsive */
            #toilets [style*="grid-template-columns: 1fr 1fr"]:not([style*="repeat"]) { display: block !important; }
            #toilets [style*="grid-template-columns: 1fr 1fr"] > div { margin-bottom: 2px; }
            #toilets [style*="grid-template-columns: repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; gap: 32px !important; }
            #toilets [style*="position: absolute; top: 36px"] { display: none; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero { padding: 60px 5% 40px; }
            .hero-stats { gap: 24px; flex-wrap: wrap; }
            .signs-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .gallery-strip { grid-template-columns: 1fr 1fr; }
            section { padding: 70px 5%; }
            .form-row { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .hero-actions { flex-direction: column; }
            .btn-primary, .btn-outline { width: 100%; justify-content: center; }
            .truck-thumbs { grid-template-columns: repeat(3, 1fr); }
            /* Portable toilet mobile */
            #toilets [style*="grid-template-columns: repeat(5"] { grid-template-columns: 1fr 1fr !important; }
            #toilets [style*="grid-template-columns: 1fr 1fr"][style*="gap: 16px"] { grid-template-columns: 1fr 1fr !important; }
            #toilets [style*="display: flex; align-items: center; justify-content: space-between"] { flex-direction: column; align-items: flex-start !important; }
            #toilets [style*="padding: 64px 56px"] { padding: 48px 32px !important; }
        }

/* ── Block editor overrides ── */
.editor-styles-wrapper { background: #0b1728; color: #f0f4f8; }
