/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    /* Color Tokens */
    --color-bg: #f8fafc;          /* Bright Slate White */
    --color-bg-alt: #f1f5f9;      /* Light Gray Slate */
    --color-bg-card: #ffffff;     /* White Card Background */
    --color-primary: #ffb703;     /* Safety Amber Yellow */
    --color-primary-hover: #e0a100;
    --color-primary-rgb: 255, 183, 3;
    --color-secondary: #0284c7;   /* Clean Assist Blue */
    --color-secondary-hover: #0369a1;
    --color-whatsapp: #22c55e;    /* Official WhatsApp Green */
    --color-text: #0f172a;        /* Dark Charcoal text */
    --color-text-dim: #475569;    /* Muted Slate text */
    --color-border: #cbd5e1;      /* Light border color */
    
    /* Layout Tokens */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 183, 3, 0.15);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0; /* Adjusted in mobile via media queries for sticky bar */
}

/* Bilingual toggles - managed via body class */
body.lang-ro .lang-hu {
    display: none !important;
}
body.lang-hu .lang-ro {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px stroke var(--color-border);
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: var(--color-text-dim);
    transform: translateY(-2px);
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-icon {
    color: var(--color-whatsapp);
}

/* Pulsing effect for main emergency buttons */
.pulse {
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.6);
    animation: buttonPulse 2s infinite;
    pointer-events: none;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 183, 3, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

.btn-label-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-subtext {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.btn-text {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    width: 80px;
    height: 32px;
}

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

.brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 1.5px solid rgba(255, 183, 3, 0.3);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.nav-phone-btn:hover {
    background-color: rgba(255, 183, 3, 0.1);
    border-color: var(--color-primary);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Language switch slider container */
.lang-switch {
    display: flex;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 4px;
    border-radius: 30px;
    position: relative;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-dim);
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background-color: var(--color-primary);
    color: #000;
}

.lang-btn:hover:not(.active) {
    color: var(--color-text);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 140px 0;
    background: 
        radial-gradient(circle at calc(85% - (var(--scroll-y, 0px) * 0.15)) calc(20% + (var(--scroll-y, 0px) * 0.08)), rgba(255, 183, 3, 0.18) 0%, rgba(248, 250, 252, 0) 65%),
        linear-gradient(135deg, rgba(248, 250, 252, 0.90) 0%, rgba(241, 245, 249, 0.85) 100%),
        url('images/c76xp3c76xp3c76x.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #15803d;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.status-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #22c55e;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-dim);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-badges {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.badge-item {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    max-width: 130px;
    line-height: 1.3;
}

/* Hero Visual Box styling */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: 1;
}

.visual-card {
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
}

.card-accent {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.visual-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.card-phone {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    color: var(--color-text-dim);
}

.hero-skew {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--color-bg-alt);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 2;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-dim);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-services {
    background-color: var(--color-bg-alt);
}

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

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.3);
    box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 183, 3, 0.1);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-content-wrapper {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 50px;
    align-items: center;
}

.fleet-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fleet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fleet-bullet {
    background-color: rgba(255, 183, 3, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(255, 183, 3, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.fleet-text {
    font-size: 1rem;
    color: var(--color-text);
}

.fleet-text strong {
    color: var(--color-primary);
}

.fleet-gallery {
    position: relative;
}

.image-frame {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.fleet-img {
    border-radius: var(--border-radius-md);
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-frame:hover .fleet-img {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
}

/* ==========================================================================
   INTERVENTION AREAS SECTION
   ========================================================================== */
.section-areas {
    background-color: var(--color-bg-alt);
}

/* Search bar styling */
.search-box {
    margin: 30px auto 0 auto;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.15);
}

.search-icon {
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    color: var(--color-text-dim);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-box input:focus + .search-icon {
    color: var(--color-primary);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.area-badge {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.area-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    background-color: rgba(255, 183, 3, 0.05);
}

.area-divider {
    opacity: 0.3;
    font-weight: 300;
}

.area-badge.main-badge {
    grid-column: span 1;
    border-color: rgba(255, 183, 3, 0.4);
    background-color: rgba(255, 183, 3, 0.08);
    color: var(--color-primary);
}

.area-badge.main-badge:hover {
    border-color: var(--color-primary);
    background-color: rgba(255, 183, 3, 0.12);
}

.area-badge.hidden-item {
    display: none !important;
}

.areas-notice {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

/* ==========================================================================
   CALLOUT SECTION
   ========================================================================== */
.section-callout {
    padding: 60px 0;
}

.callout-card {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(241, 245, 249, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.callout-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
    pointer-events: none;
}

.callout-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.callout-text h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.callout-text p {
    color: var(--color-text-dim);
    max-width: 600px;
    font-size: 1.05rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-bottom {
    background-color: #f1f5f9;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-col p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-details {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    opacity: 0.8;
}

.legal-details p {
    margin-bottom: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dim);
    margin-bottom: 2px;
}

.contact-val {
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-val:hover {
    color: var(--color-primary);
}

.contact-val.highlight-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-hover);
}

.contact-val.highlight-val:hover {
    color: var(--color-text);
}

.footer-copyright-bar {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.dev-by a {
    color: var(--color-text);
    font-weight: 600;
}

.dev-by a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   MOBILE STICKY CONTACT BAR
   ========================================================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66px;
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1.5px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    display: none; /* Shown only on mobile in media queries */
    grid-template-columns: 1fr 1fr;
    padding: 8px 12px;
    gap: 12px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    transition: var(--transition-smooth);
}

.sticky-call {
    background-color: var(--color-primary);
    color: #000;
}

.sticky-whatsapp {
    background-color: var(--color-whatsapp);
}

.sticky-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Up to Tablet (Medium screens) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
        width: 100%;
        max-width: 500px;
    }

    .fleet-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fleet-gallery {
        order: -1; /* Image first on tablet/mobile */
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Screens (up to 768px) */
@media (max-width: 768px) {
    body {
        /* Add padding at the bottom so the sticky contact bar does not cover text */
        padding-bottom: 66px;
    }

    .container {
        padding: 0 16px;
    }

    .header-container {
        height: 70px;
    }

    .nav-phone-btn {
        display: none; /* Hidden on mobile header, we have the sticky bar */
    }

    .hero {
        padding: 50px 0 80px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges {
        flex-wrap: wrap;
        gap: 16px;
    }

    .badge-item {
        width: calc(50% - 10px);
        align-items: center;
        text-align: center;
    }

    .badge-text {
        max-width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .area-badge {
        padding: 12px 10px;
        flex-direction: column;
        gap: 4px;
        font-size: 0.85rem;
    }

    .area-divider {
        display: none;
    }

    .callout-card {
        padding: 30px 20px;
        text-align: center;
    }

    .callout-grid {
        flex-direction: column;
        gap: 24px;
    }

    .callout-actions {
        width: 100%;
    }

    .callout-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        padding: 50px 0 20px 0;
    }

    .footer-copyright-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Show the sticky bar on mobile */
    .mobile-sticky-bar {
        display: grid;
    }
}

/* Very Small Mobile Screens (up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .brand {
        font-size: 1.25rem;
    }

    .visual-card h3 {
        font-size: 1.4rem;
    }

    .card-phone {
        font-size: 1.85rem;
    }
}
