/* ==========================================================================
   AL AIN CAR RECOVERY - MODERN DESIGN SYSTEM & STYLE
   ========================================================================== */

/* Variables */
:root {
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --primary: #FF7A00;
    --primary-hover: #E06B00;
    --primary-glow: rgba(255, 122, 0, 0.15);
    --secondary: #0F172A;
    --secondary-hover: #1E293B;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BA5A;
    --whatsapp-glow: rgba(37, 211, 102, 0.15);
    
    --text-white: #0F172A;      /* Headings become dark slate */
    --text-light: #334155;      /* Body text slate-700 */
    --text-muted: #64748B;      /* Muted text slate-500 */
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(255, 122, 0, 0.4);
    
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 25px rgba(255, 122, 0, 0.15);
}

/* Base Reset & Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-light);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Secure all sections against layout overflow and scrolling shift issues */
section {
    overflow: hidden !important;
    width: 100%;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
}

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: #FFFFFF;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 10px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    box-shadow: 0 6px 18px var(--whatsapp-glow);
    transform: translateY(-2px);
}

/* Pulse Animation for buttons */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

/* Gradients and Highlights */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

/* Scroll & Entrance Animation Engine (Hardware Accelerated) */
.animate-on-scroll {
    opacity: 0 !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.animate-on-scroll.animate-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Slide Left Animation Class */
.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

/* Slide Right Animation Class */
.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

/* Fade In Up Animation Class */
.animate-on-scroll.fade-in {
    transform: translateY(40px);
}

/* Scale Up Animation Class */
.animate-on-scroll.scale-up {
    transform: scale(0.92);
}

/* Announcement Bar Marquee (Hardware Accelerated Ticker) */
.announcement-bar {
    background: var(--primary); /* Branded Caution Orange */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px; /* Lock height */
    font-size: 0.85rem;
    color: #FFFFFF;
    position: fixed; /* Fixed top position */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden; /* Hide scrollbars and clip slide overflow */
    width: 100%;
    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite; /* Smooth leftward scrolling */
    will-change: transform;
}

/* Pause on hover so the user can easily tap the Call button! */
.announcement-track:hover {
    animation-play-state: paused;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 2rem; /* Clean distance between text elements */
    padding-right: 5rem; /* Safe spacing before identical duplicated content */
    white-space: nowrap;
}

.announcement-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
}

.announcement-link {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent premium call pill */
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.announcement-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    text-decoration: none;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Loops perfectly and seamlessly */
}

.pulse-icon {
    width: 6px;
    height: 6px;
    background-color: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 10px #00E676;
    animation: blink 1s infinite;
}

/* Header & Navigation */
.main-header {
    position: fixed; /* Fully fixed at the top */
    top: 40px; /* Aligned beneath the 40px fixed announcement bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    overflow: hidden;
}

.logo-img {
    height: 48px;  /* Increased from 32px to 48px for perfect presence */
    width: auto;
    object-fit: contain;
    display: block;
}

/* If the logo image displays, hide the backup svg */
.logo-img:not([style*="display: none"]) + .logo-svg {
    display: none;
}

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

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* Menu links */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.03) 0%, transparent 60%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0 L100 100 M100 0 L0 100' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.7;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(var(--bg-main) 30%, transparent 80%),
                radial-gradient(ellipse at center, transparent 0%, var(--bg-main) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white);
}

.benefit-icon {
    color: var(--primary);
    background: rgba(255, 122, 0, 0.1);
    padding: 3px;
    border-radius: 50%;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Trust Stats */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

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

.glow-sphere {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.tow-truck-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.tow-truck-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.tow-truck-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.tow-truck-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tow-truck-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
}

.driver-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 10px #00E676;
    animation: blink 1.2s infinite;
}

