/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--bg-page);
}

/* ===== VARIABLES ===== */
:root {
    /* Grey page, deep blue accent.
     *
     * The accent is NOT ברידערס's teal (#1d4ed8), and not only to look
     * different. That teal measures 3.05:1 against this page background —
     * below the 4.5:1 that the accessibility statement on this site
     * commits to. #1d4ed8 measures 6.15:1 on the page and 6.70:1 for
     * white text on top of it, so the claim and the CSS agree.
     *
     * Anything added here gets checked the same way before it ships.
     */
    --bg-page: #f5f5f7;
    --bg-section: #ffffff;
    --bg-section-alt: #ebebef;
    --bg-dark: #16181d;
    --text-primary: #1d1d1f;
    --text-secondary: #5c5c63;
    --text-muted: #6e6e76;
    --border-light: #d2d2d7;
    --border-subtle: #e5e5ea;
    --accent-teal: #1d4ed8;
    --accent-teal-dark: #163fae;
    --accent-teal-soft: #e6ecfd;

    /* Aliases kept for compatibility with existing rules/JS */
    --primary-blue: var(--accent-teal);
    --dark-blue: var(--accent-teal-dark);
    --darker-blue: var(--bg-dark);
    --light-blue: var(--accent-teal-soft);
    --accent-red: var(--accent-teal);
    --dark-red: var(--accent-teal-dark);
    --cream: var(--bg-page);
    --primary-gold: var(--accent-teal);
    --dark-gold: var(--accent-teal-dark);
    --light-gold: var(--accent-teal-soft);
    --deep-black: var(--bg-dark);
    --charcoal: #3a3a3c;
    --light-gray: var(--bg-page);
    --medium-gray: var(--border-light);
    --text-dark: var(--text-primary);
    --text-light: var(--text-secondary);
    --white: #ffffff;
    /* WhatsApp brand green (#25D366) carries white text at 1.98:1 — under
     * half of the 4.5:1 this site commits to. Darkened until white passes
     * (6.16:1) while still reading as WhatsApp's green. */
    --whatsapp-green: #106E5C;
    
    /* Typography */
    --font-primary: 'Heebo', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-small: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 15px;
    text-align: center;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-teal);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #0c5748;
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.logo h2,
.logo .logo-title {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.logo .logo-title .accent {
    color: inherit;
}

.logo p.address {
    color: var(--text-secondary);
    font-weight: var(--font-weight-regular);
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.logo p.phone {
    color: var(--accent-teal);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    margin: 0;
    padding: 0 14px 0 0;
    border-right: 1px solid var(--border-light);
}

.logo p.phone a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo p.phone a:hover {
    text-decoration: underline;
}

.logo p.phone i {
    font-size: 0.85em;
}


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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    padding: 6px 0;
    position: relative;
    transition: var(--transition-fast);
    opacity: 0.85;
}

.nav-link:hover {
    color: var(--accent-teal);
    opacity: 1;
}

.nav-link::after {
    content: none;
}

.nav-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 6px 8px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    overflow: hidden;
    background: var(--bg-page);
    padding: 130px 0 80px;
}

.hero-background {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.08;
    letter-spacing: -0.02em;
    animation-delay: 0.2s;
}

.hero-title .brand-accent {
    color: inherit;
}

.hero-subtitle {
    display: block;
    font-size: 1.15rem;
    font-weight: var(--font-weight-regular);
    margin-top: 14px;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 36px;
    color: var(--text-secondary);
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation-delay: 0.6s;
}

.hero-buttons .btn {
    padding: 16px 34px;
    font-size: 18px;
}

.hero-buttons .btn i {
    font-size: 1.15em;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
}

.section-title {
    letter-spacing: -0.02em;
}

.section-title::after {
    content: none;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 90px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: var(--font-weight-bold);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.about-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent-teal-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 20px;
}

.about-info h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.about-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 180px 0 200px;
    background: var(--bg-page);
}

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

.service-card {
    background: var(--bg-section);
    padding: 80px 38px;
    border-radius: 22px;
    text-align: right;
    transition: var(--transition-fast);
    border: 1px solid var(--border-subtle);
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-teal);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 92px;
    height: 92px;
    background: var(--accent-teal-soft);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 38px;
    color: var(--accent-teal);
    font-size: 40px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--accent-teal);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

