:root {
    --bg-color: #F8FAFC;
    --primary-color: #059669; /* Emergency/Road safety vibrant green */
    --primary-hover: #047857;
    --primary-light: #ECFDF5;
    --accent-amber: #F59E0B;
    --accent-blue: #0284C7;
    --text-dark: #0F172A;
    --text-light: #475569;
    --text-muted: #64748B;
    --white: #FFFFFF;
    
    --card-light-bg: #F1F5F9;
    --card-soft-bg: #E2E8F0;
    --card-dark-bg: #0F172A;
    --card-dark-gradient: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
    --card-primary-gradient: linear-gradient(145deg, #059669 0%, #064E3B 100%);
    
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --border-radius-xl: 40px;
    --border-radius-pill: 100px;

    --spacing-section: 70px;
    --spacing-element: 25px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 25px rgba(5, 150, 105, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 3.2vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2vw, 28px); font-weight: 700; line-height: 1.25; letter-spacing: -0.5px; }
h4 { font-size: 18px; font-weight: 700; }
h1 span, h2 span, h3 span { color: var(--primary-color); }
p { font-size: 16px; color: var(--text-light); }

/* Utility & Badges */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.12);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(5, 150, 105, 0.2);
    margin-bottom: 16px;
}
.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

/* Floating Header */
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1240px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-pill);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    z-index: 1000;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-header:hover { box-shadow: 0 15px 45px rgba(15, 23, 42, 0.1); }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.logo:hover .logo-img {
    transform: scale(1.05);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.logo-title span { color: var(--primary-color); }
.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
    position: relative;
    padding: 6px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-color); }

.nav-drawer-cta { display: none; }

.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}
.header-phone-btn i { font-size: 14px; }
.header-phone-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45);
    color: #ffffff;
}

/* Buttons with Glow */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-amber {
    background-color: var(--accent-amber);
    color: #1F2937;
}
.btn-amber:hover {
    background-color: #D97706;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.glow-effect { position: relative; overflow: hidden; }
.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.glow-effect:hover::before { opacity: 1; }

/* Main Container */
main { max-width: 1240px; margin: 0 auto; padding: 120px 24px 0; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 17px; max-width: 760px; margin: 0 auto; }

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 88vh;
    margin-top: -120px;
    margin-bottom: var(--spacing-section);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomSlow 25s alternate infinite ease-in-out;
}
@keyframes zoomSlow {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 50%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    padding: 130px 24px 60px;
    color: var(--white);
}
.hero-left h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-left p {
    color: #E2E8F0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}
.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
}
.hero-feat-item i {
    color: var(--primary-color);
    font-size: 18px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-right {
    display: flex;
    justify-content: center;
}
.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 36px;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.hero-glass-card h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}
.hero-glass-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
}
.quick-call-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.quick-phone-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.quick-phone-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.6);
}
.quick-second-phone {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}
.quick-second-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.quick-messengers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.quick-msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s;
}
.quick-msg-btn.tg { background: #229ED9; }
.quick-msg-btn.vb { background: #7360F2; }
.quick-msg-btn:hover { transform: translateY(-2px); }

/* Marquee */
/* Pleasant Premium Marquee */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(90deg, #064E3B 0%, #059669 25%, #10B981 50%, #059669 75%, #064E3B 100%);
    color: #FFFFFF;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: var(--spacing-section);
    transform: rotate(-1deg) scale(1.01);
    margin-top: -25px;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 35s linear infinite;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
}
.marquee-dot {
    width: 7px;
    height: 7px;
    background: #FDE047;
    border-radius: 50%;
    box-shadow: 0 0 8px #FDE047;
    display: inline-block;
}
.marquee-badge {
    background: rgba(255, 255, 255, 0.22);
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 800;
    color: #FDE047;
    letter-spacing: 0.5px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Who We Are & Stats */
.who-we-are-section {
    display: flex;
    gap: 30px;
    margin-bottom: var(--spacing-section);
}
.stats-card {
    flex: 0 0 38%;
    background: var(--card-primary-gradient);
    border-radius: var(--border-radius-xl);
    padding: 50px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}
.stats-card:hover { transform: translateY(-6px); }
.stats-top { text-align: center; margin-bottom: 25px; }
.stats-top span {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}
.stats-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-item h2 {
    font-size: 44px;
    margin-bottom: 4px;
    letter-spacing: -1.5px;
    color: var(--white);
}
.stat-item p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px 45px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.about-text { flex: 1; }
.about-text h2 { margin-bottom: 20px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.about-list li {
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
}
.about-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 15px;
}
.about-image {
    width: 240px;
    height: 320px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-content:hover .about-image img { transform: scale(1.05); }

/* Interactive Sticky Services Stack */
.services-section { margin-bottom: var(--spacing-section); }
.services-stack { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; position: relative; }
.service-card {
    position: sticky;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-medium);
    display: flex;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 30px;
}
.service-card:last-child { margin-bottom: 0; }
.sticky-card-1 { top: 90px; z-index: 1; }
.sticky-card-2 { top: 110px; z-index: 2; }
.sticky-card-3 { top: 130px; z-index: 3; }
.sticky-card-4 { top: 150px; z-index: 4; }

.service-content-left {
    flex: 1.1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-number-large {
    font-size: 72px;
    font-weight: 800;
    color: var(--card-light-bg);
    margin-bottom: 12px;
    line-height: 1;
}
.service-content-left h3 { font-size: 26px; margin-bottom: 14px; }
.service-content-left p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.service-tag {
    background: var(--card-light-bg);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
}
.service-img-right {
    flex: 1;
    padding: 24px;
}
.service-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Fleet Gallery Section */
.fleet-section { margin-bottom: var(--spacing-section); }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fleet-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}
.fleet-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.08); }
.fleet-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
}
.fleet-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fleet-info h4 { font-size: 18px; margin-bottom: 6px; }
.fleet-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