.driver-title {
    display: block;
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.driver-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Sections Global Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Services Grid & Card Layout */
.services-section {
    background-color: #FFFFFF;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

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

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.service-card.featured {
    border: 1px solid rgba(255, 122, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.05);
}

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

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon-wrapper {
    color: var(--primary);
    background: rgba(255, 122, 0, 0.08);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 122, 0, 0.15);
}

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

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.service-cta {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: auto;
}

.service-btn {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-btn .arrow {
    transition: var(--transition-fast);
}

.service-card:hover .service-btn {
    color: var(--primary);
}

.service-card:hover .service-btn .arrow {
    transform: translateX(5px);
}

/* Urgency / CTA Bar Section */
.urgency-section {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.urgency-glow-1 {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.urgency-glow-2 {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.urgency-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.urgency-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.active-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.active-pulse {
    width: 8px;
    height: 8px;
    background-color: #00E676;
    border-radius: 50%;
    box-shadow: 0 0 8px #00E676;
    animation: blink 1.2s infinite;
}

.active-status strong {
    color: var(--text-white);
}

/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-info .section-tagline {
    margin-bottom: 0.75rem;
}

.why-us-info .section-title {
    margin-bottom: 1.5rem;
}

.why-us-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-check-item {
    display: flex;
    gap: 1.25rem;
}

.check-icon {
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.check-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.check-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Us Visuals */
.why-us-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
}

.trust-box-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.trust-card-glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.trust-card-glass:hover {
    transform: translateX(10px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

.trust-card-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.trust-card-glass h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-card-glass p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.card-1 { margin-right: 3rem; }
.card-2 { margin-left: 2rem; margin-right: 1rem; border-color: rgba(255, 122, 0, 0.2); }
.card-3 { margin-right: 4rem; }

/* Areas Covered Section */
.areas-section {
    background-color: #F1F5F9;
    overflow: hidden;
}

.areas-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 122, 0, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.area-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
}

.area-title-category {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.category-icon {
    font-size: 1.75rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.area-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.area-banner {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.02) 100%);
    border: 1px solid rgba(255, 122, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.area-banner-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.area-banner-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials Layout */
.testimonials-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.03) 0%, transparent 80%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.stars {
    color: #FFB300;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFB300 100%);
    color: var(--text-white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 122, 0, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.client-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: #F1F5F9;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 122, 0, 0.2);
}

.faq-item.active {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-white);
    transition: var(--transition-normal);
}

/* horizontal line */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* vertical line */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    background-color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding: 0 2rem 1.75rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Section styling */
.main-footer {
    background-color: #F8FAFC;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

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

.footer-brand .footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0 2rem 0;
    line-height: 1.6;
}

.call-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
}

.call-icon {
    font-size: 1.75rem;
}

.call-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.call-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.call-num:hover {
    color: var(--primary-hover);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-item .icon {
    font-size: 1.1rem;
    line-height: 1;
}

.contact-item strong {
    color: var(--text-white);
}

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

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--text-white);
}

/* Floating Emergency Action Bar (Mobile-only bottom bar) */
.floating-actions {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex; /* Permanently visible globally (desktop + mobile) */
    justify-content: space-between; /* Call on left, WhatsApp on right */
    align-items: center;
    padding: 0 24px;
    pointer-events: none; /* Let touches pass through empty middle area */
    z-index: 999;
}

.float-btn {
    pointer-events: auto; /* Enable touch clicks on the buttons */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-normal);
}

.float-call {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.float-call:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

.float-whatsapp {
    background: var(--whatsapp);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.float-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-3px);
}

.float-btn span {
    white-space: nowrap;
}

.float-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Up to 1024px (Laptops / Tablets) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        width: 100%;
    }
    
    .tow-truck-card {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tow-truck-card:hover {
        transform: translateY(-5px);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-us-visual {
        min-height: auto;
    }
    
    .card-1, .card-2, .card-3 {
        margin-right: 0;
        margin-left: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Up to 768px (Tablets / Phablets) */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .hero-section {
        padding: 130px 0 90px; /* Safe padding for mobile fixed header */
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .announcement-bar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 34px !important; /* Mobile fixed height */
        z-index: 1001 !important;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .announcement-content {
        gap: 1.5rem;
        padding-right: 3rem;
    }
    
    .announcement-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem !important;
        border-radius: 50px !important;
        display: inline-flex !important;
    }
    
    .main-header {
        position: fixed !important;
        top: 34px !important; /* Aligned beneath 34px announcement bar */
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    /* Navigation Hamburger Toggle active */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 114px; /* Starts exactly at the bottom of 34px + 80px navbar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 114px);
        background: var(--bg-main);
        border-top: 1px solid var(--border-color);
        padding: 3rem 2rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.3rem;
        display: block;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .nav-whatsapp-btn {
        display: none; /* Hidden on tablet header to keep space */
    }
    
    .nav-call-btn span {
        display: none; /* Icon-only on small screen navbar */
    }
    
    .nav-call-btn {
        padding: 0.5rem;
        border-radius: 50%;
        width: 44px;
        height: 44px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-column {
        padding: 2rem;
    }
    
    .area-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .urgency-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    /* Active hamburger styling */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

/* Up to 480px (Smartphones) - Critical Mobile Experience */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-trust {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .tow-truck-image {
        height: 240px;
    }
    
    .tow-truck-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 0.75rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .faq-trigger {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content p {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    /* Show Floating mobile actions bottom bar */
    .floating-actions {
        display: flex;
    }
    
    /* For smaller mobile screens, collapse to beautiful circles so they never block the center content! */
    @media (max-width: 400px) {
        .float-btn span {
            display: none; /* Hide text on tiny screens */
        }
        .float-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            padding: 0;
            justify-content: center;
        }
    }
    
    /* Add extra padding to body bottom so page content doesn't get covered by the bar */
    body {
        padding-bottom: 90px;
    }
}