.service-features {
    display: none;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 50px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
    letter-spacing: -0.02em;
}

.stat-item .stat-number .accent {
    color: var(--accent-teal);
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-regular);
}

/* ===== TESTIMONIALS SECTION (removed from layout) ===== */
.testimonials {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-teal-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 16px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.whatsapp-link {
    color: var(--whatsapp-green);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.whatsapp-link:hover {
    color: #1ea85c;
}

.contact-form-container {
    background: var(--bg-page);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== QUICK CONTACT BAR ===== */
.quick-contact {
    background: var(--bg-section);
    padding: 18px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-subtle);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    align-items: center;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.quick-contact-item:hover,
.quick-contact-item:focus-visible {
    background: var(--bg-page);
}

.quick-contact-item i {
    font-size: 18px;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.quick-contact-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    margin-bottom: 2px;
}

.quick-contact-item span.value {
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    direction: ltr;
    display: inline-block;
}

.quick-contact-item.rtl-value span.value {
    direction: rtl;
}

/* ===== FLEET SECTION ===== */
.fleet {
    padding: 180px 0 200px;
    background: var(--bg-section);
    position: relative;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-card {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 80px 38px;
    text-align: right;
    transition: var(--transition-fast);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fleet-card:hover {
    border-color: var(--accent-teal);
    background: var(--bg-section);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.fleet-icon {
    width: 92px;
    height: 92px;
    margin: 0 0 38px;
    background: var(--accent-teal-soft);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 40px;
}

.fleet-card h3 {
    font-size: 1.35rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.fleet-card .fleet-capacity {
    display: block;
    color: var(--accent-teal);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
}

.fleet-card p {
    display: none;
}

/* ===== CTA BANNER (removed from layout) ===== */
.cta-banner {
    display: none;
}

/* ===== FOOTER ===== */
footer[role="contentinfo"] {
    background: var(--bg-section);
    color: var(--text-secondary);
    padding: 32px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.9rem;
}

footer[role="contentinfo"] a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

footer[role="contentinfo"] a:hover {
    color: var(--accent-teal);
    border-bottom-color: var(--accent-teal);
}

.footer {
    background: var(--bg-section);
    color: var(--text-secondary);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-teal);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--bg-page);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--accent-teal);
    border-color: var(--accent-teal);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #0c5748;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== ACCESSIBILITY STYLES ===== */

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #1976D2;
    color: var(--white);
    padding: 10px 20px;
    z-index: 9999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-to-content:focus,
.skip-to-content:focus-visible {
    top: 0;
}

/* Focus Indicators - high-contrast blue for accessibility */
:focus-visible {
    outline: 3px solid #1976D2;
    outline-offset: 2px;
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 9990;
}

.accessibility-btn {
    background: #1976D2;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.accessibility-btn:hover,
.accessibility-btn:focus {
    width: 55px;
    background: #0d5cad;
}

/* Always-visible link to the accessibility statement, sitting right under the
   accessibility menu button so users don't need to open the popup or scroll
   to the footer. */
.accessibility-statement-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-height: 60px;
    margin-top: 4px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 0 8px 8px 0;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease, color 0.3s ease, width 0.3s ease;
    line-height: 1.15;
    padding: 6px 4px;
    text-align: center;
}

.accessibility-statement-link i {
    font-size: 16px;
    margin-bottom: 3px;
}

.accessibility-statement-text {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    word-spacing: -1px;
    display: block;
}

.accessibility-statement-link:hover,
.accessibility-statement-link:focus-visible {
    width: 70px;
    background: #1976D2;
    color: var(--white);
}

/* Prominent call-to-action link at the TOP of the accessibility menu popup,
   so users don't have to scroll past 16 toggles to find the statement link. */
.accessibility-statement-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 12px;
    margin: 0 0 12px 0;
    background: #1976D2;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    min-height: 48px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.accessibility-statement-cta i {
    font-size: 18px;
}

.accessibility-statement-cta:hover,
.accessibility-statement-cta:focus-visible {
    background: #0d5cad;
    color: var(--white);
}

.accessibility-statement-cta:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.accessibility-menu {
    position: absolute;
    top: 0;
    left: -320px; /* Hidden by default */
    width: 300px;
    max-height: 90vh;
    background: #fff;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    border-radius: 0 12px 12px 0;
    padding: 20px;
    transition: left 0.3s ease, visibility 0s linear 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    /* Off-screen is not hidden: without this the sixteen buttons below stay
     * in the tab order while the menu is closed and aria-hidden="true", which
     * is the one thing an accessibility widget must never do. `visibility`
     * removes them from the tab order and still animates. */
    visibility: hidden;
}

.accessibility-menu.active {
    left: 0;
    visibility: visible;
    transition: left 0.3s ease, visibility 0s;
}

.accessibility-menu::-webkit-scrollbar {
    width: 8px;
}

.accessibility-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.accessibility-menu::-webkit-scrollbar-thumb {
    background: #1976D2;
    border-radius: 4px;
}

.accessibility-menu::-webkit-scrollbar-thumb:hover {
    background: #0d5cad;
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.accessibility-header h3 {
    font-size: 18px;
    margin: 0;
}

.accessibility-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.accessibility-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accessibility-options button {
    width: 100%;
    padding: 10px;
    text-align: right;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.2s ease;
}

.accessibility-options button:hover,
.accessibility-options button:focus {
    background: #e9ecef;
    border-color: #ddd;
}

.accessibility-options button.active {
    background: #1976D2;
    color: var(--white);
    border-color: #0d5cad;
    font-weight: bold;
}

.accessibility-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.accessibility-footer a {
    color: var(--text-light);
    text-decoration: underline;
}

/* Accessibility Modes */

/* Large Text */
body.large-text {
    font-size: 120%;
}

body.large-text h1 { font-size: 2.5em; }
body.large-text h2 { font-size: 2em; }
body.large-text h3 { font-size: 1.5em; }
body.large-text p { font-size: 1.2em; }

/* Huge Text - אותיות ענקיות! */
body.huge-text {
    font-size: 160% !important;
}

body.huge-text h1 { font-size: 3.5em !important; }
body.huge-text h2 { font-size: 2.8em !important; }
body.huge-text h3 { font-size: 2.2em !important; }
body.huge-text h4 { font-size: 1.8em !important; }
body.huge-text p { font-size: 1.6em !important; }
body.huge-text a { font-size: 1.6em !important; }
body.huge-text button { font-size: 1.4em !important; }
body.huge-text li { font-size: 1.6em !important; }

/* High Contrast */
body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.high-contrast img {
    filter: grayscale(100%) contrast(120%);
}

body.high-contrast a {
    color: #ffff00 !important;
    text-decoration: underline !important;
}

body.high-contrast button,
body.high-contrast .btn {
    background-color: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast .accessibility-menu {
    border: 2px solid #fff;
}

/* Highlight Links */
body.highlight-links a {
    text-decoration: underline !important;
    background-color: yellow !important;
    color: black !important;
}

body.highlight-links .btn {
    border: 3px solid yellow !important;
}

/* Readable Font */
body.readable-font {
    font-family: Arial, Helvetica, sans-serif !important;
}

body.readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* Light Background - רקע בהיר */
body.light-background {
    background-color: #f0f0f0 !important;
}

body.light-background * {
    background-color: #ffffff !important;
    color: #000000 !important;
}

body.light-background a {
    color: #0066cc !important;
}

body.light-background button,
body.light-background .btn {
    background-color: var(--primary-gold) !important;
    color: #fff !important;
}

/* Negative Contrast - ניגודיות שלילית */
body.negative-contrast {
    filter: invert(1) hue-rotate(180deg);
}

body.negative-contrast img {
    filter: invert(1) hue-rotate(180deg);
}

/* Line Height - ריווח שורות */
body.increased-line-height {
    line-height: 2 !important;
}

body.increased-line-height * {
    line-height: 2 !important;
}

/* Text Spacing - ריווח אותיות */
body.increased-text-spacing * {
    letter-spacing: 0.15em !important;
    word-spacing: 0.2em !important;
}

/* Big Cursor - סמן גדול */
body.big-cursor,
body.big-cursor * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" style="font-size: 48px;"><text y="32">➤</text></svg>') 12 12, auto !important;
}

body.big-cursor a,
body.big-cursor button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" style="font-size: 48px;"><text y="32">👆</text></svg>') 12 12, pointer !important;
}

/* Reading Guide - מדריך קריאה */
body.reading-guide {
    position: relative;
}

.reading-guide-line {
    position: fixed;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(25, 118, 210, 0.9);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.55),
                0 -50px 50px rgba(0, 0, 0, 0.3),
                0 50px 50px rgba(0, 0, 0, 0.3);
}

/* Stop Animations - עצור אנימציות */
body.stop-animations * {
    animation: none !important;
    transition: none !important;
}

body.stop-animations .hero-background {
    background-attachment: scroll !important;
}

/* Grayscale - גווני אפור */
body.grayscale-mode {
    filter: grayscale(100%);
}

/* Tooltips for Links */
body.show-tooltips a[href]:hover::after {
    content: attr(href);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 9999;
    margin-bottom: 8px;
}

body.show-tooltips a[href]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    margin-bottom: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-list {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--bg-section);
        flex-direction: column;
        justify-content: flex-start;
        padding: 32px 20px;
        gap: 18px;
        transition: var(--transition-fast);
        border-top: 1px solid var(--border-subtle);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        left: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .service-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-background {
        background-attachment: scroll !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}

/* ===== SCROLL MARGIN: keep section headings visible below sticky header ===== */
section[id],
main[id] {
    scroll-margin-top: 100px;
}

/* ===== Mobile tweaks for logo / quick-contact ===== */
@media (max-width: 768px) {
    .logo .logo-title { font-size: 18px; }
    .logo p.address { font-size: 12px; }
    .logo p.phone { font-size: 15px; }
    .logo img { height: 46px; }
    .quick-contact { padding: 16px 0; }
    .quick-contact-item { padding: 6px 8px; }
    .quick-contact-item strong { font-size: 0.78rem; }
    .quick-contact-item span.value { font-size: 0.95rem; }
}

/* ===== INVERT ACCESSIBILITY WIDGET BACK so it stays readable when invert/grayscale is on ===== */
body.negative-contrast .accessibility-widget,
body.grayscale-mode .accessibility-widget,
body.high-contrast .accessibility-widget {
    filter: invert(1) hue-rotate(180deg);
}
body.grayscale-mode .accessibility-widget {
    filter: grayscale(0);
}

/* ===== PRINT: clear accessibility filters so they don't follow user to paper ===== */
@media print {
    body[class*="-contrast"],
    body.grayscale-mode {
        filter: none !important;
    }
    body.large-text,
    body.huge-text {
        font-size: 100% !important;
    }
    body.increased-line-height {
        line-height: normal !important;
    }
    .accessibility-widget,
    .whatsapp-float,
    .scroll-to-top {
        display: none !important;
    }
}

/* ===================================================================== */
/* ===== INNER PAGES: services.html / testimonials.html ================ */
/* ===================================================================== */

/* Footer links row (used on all pages) */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--accent-teal);
    border-bottom-color: var(--accent-teal);
}

/* Inner-page hero */
.page-hero {
    padding: 150px 0 56px;
    text-align: center;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}

.page-hero p {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.page-hero .hero-buttons {
    justify-content: center;
}

/* ===== Offerings list (services page) ===== */
.offerings-section {
    padding: 70px 0;
    background: var(--bg-section);
}

.offer-block {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 28px;
    align-items: start;
    padding: 34px;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    margin-bottom: 22px;
    transition: var(--transition-fast);
}

.offer-block:last-child {
    margin-bottom: 0;
}

.offer-block:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.offer-icon {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    background: var(--accent-teal-soft);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.offer-body h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.offer-body > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.offer-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 26px;
    padding: 0;
    margin: 0;
}

.offer-list li {
    position: relative;
    padding-right: 24px;
    color: var(--text-primary);
    font-size: 0.98rem;
    line-height: 1.5;
}

.offer-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    color: var(--accent-teal);
    font-size: 0.8em;
}

/* ===== Fleet table (services page) ===== */
.fleet-detail-section {
    padding: 70px 0;
    background: var(--bg-page);
    border-top: 1px solid var(--border-subtle);
}

.fleet-table-wrap {
    overflow-x: auto;
}

.fleet-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-section);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}