/* Interactive Cost Calculator */
.calc-section {
    margin-bottom: var(--spacing-section);
}
.calc-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}
.calc-left h3 { margin-bottom: 10px; }
.calc-left > p { margin-bottom: 30px; font-size: 15px; }

.calc-group { margin-bottom: 24px; }
.calc-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.calc-vehicle-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.calc-radio-btn {
    position: relative;
}
.calc-radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.calc-radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    border: 2px solid var(--card-light-bg);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 700;
}
.calc-radio-label i { font-size: 24px; margin-bottom: 8px; color: var(--text-muted); }
.calc-radio-btn input:checked + .calc-radio-label {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-color);
}
.calc-radio-btn input:checked + .calc-radio-label i { color: var(--primary-color); }

.range-slider-wrap {
    padding: 10px 0;
}
.range-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.range-slider-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}
.range-input {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--card-light-bg);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    accent-color: var(--primary-color);
}

.calc-right {
    background: var(--card-dark-gradient);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.calc-result-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.calc-result-price {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.calc-result-price span {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.calc-result-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* Pricing Grid */
.pricing-section { margin-bottom: var(--spacing-section); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.pricing-card.popular {
    background: var(--card-light-bg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.12);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-header {
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
}
.pricing-header h3 { font-size: 22px; margin-bottom: 12px; }
.pricing-header .price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pricing-header .price span { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-dark);
}
.pricing-features i { color: var(--primary-color); font-size: 14px; }

/* Bento Advantages Grid */
.advantages-section { margin-bottom: var(--spacing-section); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.bento-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-medium);
}
.bento-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.bento-card h3 { margin-bottom: 12px; font-size: 22px; }
.bento-card p { font-size: 15px; color: var(--text-light); }
.bento-card.dark-card {
    background: var(--card-dark-gradient);
    color: var(--white);
}
.bento-card.dark-card h3 { color: var(--white); }
.bento-card.dark-card p { color: rgba(255, 255, 255, 0.8); }
.bento-card.dark-card .bento-icon { color: var(--primary-color); }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.tall-bento-img {
    margin-top: 20px;
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}
.tall-bento-img img { width: 100%; height: 100%; object-fit: cover; }

/* Stages Timeline */
.stages-section { margin-bottom: var(--spacing-section); }
.stages-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stage-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}
.stage-item:hover { transform: translateY(-4px); }
.stage-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--card-light-bg);
    line-height: 1;
    margin-bottom: 16px;
}
.stage-content h3 { font-size: 18px; margin-bottom: 8px; }
.stage-content p { font-size: 14px; color: var(--text-light); }

