/* ============================================
   PLUMBING 4 LESS – MAIN STYLESHEET
   ============================================ */

:root {
    --blue-dark: #0a1f3f;
    --blue-primary: #0d3b6e;
    --blue-mid: #1a5a9a;
    --blue-accent: #2b7cc9;
    --blue-light: #e8f2fa;
    --blue-pale: #f4f8fc;
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gold: #e8a840;
    --gold-light: #f5d78c;
    --green: #22c55e;
    --shadow-sm: 0 1px 2px rgba(10,31,63,0.06);
    --shadow: 0 2px 8px rgba(10,31,63,0.08);
    --shadow-md: 0 6px 24px rgba(10,31,63,0.10);
    --shadow-lg: 0 12px 40px rgba(10,31,63,0.14);
    --shadow-xl: 0 20px 60px rgba(10,31,63,0.18);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TRUST BADGES STRIP (TOP OF EVERY PAGE)
   ============================================ */
.trust-strip {
    background: var(--blue-dark);
    color: #ffffff;
    padding: 6px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.badge-trust {
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 34px;      /* Adjust to sit below the trust strip */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow);
    top: 0;         /* When scrolled, the trust strip can scroll away */
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    transition: height var(--transition);
}

.navbar.scrolled .nav-inner {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--blue-dark);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    position: relative;
    z-index: 1;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.8;
}

.logo-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-accent);
    background: var(--blue-pale);
}

.nav-cta {
    background: var(--blue-accent) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(43, 124, 201, 0.3);
}

.nav-cta:hover {
    background: var(--blue-mid) !important;
    transform: translateY(-1px);
}

/* Dropdown for Area pages */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    z-index: 10;
    top: 100%;
    left: 0;
    padding: 8px 0;
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--gray-600);
    padding: 10px 16px;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--blue-pale);
    color: var(--blue-accent);
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--blue-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 63, 0.5);
    z-index: 998;
}
.nav-overlay.show {
    display: block;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
#app {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 106px;   /* trust strip + navbar height */
}

section {
    padding: 80px 24px;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-accent);
    background: var(--blue-pale);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin-bottom: 40px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.badge-google {
    color: var(--gray-600);
}

.badge-baxi {
    background: #fff3e0;
    border-color: #ffcc80;
    color: #b45309;
    margin-left: 8px;
}

.hero-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title em {
    font-style: normal;
    color: var(--blue-accent);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold-light);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.5;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--blue-accent);
    color: #fff;
    box-shadow: 0 4px 18px rgba(43, 124, 201, 0.35);
}

.btn-primary:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--blue-accent);
    border: 2px solid var(--blue-accent);
}

.btn-outline:hover {
    background: var(--blue-pale);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card.stars {
    bottom: 30px;
    left: -20px;
}

.floating-card.baxi {
    top: 30px;
    right: -20px;
    background: #fff3e0;
    border: 1px solid #ffcc80;
}

.stars-inner {
    color: var(--gold);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--blue-accent);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    line-height: 1.3;
}

.about-badge strong {
    display: block;
    font-size: 1.6rem;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-600);
}

.about-features .check {
    width: 22px;
    height: 22px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ============================================
   SERVICES PAGE – LARGE CONTENT PANELS
   ============================================ */
.services-hero {
    background: linear-gradient(175deg, #f4f8fc 0%, #ffffff 60%);
    padding-bottom: 40px;
}

.service-panel {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.service-panel:hover {
    box-shadow: var(--shadow-md);
}

.service-panel.alt {
    background: var(--blue-pale);
    border-color: var(--blue-light);
}

.panel-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-panel h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.service-panel p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.panel-points {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    gap: 10px;
    padding-left: 0;
}

.panel-points li {
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: var(--gray-700);
}

.panel-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}

.panel-local {
    font-style: italic;
    color: var(--gray-500) !important;
    font-size: 0.95rem !important;
}

/* Areas grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.area-card:hover {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.area-card a {
    color: var(--blue-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}

.area-card a:hover {
    color: var(--blue-accent);
}

/* Responsive */
@media (max-width: 860px) {
    .service-panel {
        padding: 30px 20px;
    }
    .service-panel h2 {
        font-size: 1.6rem;
    }
}/* Responsive */
@media (max-width: 860px) {
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .service-block.reverse .service-block-content,
    .service-block.reverse .service-block-image {
        direction: ltr;
    }
    .service-block-image img {
        max-width: 100%;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--blue-pale);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-md);
}

.quote-mark {
    font-size: 3rem;
    color: var(--blue-accent);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

.stars-display {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    gap: 16px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--gray-50);
    color: var(--gray-800);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 4px rgba(43, 124, 201, 0.08);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-success {
    display: none;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   AREA PAGE TRUST BADGES ROW
   ============================================ */
.trust-badges-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    background: var(--blue-pale);
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--blue-light);
}

.trust-badges-row span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--blue-dark);
    color: #c5d3e3;
    padding: 50px 24px 30px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #a3b8d1;
    max-width: 300px;
}

footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 700;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #a3b8d1;
    text-decoration: none;
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--blue-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.82rem;
    color: #7a94b3;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--blue-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--blue-mid);
    transform: translateY(-3px);
}

/* ============================================
   TOOL SELECT (repair/replace page)
   ============================================ */
.tool-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-800);
    margin-top: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23495057'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.question {
    margin-bottom: 30px;
}

.question h3 {
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 860px) {
    .trust-strip {
        font-size: 0.7rem;
        gap: 12px;
    }
    .navbar {
        top: 30px;  /* trust strip may wrap */
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        align-items: stretch;
        z-index: 1001;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        padding: 12px 16px;
        border-radius: var(--radius);
        font-size: 1rem;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        padding-left: 20px;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-image img {
        max-width: 320px;
    }
    .floating-card.stars {
        left: 10px;
        bottom: 10px;
    }
    .floating-card.baxi {
        right: 10px;
        top: 10px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    section {
        padding: 60px 16px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .trust-strip {
        font-size: 0.65rem;
        gap: 6px;
    }
    .navbar {
        top: 28px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-image img {
        max-width: 240px;
    }
    .floating-card {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .service-card {
        padding: 20px 16px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
}
/* ============================================
   ACCREDITATIONS – HORIZONTAL LOGO STRIP (LARGER)
   ============================================ */
.accreditations {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 50px 24px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;              /* more space between logos */
    flex-wrap: wrap;
    margin-top: 30px;
}

.logo-strip img {
    max-height: 90px;       /* bigger logos */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.25s ease;
}

.logo-strip img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* On smaller screens, reduce size but keep them clear */
@media (max-width: 900px) {
    .logo-strip {
        gap: 30px;
    }
    .logo-strip img {
        max-height: 70px;
    }
}

@media (max-width: 600px) {
    .logo-strip {
        gap: 20px;
    }
    .logo-strip img {
        max-height: 55px;
    }
}
/* ============================================
   MOBILE MENU FIX – OVERRIDES FOR SMALL SCREENS
   ============================================ */
@media (max-width: 860px) {
    /* Trust strip becomes static (scrolls away) */
    .trust-strip {
        position: static;
    }

    /* Navbar sticks to top, no offset */
    .navbar {
        top: 0;
        z-index: 10000;
    }

    /* Mobile slide-out menu panel */
    .nav-links {
        z-index: 10001;
    }

    /* Dark overlay behind menu */
    .nav-overlay {
        z-index: 10000;
    }

    /* Hamburger button (in case it's covered) */
    .mobile-toggle {
        z-index: 10002;
    }
}
/* ============================================
   SERVICES PAGE – ENHANCED LAYOUT
   ============================================ */
.services-hero {
    background: linear-gradient(175deg, #f4f8fc 0%, #ffffff 60%);
    padding-bottom: 40px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-info,
.service-row.reverse .service-image {
    direction: ltr;
}

.service-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.service-info p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    gap: 8px;
}

.service-points li {
    padding-left: 26px;
    position: relative;
    font-weight: 500;
    color: var(--gray-700);
}

.service-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: 700;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.area-card:hover {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.area-card a {
    color: var(--blue-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}

.area-card a:hover {
    color: var(--blue-accent);
}

/* Responsive adjustments */
@media (max-width: 860px) {
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .service-row.reverse .service-info,
    .service-row.reverse .service-image {
        direction: ltr;
    }
    .service-image img {
        max-width: 100%;
    }
}
/* ============================================
   HOLIDAY NOTICE BANNER
   ============================================ */
.holiday-banner {
    background: #fff3e0;          /* light orange */
    border-bottom: 1px solid #ffcc80;
    padding: 10px 16px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;                /* above trust strip */
    font-weight: 600;
    color: #b45309;
    font-size: 0.95rem;
}

.holiday-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Adjust navbar/trust strip positions when holiday banner is visible */
body.has-holiday .trust-strip { top: 40px; }
body.has-holiday .navbar { top: 74px; }   /* adjust as needed */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #dee2e6;
    transition: transform 0.2s;
}
.stat-card:hover {
    transform: translateY(-3px);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1f3f;
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    color: #495057;
    margin-top: 8px;
}
.stat-card.blue { border-top: 4px solid #2b7cc9; }
.stat-card.green { border-top: 4px solid #28a745; }
.stat-card.orange { border-top: 4px solid #ffc107; }
.dashboard-message {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #dee2e6;
}
.dashboard-message h2 {
    color: #0a1f3f;
    margin-bottom: 10px;
}
.dashboard-message p {
    color: #495057;
    line-height: 1.6;
}
.logo-tagline {
    display: block;
    font-size: 0.6rem;          /* small */
    font-weight: 600;
    color: var(--blue-accent);   /* brand blue */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}