.fleet-table th,
.fleet-table td {
    padding: 16px 20px;
    text-align: right;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
}

.fleet-table thead th {
    background: var(--accent-teal-soft);
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.fleet-table tbody td {
    color: var(--text-secondary);
}

.fleet-table tbody td:first-child {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.fleet-table tbody tr:last-child td {
    border-bottom: none;
}

.fleet-table tbody tr:hover td {
    background: var(--bg-page);
}

/* ===== Why us (services page) ===== */
.why-section {
    padding: 70px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
}

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

.why-item {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-fast);
}

.why-item:hover {
    border-color: var(--accent-teal);
    transform: translateY(-3px);
}

.why-item i {
    font-size: 30px;
    color: var(--accent-teal);
    margin-bottom: 14px;
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ===== Reviews grid (testimonials page) ===== */
.reviews-section {
    padding: 70px 0 80px;
    background: var(--bg-section);
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 60px;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.reviews-summary .rs-item .rs-num {
    display: block;
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.reviews-summary .rs-item .rs-num .accent {
    color: var(--accent-teal);
}

.reviews-summary .rs-item > span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.review-card {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-fast);
}

.review-card:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.review-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 1.02rem;
    flex-grow: 1;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-teal-soft);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-author .ra-name {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.review-author .ra-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== CTA strip (shared, services + testimonials) ===== */
.cta-strip {
    padding: 70px 0;
    background: var(--bg-page);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.cta-strip h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cta-strip p {
    color: var(--text-secondary);
    margin-bottom: 26px;
}

.cta-strip .hero-buttons {
    justify-content: center;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .offer-block {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .offer-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 16px;
    }
    .offer-list {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .cta-strip h2,
    .page-hero h1 {
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .fleet-table th,
    .fleet-table td {
        padding: 12px 14px;
        font-size: 0.92rem;
    }
}

/* ===== BRAND SLOGAN (Yiddish) ===== */
.brand-slogan {
    display: block;
    margin: 22px auto 0;
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-teal);
    letter-spacing: -0.01em;
}

/* Central slogan banner (services page) */
.slogan-banner {
    background: var(--accent-teal);
    color: #ffffff;
    text-align: center;
    border-radius: 22px;
    padding: 48px 28px;
    margin: 64px auto;
    max-width: 880px;
    box-shadow: 0 18px 40px rgba(42, 157, 143, 0.25);
}

.slogan-banner .slogan-main {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.slogan-banner .slogan-sub {
    display: block;
    margin-top: 14px;
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.95;
}

/* Footer slogan line */
.footer-slogan {
    font-weight: var(--font-weight-bold);
    color: var(--accent-teal);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .brand-slogan {
        font-size: 1.25rem;
    }
    .slogan-banner {
        padding: 36px 20px;
        margin: 48px auto;
    }
    .slogan-banner .slogan-main {
        font-size: 1.5rem;
    }
    .slogan-banner .slogan-sub {
        font-size: 1.05rem;
    }
}
/* ============================================================================
 * אנ״ש — house style
 *
 * The skeleton is ברידערס's stylesheet, and swapping the accent colour was
 * not enough: the two sites still read as the same site in two colours. The
 * shared shapes were the giveaway — a pale page, white cards floating on it
 * with 22px corners and soft shadows, a translucent white bar on top, and
 * Heebo throughout.
 *
 * So this block changes the vocabulary rather than the palette:
 *
 *   type      Rubik for headings, Assistant for text. Neither is Heebo, and
 *             Rubik's rounder, heavier caps carry a brand with no logo —
 *             which is what this one is, so the wordmark does the work.
 *   header    solid ink instead of frosted white. The site announces itself
 *             at the top of the page rather than dissolving into it.
 *   hero      ink block, light type, left-aligned. ברידערס's is a pale
 *             centred panel; this is the opposite gesture.
 *   cards     square-ish corners, no shadow, and a rule down the leading
 *             edge that colours in on hover. Flat and drawn, not floating.
 *
 * Contrast was re-measured after every colour below; nothing here drops
 * under 4.5:1. Comes last in the file so it wins on specificity ties.
 * ==========================================================================*/

:root {
    --ink: #14161c;
    --ink-soft: #232733;
    --on-ink: #f7f8fa;
    --on-ink-dim: #c3c8d4;   /* 9.6:1 on --ink */
    --radius-card: 6px;
}

body { font-family: 'Assistant', system-ui, sans-serif; }

h1, h2, h3, h4,
.logo-title, .section-title, .hero-title, .btn, .nav-link {
    font-family: 'Rubik', system-ui, sans-serif;
    letter-spacing: -0.01em;
}

/* --- header: solid, not frosted --- */
.header {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}
.header .logo-title { color: var(--on-ink); }
.header .logo-title .accent { color: #8fb0ff; }   /* 8.1:1 on --ink */
.header .phone a,
.header .address { color: var(--on-ink-dim); }
.header .phone a:hover { color: #fff; }
.nav-link { color: var(--on-ink); }
.nav-link:hover,
.nav-link:focus-visible { color: #8fb0ff; }
.nav-toggle span { background: var(--on-ink); }

/* --- hero: an ink block, aligned to the reading edge --- */
.hero {
    background: var(--ink);
    color: var(--on-ink);
    text-align: right;
    min-height: 62vh;
    justify-content: flex-start;
}
.hero .container { width: 100%; }
.hero-content { max-width: 720px; margin-inline: 0; }
.hero-title { color: var(--on-ink); }
.hero-title .brand-accent { color: #8fb0ff; }
.hero .hero-buttons { justify-content: flex-start; }

/* --- section headings get a rule, not a centred flourish --- */
.section-header { text-align: right; }
.section-title { position: relative; padding-bottom: 14px; }
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 54px; height: 3px;
    background: var(--accent-teal);
}

/* --- cards: drawn, not floating --- */
.service-card, .fleet-card, .why-item, .offer-block {
    border-radius: var(--radius-card);
    box-shadow: none;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.service-card { min-height: 0; padding: 34px 30px; }
.service-card::before,
.offer-block::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 3px;
    background: var(--border-light);
    transition: background 0.2s ease;
}
.service-card:hover, .offer-block:hover { transform: none; box-shadow: none; }
.service-card:hover::before,
.offer-block:hover::before { background: var(--accent-teal); }

.btn { border-radius: var(--radius-card); }

/* --- footer sits on the same ink as the header --- */
footer { background: var(--ink); color: var(--on-ink-dim); }
footer a { color: var(--on-ink); }
footer a:hover { color: #8fb0ff; }

/* The header's phone link and address kept their light-theme colours after the
 * bar turned to ink: #1d4ed8 measured 2.69:1 on it and the address 2.72:1.
 * Both are set on more specific selectors earlier in this file, so these have
 * to out-specify them rather than restate them. */
.header .logo .phone a,
.header .logo-text .phone a,
.header .phone a[dir="ltr"] {
    color: var(--on-ink);          /* 17.0:1 on --ink */
}
.header .logo .phone a:hover,
.header .phone a[dir="ltr"]:hover {
    color: #8fb0ff;                /* 8.5:1 on --ink */
}
.header .logo .address,
.header .address {
    color: var(--on-ink-dim);      /* 10.8:1 on --ink */
}

/* The hero was 62vh of ink around a 139px block of content — a black band with
 * a title floating in it. Sized to its content instead, with a line of text
 * that says what the business actually does, so the first screen carries
 * information rather than emptiness. */
.hero {
    min-height: 0;
    padding: 150px 0 90px;
}
.hero-lede {
    color: var(--on-ink-dim);        /* 10.8:1 on --ink */
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.75;
    margin: 18px 0 34px;
    max-width: 46ch;
}
.hero-title { margin-bottom: 0; }
.hero .hero-buttons { margin-top: 0; }

@media (max-width: 700px) {
    .hero { padding: 120px 0 64px; }
    .hero-lede br { display: none; }
}

/* Sections inherited ברידערס's spacing, which was built around cards 440px
 * tall and two long paragraphs. This site's cards are short, so the same
 * padding reads as gaps rather than rhythm. Tightened, and the service grid
 * given room to breathe sideways instead of vertically. */
.services, .fleet, .contact, .offerings-section, .why-section {
    padding-top: 64px;
    padding-bottom: 64px;
}
.section-header { margin-bottom: 28px; }
.services-grid, .fleet-grid { gap: 18px; }
.fleet-card { padding: 26px 20px; }

/* The scrolled state of the ink header. Slightly lifted from the page with a
 * hairline rather than a colour change, because the bar is already dark. */
.header.scrolled {
    background: var(--ink);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10);
}