/* Testimonials Carousel */
.testimonials-section { margin-bottom: var(--spacing-section); }
.slider-wrapper { position: relative; max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 4px 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 32px;
    flex: 0 0 380px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-rating { display: flex; gap: 4px; color: #F59E0B; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; font-style: italic; color: var(--text-dark); margin-bottom: 24px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.testimonial-author h4 { font-size: 15px; margin-bottom: 2px; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    transition: all 0.3s;
}
.slider-btn:hover { background: var(--primary-color); color: var(--white); border-color: transparent; }
.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* FAQ Accordion */
.faq-section { margin-bottom: var(--spacing-section); }
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.faq-item summary {
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 800;
    transition: transform 0.3s ease;
    margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 28px 24px; font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* SEO Content Section */
.seo-section { margin-bottom: var(--spacing-section); }
.seo-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.seo-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
    margin-bottom: 32px;
}
.seo-header h2 { font-size: clamp(24px, 2.5vw, 34px); margin-bottom: 10px; }
.seo-header p { font-size: 16px; color: var(--text-muted); }
.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.seo-col h3 { font-size: 20px; margin-bottom: 16px; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.seo-col h3 i { color: var(--primary-color); font-size: 18px; }
.seo-col p { font-size: 15px; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
.seo-col ul { list-style: none; margin-bottom: 20px; }
.seo-col ul li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}
.seo-col ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}
.seo-tags-box {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.seo-tags-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-right: 6px; }
.seo-tag-item {
    background: var(--card-light-bg);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.seo-tag-item:hover { background: var(--primary-color); color: var(--white); }


/* CTA Section */
.cta-section { margin-bottom: var(--spacing-section); }
.cta-card {
    background: var(--card-dark-gradient);
    border-radius: var(--border-radius-xl);
    padding: 70px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}
.cta-card h2 { color: var(--white); margin-bottom: 16px; z-index: 2; }
.cta-card p { color: rgba(255, 255, 255, 0.85); max-width: 680px; font-size: 18px; margin-bottom: 36px; z-index: 2; }
/* ==========================================================================
   Floating Widgets (Call & Messenger Dropdown)
   ========================================================================== */

/* 1. Expressive Multi-Ring Floating Phone Call Button (Bottom Right) */
.floating-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.55), 0 0 0 0 rgba(16, 185, 129, 0.6);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    cursor: pointer;
}

/* Multi-Ring Concentric Radar Waves */
.floating-call-btn::before,
.floating-call-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(16, 185, 129, 0.7);
    pointer-events: none;
    animation: radarWave 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.floating-call-btn::after {
    animation-delay: 1.2s;
}

@keyframes radarWave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.9;
        border-width: 3px;
    }
    50% {
        opacity: 0.5;
        border-width: 2px;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
        border-width: 1px;
    }
}

/* Vibrating / Ringing Phone Icon */
.floating-call-btn i {
    display: inline-block;
    animation: phoneWiggle 2.8s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes phoneWiggle {
    0%, 60%, 100% {
        transform: rotate(0deg) scale(1);
    }
    65%, 75%, 85% {
        transform: rotate(-18deg) scale(1.18);
    }
    70%, 80%, 90% {
        transform: rotate(18deg) scale(1.18);
    }
    95% {
        transform: rotate(-8deg) scale(1.08);
    }
}

.floating-call-btn:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.7), 0 0 30px rgba(16, 185, 129, 0.6);
    color: var(--white);
}

.floating-call-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0F172A;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.floating-call-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0F172A;
}
.floating-call-btn:hover .floating-call-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* 2. Floating Dropdown Messenger Widget (Bottom Left) */
.floating-messenger-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99998;
    font-family: inherit;
}

.floating-msg-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(2, 132, 199, 0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    outline: none;
}
.floating-msg-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 34px rgba(2, 132, 199, 0.65);
}
.floating-msg-btn .msg-icon-open,
.floating-msg-btn .msg-icon-close {
    position: absolute;
    transition: all 0.3s ease;
}
.floating-msg-btn .msg-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}
.floating-messenger-widget.active .floating-msg-btn {
    background: #0F172A;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.6);
    transform: rotate(90deg);
}
.floating-messenger-widget.active .floating-msg-btn .msg-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
.floating-messenger-widget.active .floating-msg-btn .msg-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #ffffff;
}

/* Online Pulse Dot on Messenger Button */
.msg-badge-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10B981;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: msgBadgePulse 2s infinite;
}
@keyframes msgBadgePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Messenger Dropdown Menu (Opens Upward from bottom-left) */
.floating-msg-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 250px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom left;
}
.floating-messenger-widget.active .floating-msg-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.msg-menu-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    padding: 0 4px 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.msg-menu-header span.online-status {
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}
.msg-menu-header span.online-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
}

