/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

:root {
    --primary-color: #C62828;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow-soft: 0 4px 20px rgba(198, 40, 40, 0.15);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(198, 40, 40, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ============================================
   HEADER DESKTOP
   ============================================ */

.header-desktop {
    display: block;
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header-desktop.scrolled {
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-gray);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


.btn-call-now {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.btn-call-now:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
}

/* ============================================
   HEADER MOBILE
   ============================================ */

.header-mobile {
    display: none;
    position: sticky;
    top: 0;
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
}

.header-mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header-mobile .logo {
    font-size: 18px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    justify-content: center;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-menu {
    align-self: flex-end;
    padding: 8px;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-nav-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.mobile-nav-item svg {
    flex-shrink: 0;
}


.btn-quote-mobile {
    margin: 24px 0;
    padding: 18px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.mobile-menu-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-light);
}

.location-info,
.hours-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bn.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.85) 0%, rgba(183, 28, 28, 0.75) 100%);
    opacity: 0%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature svg {
    color: var(--white);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.hero-form-card h3 {
    margin-bottom: 24px;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-quote-form input {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.quick-quote-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ============================================
   PAGE HERO (For About, Services, etc.)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banhiz.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-contact {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bn.jpeg') !important;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
    text-align: center;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(198, 40, 40, 0.25);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

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

.service-image-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 350px;
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(198, 40, 40, 0.25);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.image-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--dark-gray);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.image-overlay-text span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.image-overlay-text small {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}


.about-text h2 {
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    min-width: 140px;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process {
    background-color: var(--light-gray);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   FLEET SECTION
   ============================================ */

.fleet {
    background-color: var(--light-gray);
}

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

.fleet-card {
    background-color: var(--white);
    padding: 48px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(198, 40, 40, 0.3);
}

.fleet-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.fleet-card h3 {
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

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

/* ============================================
   BLOG SECTION
   ============================================ */

.blog {
    background-color: var(--white);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(198, 40, 40, 0.25);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.blog-image svg {
    width: 100%;
    height: 100%;
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-content h3 {
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    align-self: flex-start;
}

.blog-read-more:hover {
    color: #B71C1C;
    padding-left: 4px;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */

.quote-form-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
}

.quote-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* ============================================
   MAP & CONTACT SECTION
   ============================================ */

.map-contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    height: 500px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    height: fit-content;
}

.contact-card h3 {
    color: var(--dark-gray);
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details h4 {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-details a,
.contact-details p {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 16px;
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-about {
    max-width: 100%;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}


.service-areas li,
.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-areas li svg,
.contact-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

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

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
}

/* Footer Mobile */
.footer-mobile {
    display: none;
}

.footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion-btn {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-align: left;
}

.footer-accordion-btn span {
    font-size: 24px;
    transition: transform 0.3s;
}

.footer-accordion-btn.active span {
    transform: rotate(45deg);
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-accordion-content.active {
    max-height: 500px;
    padding-bottom: 16px;
}

.footer-accordion-content a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-accordion-content span {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.service-area-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-social-mobile {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 32px 0;
}

.footer-social-mobile a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social-mobile a:hover {
    color: var(--white);
    transform: scale(1.1);
}

.btn-quote-footer-mobile {
    display: block;
    margin: 0 0 24px;
    padding: 18px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.footer-copyright-mobile {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-mobile p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

/* ============================================
   FLOATING ACTION BUTTON (MOBILE)
   ============================================ */

.floating-action-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
    z-index: 999;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.floating-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.5);
}

.floating-action-btn svg {
    color: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .services-grid,
    .testimonials-slider,
    .fleet-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .map-contact-content {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-container {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 48px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .hero-background {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bn.jpeg');
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
        line-height: 1.3;
        padding: 0 8px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
        padding: 0 8px;
    }

    /* Page Hero Mobile */
    .page-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banhiz.jpg');
        background-size: cover;
        background-position: center;
        padding: 80px 0 48px !important;
    }
    
    .page-hero-contact {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/bn.jpeg') !important;
    }

    .page-hero h1 {
        font-size: 1.75rem !important;
        margin-bottom: 12px;
    }

    .page-hero p {
        font-size: 1rem !important;
        padding: 0 16px;
    }

    .hero-features {
        gap: 12px;
        margin-bottom: 32px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-feature {
        font-size: 13px;
        padding: 0 4px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-form-card {
        padding: 28px 20px;
        margin: 0 8px;
    }

    .hero-form-card h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .service-image-card {
        min-height: 250px;
    }
    
    .fleet-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Testimonials Mobile */
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 24px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonials-slider .testimonial-card {
        min-width: 100%;
        scroll-snap-align: start;
    }

    .service-card,
    .fleet-card {
        padding: 32px 24px;
    }

    .service-icon,
    .fleet-icon {
        margin-bottom: 20px;
    }

    .service-icon svg,
    .fleet-icon svg {
        width: 64px;
        height: 64px;
    }

    /* Timeline Mobile */
    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
        position: relative;
    }

    .timeline-item {
        position: relative;
        padding-left: 100px;
        text-align: left;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 39px;
        top: 60px;
        width: 3px;
        height: calc(100% + 24px);
        background-color: var(--primary-color);
        opacity: 0.3;
    }

    .timeline-item:last-child::before {
        display: none;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        top: 0;
    }

    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 300px !important;
    }

    .trust-badges {
        gap: 16px;
        justify-content: center;
    }

    .trust-badge {
        min-width: 120px;
        padding: 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    /* Quote Form Mobile */
    .quote-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        display: none;
    }

    .footer-bottom {
        display: none;
    }

    .footer-mobile {
        display: block;
        padding: 48px 0 0;
    }

    /* Floating Button */
    .floating-action-btn {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 0 4px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 4px;
    }

    .hero-feature {
        font-size: 12px;
    }

    .hero-cta {
        padding: 0 4px;
    }

    .hero-form-card {
        padding: 24px 16px;
        margin: 0 4px;
    }

    .hero-form-card h3 {
        font-size: 1.125rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badge {
        min-width: auto;
    }

    /* Page Hero Small Mobile */
    .page-hero {
        padding: 60px 0 40px !important;
    }

    .page-hero h1 {
        font-size: 1.5rem !important;
    }

    .page-hero p {
        font-size: 0.9rem !important;
    }
    
    /* Services Small Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image-card {
        min-height: 200px;
    }
}