.msg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.25s ease;
    background: #F8FAFC;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.msg-item:hover {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.msg-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.msg-item:hover .msg-item-icon {
    transform: scale(1.08);
}
.msg-item.viber .msg-item-icon { background: linear-gradient(135deg, #7360F2 0%, #5B48DF 100%); }
.msg-item.telegram .msg-item-icon { background: linear-gradient(135deg, #229ED9 0%, #1783B8 100%); }
.msg-item.whatsapp .msg-item-icon { background: linear-gradient(135deg, #25D366 0%, #1EA952 100%); }
.msg-item.phone .msg-item-icon { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }

.msg-item-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.msg-item-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}
.msg-item-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
.msg-item-arrow {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.2s;
}
.msg-item:hover .msg-item-arrow {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: var(--card-dark-bg);
    color: var(--white);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    padding: 70px 30px 40px;
    margin-top: 40px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col p { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-bottom: 12px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-color); }
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-menu span {
    width: 100%;
    height: 2.5px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.burger-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Reveal Animations */
.reveal { opacity: 0; transition: all 0.7s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translate(0, 0); }
.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

/* Responsive Queries */
@media (max-width: 1024px) {
    .floating-header { width: 95%; padding: 10px 20px; }
    .burger-menu { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 20px;
        padding: 40px 20px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 20px; font-weight: 700; color: var(--text-dark); }
    .nav-drawer-cta { display: block; width: 100%; max-width: 280px; margin-top: 15px; }
    .header-phone-btn { display: none; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 110px;
    }
    .hero-features { max-width: 500px; margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-right { width: 100%; }
    .hero-glass-card { max-width: 500px; }
    
    .who-we-are-section { flex-direction: column; }
    .stats-card { flex: auto; }
    .calc-card { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-wide { grid-column: span 2; }
    .stages-timeline { grid-template-columns: 1fr 1fr; }
    .fleet-grid { grid-template-columns: 1fr 1fr; }
    .faq-container { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 45px;
    }
    main { padding: 80px 14px 0; }
    .floating-header { width: calc(100% - 24px); padding: 8px 16px; top: 12px; }
    .logo-title { font-size: 15px; }
    .logo-icon { width: 36px; height: 36px; font-size: 17px; }
    .floating-header .btn-primary { display: none; }
    
    .hero-section { min-height: 75vh; margin-top: -100px; }
    .hero-content { padding: 100px 16px 40px; }
    .hero-left h1 { font-size: 29px; line-height: 1.15; }
    .hero-left p { font-size: 15px; }
    .hero-features { grid-template-columns: 1fr; gap: 10px; }
    .hero-feat-item { padding: 10px 14px; font-size: 13px; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-glass-card { padding: 24px 18px; border-radius: var(--border-radius-md); }
    .quick-phone-btn { font-size: 18px; padding: 15px 18px; }

    .about-content { flex-direction: column-reverse; padding: 24px 16px; text-align: center; }
    .about-image { width: 100%; height: 210px; }
    .about-list li { text-align: left; }
    
    .service-card { flex-direction: column; min-height: auto; position: static; margin-bottom: 20px; }
    .service-content-left { padding: 24px 16px 12px; }
    .service-img-right { padding: 16px; height: 210px; }
    .service-number-large { font-size: 46px; margin-bottom: 4px; }
    
    .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
    .fleet-card img { height: 210px; }
    .bento-grid { grid-template-columns: 1fr; gap: 14px; }
    .bento-wide, .bento-tall { grid-column: span 1; grid-row: span 1; }
    
    .calc-card { padding: 24px 16px; }
    .calc-vehicle-types { grid-template-columns: 1fr; gap: 10px; }
    .calc-right { padding: 24px 16px; }
    
    .pricing-card { padding: 28px 18px; }
    
    .stages-timeline { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { flex: 0 0 90vw; padding: 24px 18px; }
    
    .cta-card { padding: 40px 18px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn-primary, .cta-buttons .btn-outline { width: 100%; justify-content: center; }
    
    .seo-container { padding: 28px 16px; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Mobile Floating Action Buttons */
    .floating-call-btn {
        bottom: 18px;
        right: 18px;
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
    .floating-call-tooltip {
        display: none;
    }
    .floating-messenger-widget {
        bottom: 18px;
        left: 18px;
    }
    .floating-msg-btn {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
    .floating-msg-menu {
        bottom: 72px;
        left: 0;
        width: 235px;
        padding: 12px;
    }
}
