/* ==========================================================================
   Kuttikkatt Motors - Modern Commercial Vehicle Homepage
   Base Stylesheet & Design System (located in assets/css/style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary-red: #BA0C15;
    --hover-red: #A80F16;
    --color-white: #FFFFFF;
    --color-black: #111111;
    --text-dark: #353535;
    --text-light: #F4F4F4;
    --black-overlay: rgba(0, 0, 0, 0.45);
    --dark-gradient: linear-gradient(180deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 15%) 50%, rgb(0 0 0 / 20%) 100%);

    /* Typography */
    --font-primary: "Google Sans Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Layout & Spacing */
    --container-max-width: 1720px;
    --header-height: 80px;
    --border-radius-sm: 5px;
    --border-radius-pill: 50px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sticky: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 4px 15px rgba(197, 22, 29, 0.25);
    --shadow-float: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   2. Global Resets & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: #0d0d0d;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    opacity: 0;
    animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
    to {
        opacity: 1;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

img,
video {
    max-width: 100%;
    display: block;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    border-bottom: 1px solid #EAEAEA;
    z-index: 1000;
    transition: box-shadow var(--transition-normal), background-color var(--transition-normal);
    box-shadow: 0px 0px 15px 8px #00000012;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sticky);
}

.header-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: -0.02em;
    font-family: var(--font-primary);
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.05em;
    margin-top: 1px;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #3C3C3C;
    padding: 8px 0;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-red);
}

/* Active & Hover Underline Animation */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-link-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px 2px;
    color: #3C3C3C;
    transition: color var(--transition-fast);
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-trigger,
.nav-item.active .dropdown-trigger {
    color: var(--primary-red);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: translateY(2px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1000;
    border: 1px solid #EAEAEA;
    list-style: none;
}

/* Invisible bridge to maintain hover state when moving cursor to dropdown */
.nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #3C3C3C;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: #F8F9FA;
    color: var(--primary-red);
}

/* Mobile Submenu */
.mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
}

.mobile-dropdown-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 6px 0;
    display: block;
    transition: color var(--transition-fast);
}

.mobile-dropdown-link:hover {
    color: var(--primary-red);
}

/* Contact Button */
.header-actions {
    display: flex;
    align-items: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-red);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 2px 8px rgba(197, 22, 29, 0.2);
}

.btn-contact:hover {
    background-color: var(--hover-red);
    transform: translateY(-1px);
    box-shadow: var(--shadow-button);
}

.btn-contact .separator {
    color: #D0D0D0;
    font-weight: 300;
}

.btn-contact .arrow-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.btn-contact:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hamburger Menu Toggle */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1005;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-red);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Background Video & Fallback Poster */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000 url('../images/home/banner-poster.webp') center/cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 20%) 50%, rgb(0 0 0 / 40%) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content Grid */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

/* Hero Left Content */
.hero-left {
    max-width: 100%;
    width: 100%;
    animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-heading {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Bottom Row: 5 Cards + Right Paragraph Description */
.hero-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-top: 24px;
}

/* 5 Cards Row */
.hero-cards-grid {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex: 1;
}

.hero-card-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 68px;
    padding: 20px 35px;
    border-radius: 4px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--color-white);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated growing red line on bottom */
.hero-card-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-red, #BA0C15);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.hero-card-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: inherit;
    max-width: 130px;
}

/* Hover effect: Turns white with dark text, dark icon, and expanding red line */
.hero-card-item:hover {
    background: #ffffffa8;
    border-color: #ffffff;
    color: #1e1e1e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-bottom: 0px;
}

.hero-card-item:hover::after {
    transform: scaleX(1);
}

.hero-card-item:hover .hero-card-icon img {
    filter: brightness(0);
}

/* Hero Right Paragraph Description */
.hero-right {
    max-width: 280px;
    flex-shrink: 0;
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
}

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

/* --------------------------------------------------------------------------
   5. Floating Elements (Feedback & WhatsApp)
   -------------------------------------------------------------------------- */
/* Vertical Feedback Button */
.feedback-floating-btn {
    display: none !important;
}

/* Bottom-Right WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

/* Mobile Sticky Bottom Action Bar */
.mobile-bottom-bar {
    display: none;
}

/* --------------------------------------------------------------------------
   6. Mobile Slide-in Drawer Menu Overlay
   -------------------------------------------------------------------------- */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-white);
    z-index: 1002;
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.mobile-close-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.mobile-close-btn:hover {
    background-color: #F0F0F0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    color: var(--primary-red);
}

.mobile-nav-footer {
    padding-top: 16px;
    padding-bottom: 0;
    margin-top: auto;
    border-top: 1px solid #EEEEEE;
}

.mobile-nav-footer .btn-contact {
    width: 100%;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   7. About Company Section
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-white);
    padding: 137px 0 32px 0;
    width: 100%;
    border-bottom: 1px dashed #0000004F;
}

.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 268px;
}

.about-label-col {
    padding-top: 6px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 400;
    color: #353535;
}

.square-dot {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red);
    display: inline-block;
    flex-shrink: 0;
}

.square-dot.white-dot {
    background-color: #fff;
}

.white-label {
    color: #fff;
}

.about-content-col {
    width: 100%;
}

.about-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    color: #353535;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #454545;
    max-width: 870px;
    margin-bottom: 32px;
}

.about-action {
    margin-bottom: 61px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    font-size: 15px;
    font-weight: 500;
    padding: 11px 25px;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.btn-read-more:hover {
    background-color: var(--primary-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.25);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
}

.about-img-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-card:hover img {
    transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   8. Find Your Ideal Eicher Vehicle Section
   -------------------------------------------------------------------------- */
.find-vehicle-section {
    background-color: var(--color-white);
    padding: 70px 0 60px 0;
    width: 100%;
}

.find-vehicle-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.find-vehicle-header {
    text-align: center;
    margin-bottom: 42px;
}

.find-vehicle-title {
    font-size: 48px;
    font-weight: 600;
    color: #353535;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.find-vehicle-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #454545;
}

/* Tabs */
.vehicle-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.vehicle-tabs {
    display: inline-flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #C2C2C2;
    border-radius: 8px;
    padding: 8px;
    gap: 10px;
}

.tab-btn {
    background: transparent;
    color: #353535;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn.active {
    background-color: var(--primary-red);
    color: var(--color-white);
}

/* Filter Form */
.filter-form-wrapper {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.vehicle-filter-form {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-filter-form.active {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    opacity: 1;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-label {
    font-size: 16px;
    font-weight: 500;
    color: #353535;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 6px;
}

.filter-select {
    width: 100%;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #C2C2C2;
    border-radius: 6px;
    padding: 0 36px 0 16px;
    font-size: 14px;
    color: #2e2e2e;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(186, 12, 21, 0.1);
}

/* .filter-select:disabled {
    background-color: #F7F7F7;
    color: #A0A0A0;
    cursor: not-allowed;
    border-color: #E2E2E2;
    opacity: 0.75;
} */

.filter-submit-group {
    flex-shrink: 0;
}

.btn-filter-submit {
    height: 48px;
    background-color: var(--primary-red);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    padding: 0 44px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-filter-submit:hover {
    background-color: var(--hover-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.3);
}

/* Banner Image */
.vehicle-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    overflow: hidden;
}

.vehicle-banner-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   9. Services Section (Preventive Maintenance Solutions)
   -------------------------------------------------------------------------- */
.services-section {
    background-color: #F6F6F6;
    padding: 68px 0 100px 0;
    width: 100%;
}

.services-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.services-header-left {
    display: flex;
    flex-direction: column;
}

.services-header-left .section-label {
    margin-bottom: 16px;
}

.services-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #353535;
    letter-spacing: -0.01em;
}

.services-header-right {
    max-width: 480px;
    padding-bottom: 4px;
}

.services-header-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #454545;
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 5px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-img {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    padding-bottom: 24px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color: #353535;
    margin-bottom: 30px;
}

.service-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #737373;
}

.card-square-dot {
    width: 15px;
    height: 15px;
    background-color: var(--primary-red);
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   10. Gallery Section & 3D Perspective Slider
   -------------------------------------------------------------------------- */
.gallery-section {
    background-color: var(--color-white);
    padding: 110px 0 62px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 2px dashed #0000004F;
}

.gallery-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.gallery-header {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.gallery-header .section-label {
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    margin-bottom: 35px;
}

.gallery-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #454545;
    max-width: 850px;
    margin: 0 auto;
}

/* Nav Arrows */
.gallery-slider-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: #E6E6E6;
    color: #666666;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-arrow:hover {
    background-color: var(--primary-red);
    color: var(--color-white);
}

/* 3D Slider Track & Wrapper */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    user-select: none;
}

/* Slide Cards Styling */
.slide-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    transition: all 0.4s ease;
}

.slide-img-wrapper {
    width: 100%;
    height: 235px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-slide.active .slide-img-wrapper {
    height: 295px;
}

.gallery-slide.active {
    margin: 0px 30px;
}

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

.slide-info {
    padding: 30px 20px 10px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide-title {
    font-size: 20px;
    font-weight: 500;
    color: #191919;
    letter-spacing: 0.02em;
}

.slide-number {
    font-size: 56px;
    font-weight: 700;
    color: #D4D4D4;
    line-height: 1;
    font-family: var(--font-primary);
    width: 100%;
    display: block;
    text-align: right;
}

/* Positions relative to Active Slide */
.gallery-slide[data-position="0"] {
    transform: translateX(0) scale(1.12);
    z-index: 10;
    opacity: 1;
}

.gallery-slide[data-position="0"] .slide-card {

    background-color: #EFEFEF;
    padding: 16px;
}

.gallery-slide[data-position="0"] .slide-info {
    opacity: 1;
    visibility: visible;
}

.gallery-slide[data-position="-1"] {
    transform: translateX(-550px) scale(0.85);
    z-index: 5;
}

.gallery-slide[data-position="1"] {
    transform: translateX(550px) scale(0.85);
    z-index: 5;
}

.gallery-slide[data-position="-2"] {
    transform: translateX(-860px) scale(0.45);
    z-index: 1;
}

.gallery-slide[data-position="2"] {
    transform: translateX(860px) scale(0.45);
    z-index: 1;
}

.gallery-slide[data-position="hidden"] {
    transform: translateX(0) scale(0.4);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* View More Action */
.gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 26px;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.btn-view-more:hover {
    background-color: var(--primary-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.25);
}

/* --------------------------------------------------------------------------
   11. Testimonials Section (Real Experiences. Lasting Trust.)
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-white);
    padding: 80px 0 11px 0;
    width: 100%;
}

.testimonials-header-container {
    max-width: var(--container-max-width);
    margin: 0 auto 60px auto;
    padding: 0 40px;
}

.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.testimonials-header-left {
    display: flex;
    flex-direction: column;
}

.testimonials-header-left .section-label {
    margin-bottom: 16px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #353535;
    letter-spacing: -0.01em;
}

.testimonials-header-right {
    max-width: 480px;
    padding-bottom: 4px;
}

.testimonials-header-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #454545;
}

/* Gray Background Body Wrapper */
.testimonials-body-wrapper {
    background-color: #EDEDED;
    padding: 60px 0 50px 0;
    width: 100%;
}

.testimonials-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Testimonials Slider Track & Overflow */
.testimonials-slider-overflow {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    border-radius: 0px;
    border: 3px solid #fff;
    padding: 48px 34px 48px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card-body {
    position: relative;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-primary), Georgia, serif;
    display: inline;
}

.quote-open {
    margin-right: 4px;
}

.quote-close {
    margin-left: 2px;
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: #454545;
    display: inline;
}

.testimonial-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 16px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 18px;
    font-weight: 500;
    color: #353535;
    line-height: 1.2;
    margin-bottom: 3px;
}

.author-role {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-rating .star {
    color: #EAB308;
    font-size: 18px;
}

/* Pagination Dots */
.testimonials-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonials-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials-pagination .dot.active {
    background-color: var(--primary-red);
}

/* --------------------------------------------------------------------------
   12. CTA Banner Section (Ready To Drive Your Business Forward?)
   -------------------------------------------------------------------------- */
.cta-banner-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    background-image: url('../images/home/footer-banner.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 0;
    margin-bottom: 7px;
}

.cta-banner-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-card {
    width: 100%;
    max-width: 490px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.cta-card-top {
    background-color: #FFFFFF;
    padding: 59px 47px 73px 47px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.cta-card-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.28;
    color: #353535;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #454545;
}

/* Divider with red notches */
.cta-card-divider {
    position: relative;
    width: 100%;
    height: 1px;
}

.cta-card-divider .notch {
    position: absolute;
    top: -9px;
    width: 2px;
    height: 14px;
    background-color: var(--primary-red);
}

.cta-card-divider .notch-left {
    left: 80px;
}

.cta-card-divider .notch-right {
    right: 80px;
}

.cta-card-bottom {
    background-color: #FFFFFF;
    padding: 20px 45px 20px 45px;
    border-radius: 4px;
}

.btn-cta-connect {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-cta-connect:hover {
    background-color: var(--hover-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.3);
}

/* --------------------------------------------------------------------------
   13. Site Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #000;
    color: #FFFFFF;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 70px 0px 50px;
}

/* Vertical Red Gradient spreading full width from top to bottom */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 420px;
    background: linear-gradient(180deg, rgba(186, 12, 21, 0) 0%, rgb(68 7 11 / 25%) 45%, rgb(108 8 14 / 55%) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer-top-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-container,
.footer-middle-container,
.footer-bottom-bar {
    position: relative;
    z-index: 2;
}

/* Top Section: Newsletter & Nav Links */
.footer-top-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 40px 40px 40px 40px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
}

/* Newsletter Column */
.footer-newsletter-col {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.newsletter-label {
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFFF0;
    margin-bottom: 14px;
    display: block;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.newsletter-form {
    width: 100%;
    margin-bottom: 14px;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    background-color: #E2E2E2;
    border-radius: 2px;
    overflow: hidden;
    padding: 4px;
}

.newsletter-input {
    flex: 1;
    height: 44px;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 13.5px;
    color: #222222;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-submit-btn {
    width: 41px;
    height: 41px;
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-submit-btn:hover {
    background-color: var(--primary-red);
}

.newsletter-submit-btn svg {
    width: 16px;
    height: 16px;
}

.newsletter-disclaimer {
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFFF0;
    line-height: 1.4;
}

/* Links Grid Column */
.footer-links-col {
    padding-left: 20px;
}

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

.link-group-title {
    font-size: 16px;
    font-weight: 500;
    color: #f5f5f5;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.sitemap-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 16px;
    font-weight: 400;
    color: #D3D3D3;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-red);
}

/* Middle Section: Center Video / 3D Logo */
.footer-middle-container {
    width: 100%;
    padding: 10px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.footer-video-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-center-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: screen;
}

/* Bottom Bar */
.footer-bottom-bar {
    width: 100%;
    padding: 24px 20px 0px 20px;
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff8c;
}

.copyright-text .divider {
    margin: 0 8px;
    color: #ffffff8c;
}

/* --------------------------------------------------------------------------
   14. Spare Parts Section (Genuine Parts. Guaranteed Performance.)
   -------------------------------------------------------------------------- */
.spare-parts-section {
    background-color: #111111;
    color: #FFFFFF;
    padding: 50px 0 70px;
    width: 100%;
    position: relative;
}

.spare-parts-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.spare-parts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column */
.spare-parts-left {
    display: flex;
    flex-direction: column;
}

.spare-parts-left .section-label.white-label {
    color: #FFFFFF;
}

.spare-parts-left .square-dot.white-dot {
    background-color: #FFFFFF;
}

.spare-parts-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    color: #FFFFFF;
    margin-top: 58px;
    margin-bottom: 100px;
    letter-spacing: -0.01em;
}

.chip-graphic-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 60px 0;
    padding: 10px 0;
    min-height: 200px;
    max-width: 525px;
    width: 100%;
}

.spare-graphic-item {
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-normal);
}

.spare-graphic-item.active {
    display: flex;
    animation: graphicFadeIn 0.35s ease-in-out;
}

.spare-graphic-img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes graphicFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.spare-parts-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #cdcdcd;
    max-width: 525px;
}

/* Right Column: Accordion Items */
.parts-accordion-list {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Floating Dots Indicator (Smooth Sliding & Morphs Dots Count) */
.floating-parts-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    display: grid;
    gap: 3px;
    pointer-events: none;
    z-index: 5;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.floating-parts-dots .dot-sq {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red);
    display: block;
    animation: popDot 0.22s ease-out;
}

@keyframes popDot {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.dot-matrix {
    display: grid;
    grid-template-columns: 6px 6px;
    gap: 3px;
    width: 15px;
    column-gap: 8px;
}

.matrix-1 {
    grid-template-areas: "a .";
}

.matrix-2 {
    grid-template-areas: "a ."
        "b .";
}

.matrix-3 {
    grid-template-areas: "a ."
        "b c";
}

.matrix-4 {
    grid-template-areas: "a ."
        "b c"
        "d .";
}

.matrix-5 {
    grid-template-areas: "a ."
        "b c"
        "d e";
}

.matrix-6 {
    grid-template-areas: "a ."
        "b c"
        "d e"
        "f .";
}

.pos-1-1 {
    grid-area: a;
}

.pos-2-1 {
    grid-area: b;
}

.pos-2-2 {
    grid-area: c;
}

.pos-3-1 {
    grid-area: d;
}

.pos-3-2 {
    grid-area: e;
}

.pos-4-1 {
    grid-area: f;
}

.parts-accordion-item {
    padding: 26px 0 26px 111px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.parts-accordion-item:first-child {
    padding-top: 0;
}

.parts-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Red Square Dots Grid Indicators */
.parts-item-dots {
    display: grid;
    gap: 3px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    flex-shrink: 0;
    width: 15px;
}

.parts-accordion-item.active .parts-item-dots {
    opacity: 1;
}

.dot-sq {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    display: block;
}

.dots-count-1 {
    grid-template-columns: 6px;
}

.dots-count-2 {
    grid-template-columns: 6px;
}

.dots-count-3 {
    grid-template-columns: repeat(2, 6px);
}

.dots-count-4 {
    grid-template-columns: repeat(2, 6px);
}

.dots-count-5 {
    grid-template-columns: repeat(2, 6px);
}

.dots-count-6 {
    grid-template-columns: repeat(2, 6px);
}

.parts-item-title {
    font-size: 26px;
    font-weight: 500;
    color: #666666;
    transition: color var(--transition-normal);
    line-height: 1.3;
}

.parts-accordion-item.active .parts-item-title,
.parts-accordion-item:hover .parts-item-title {
    color: #FFFFFF;
}

.parts-item-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin-top: 10px;
    transition: color var(--transition-normal);
}

.parts-accordion-item.active .parts-item-desc {
    display: block;
    color: #a9a9a9;
}

.parts-accordion-item.active {
    border-bottom: 2px dashed rgb(255 255 255 / 50%);
}

.parts-item-media {
    display: none;
}

/* --------------------------------------------------------------------------
   15. Scroll-Triggered Text Slide-Up Animations
   -------------------------------------------------------------------------- */
.reveal-text {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-text.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay Utilities for Natural Text Flow */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-text {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.mobile-bottom-bar .btn-hero-white {
    background-color: var(--primary-red);
    color: var(--color-white);
    padding: 12px 43px;
    border-radius: var(--border-radius-sm);
    border: 0px solid var(--color-white);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

.mobile-bottom-bar .btn-hero-white:hover {
    background-color: var(--primary-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 0px 00px rgba(0, 0, 0, 0.25);
}

.mobile-bottom-bar .btn-hero-outline {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 12px 43px;
    border: 0px solid var(--color-white);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

.mobile-bottom-bar .btn-hero-outline:hover {
    background-color: var(--primary-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 0px 00px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   Feedback Modal Styles
   -------------------------------------------------------------------------- */
.feedback-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.feedback-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.feedback-modal {
    position: relative;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    margin: auto;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-modal-backdrop.active .feedback-modal {
    transform: scale(1) translateY(0);
}

.feedback-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #000;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-normal);
}

.feedback-modal-close:hover {
    color: #888888;
}

.feedback-modal-header {
    margin-bottom: 24px;
}

.feedback-modal-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
    margin-bottom: 6px;
}

.feedback-modal-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}

.feedback-form-group {
    margin-bottom: 18px;
}

.feedback-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feedback-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

/* Star Rating Buttons */
.rating-stars {
    display: flex;
    gap: 10px;
}

.star-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #444444;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.star-btn:hover,
.star-btn.active {
    color: #FFC107;
    transform: scale(1.15);
}

.feedback-form-input,
.feedback-form-select,
.feedback-form-textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgb(143 143 143 / 47%);
    border-radius: 8px;
    padding: 12px 14px;
    color: #000;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form-input:focus,
.feedback-form-select:focus,
.feedback-form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2);
}

.feedback-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url('../images/haulage-trucks/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px 7px;
    padding-right: 36px;
}

.feedback-form-textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-feedback-submit {
    width: 100%;
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 8px;
}

.btn-feedback-submit:hover {
    background-color: #c9181d;
    transform: translateY(-1px);
}

/* Feedback Success State */
.feedback-success-message {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.feedback-success-message.active {
    display: block;
    animation: graphicFadeIn 0.35s ease-in-out;
}

.success-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px auto;
}

.success-title {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.success-desc {
    font-size: 14px;
    color: #a9a9a9;
    line-height: 1.5;
}

@media screen and (max-width: 576px) {
    .feedback-modal-backdrop {
        padding: 16px 12px;
    }

    .feedback-modal {
        padding: 24px 18px 20px 18px;
        max-height: calc(100dvh - 32px);
        margin: auto;
        border-radius: 14px;
    }

    .feedback-modal-header {
        margin-bottom: 14px;
    }

    .feedback-modal-title {
        font-size: 20px;
    }

    .feedback-modal-desc {
        font-size: 13px;
    }

    .feedback-form-group {
        margin-bottom: 12px;
    }

    .feedback-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feedback-form-input,
    .feedback-form-select,
    .feedback-form-textarea {
        padding: 10px 12px;
        font-size: 13.5px;
    }

    .feedback-form-textarea {
        min-height: 70px;
    }

    .btn-feedback-submit {
        padding: 12px;
        font-size: 14px;
        margin-top: 4px;
    }
}

/* ==========================================================================
   About Page Hero & Banner Section
   ========================================================================== */
.about-page-hero {
    background-color: #F6F6F6;
    padding: 130px 0 60px 0;
    width: 100%;
    border-bottom: 1px solid #EBEBEB;
}

.about-page-hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.about-page-hero-top {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: flex-end;
}

.about-page-hero-left {
    max-width: 680px;
}

.about-page-hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    color: #353535;
    margin-top: 30px;
    letter-spacing: -0.02em;
}

.about-page-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 37px;
}

.about-page-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #353535;
    font-weight: 400;
}

.btn-get-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1.5px solid var(--primary-red);
    border-radius: 4px;
    color: var(--primary-red);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-get-quote:hover {
    background-color: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.25);
}

.about-page-dashed-divider {
    width: 100%;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.25);
    margin: 75px 0 63px;
}

/* Stats Row */
.about-page-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-number {
    font-size: 35px;
    font-weight: 500;
    color: var(--primary-red);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: #353535;
    line-height: 1.4;
}

/* ==========================================================================
   About Page Full-Width Banner & Scroll Reveal Text Section
   ========================================================================== */
.about-truck-banner-section {
    width: 100%;
    background-color: #FFFFFF;
}

.about-banner-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

.scroll-text-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 100px 40px 90px 40px;
    text-align: center;
}

.scroll-reveal-paragraph {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -0.01em;
    color: #C0C0C0;
}

.scroll-reveal-paragraph .word {
    color: #C0C0C0;
    transition: color 0.2s ease-out;
    display: inline-block;
    white-space: pre;
}

.scroll-reveal-paragraph .word.active {
    color: #353535;
}

.scroll-accent-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 60px;
    height: 30px;
}

.scroll-accent-bars .bar {
    width: 6px;
    background-color: var(--primary-red);
    border-radius: 2px;
    display: inline-block;
    animation: barWave 1.2s ease-in-out infinite alternate;
}

.scroll-accent-bars .bar:nth-child(1) {
    height: 14px;
    animation-delay: 0s;
}

.scroll-accent-bars .bar:nth-child(2) {
    height: 24px;
    animation-delay: 0.3s;
}

.scroll-accent-bars .bar:nth-child(3) {
    height: 14px;
    animation-delay: 0.6s;
}

@keyframes barWave {
    0% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1.35);
        opacity: 1;
    }

    100% {
        transform: scaleY(0.7);
        opacity: 0.8;
    }
}

/* ==========================================================================
   Vision & Mission Cards Section with Grid & Marquee
   ========================================================================== */
.vision-mission-section {
    background-color: #EBE8E1;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Architectural Background Grid Lines Overlay */
.grid-lines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Horizontal Lines */
.grid-hline {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #8E8E8E;
}

.hline-top {
    top: 0px;
}

.hline-card-top {
    top: 110px;
}

.hline-card-bottom {
    bottom: 110px;
}

.hline-bottom {
    bottom: 0px;
}

/* Vertical Lines Container */
.grid-vlines-container {
    max-width: 1140px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding: 0 40px;
}

.grid-vline {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #8E8E8E;
}

/* Container has 1140px width, padding 0 40px -> inner 1060px */
/* Two cards of equal width with 40px gap -> each card is 510px */
.vline-card1-left {
    left: 40px;
}

.vline-card1-right {
    left: calc(50% - 69px);
}

.vline-card2-left {
    left: calc(50% + 69px);
}

.vline-card2-right {
    right: 40px;
}

.vision-mission-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 138px;
}

.vision-mission-card {
    flex: 1;
    width: calc((100% - 138px) / 2);
    max-width: 510px;
    background-color: #151515;
    border-radius: 5px;
    padding: 50px 40px 15px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.vm-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vm-card-title {
    font-size: 26px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.vm-icon-box {
    width: 46px;
    height: 46px;
    background-color: #E7E5DC;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.vm-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.vm-card-divider {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin: 25px 0 25px 0;
}

.vm-card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #A7A7A7;
    font-weight: 400;
    flex-grow: 1;
    margin-bottom: 100px;
}

.card-corner-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 51px;
    height: 51px;
    overflow: hidden;
}

/* Horizontal Marquee Ticker Bar */
.marquee-ticker-bar {
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 80px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.marquee-item {
    font-size: 22px;
    font-weight: 400;
    color: #353535;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.marquee-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: var(--primary-red);
    border-radius: 1px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Why Customers Choose Kuttikkatt Motors Section
   ========================================================================== */
.why-choose-section {
    background-color: #151515;
    padding: 75px 0 100px;
    color: #FFFFFF;
    position: relative;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-icon rect {
    transform-origin: bottom;
    transform-box: fill-box;
    animation: iconBarWave 1.4s ease-in-out infinite;
}

.why-choose-icon rect:nth-child(1) {
    animation-delay: 0s;
}

.why-choose-icon rect:nth-child(2) {
    animation-delay: 0.25s;
}

.why-choose-icon rect:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes iconBarWave {

    0%,
    100% {
        transform: scaleY(0.45);
    }

    50% {
        transform: scaleY(1);
    }
}

.why-choose-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}

.why-choose-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #B2B2B2;
    line-height: 1.6;
    max-width: 660px;
    margin: 0 auto;
}

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

.why-choose-card {
    background-color: #262626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 46px 33px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

}

.why-choose-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.why-choose-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.why-choose-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.why-choose-card-num {
    font-size: 35px;
    font-weight: 500;
    color: #848484;
    line-height: 1;
    flex-shrink: 0;
}

.why-choose-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #C7C7C7;
    line-height: 1.65;
    margin: 0;
    max-width: 300px;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 90px);
    background: url('../images/contact/banner.webp') no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 90px 0 0 0;
    overflow: hidden;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 40px;
}

.contact-hero-left {
    color: #FFFFFF;
}

.contact-hero-left .section-label {
    margin-bottom: 24px;
}

.contact-hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    padding: 50px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #353535;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 8px 0 10px 0;
    font-size: 13px;
    font-family: inherit;
    color: #353535;
    background: transparent;
    outline: none;
    transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A0A0A0;
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--primary-red, #EF383A);
}

.contact-form textarea {
    resize: none;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--primary-red);
    color: #FFFFFF;
    border: none;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contact-submit:hover {
    background-color: #C00F1C;
    transform: translateY(-1px);
}

/* Contact Info Bottom Strip */
.contact-info-strip {
    width: 100%;
    border-top: 2px dashed rgba(255, 255, 255, 0.22);
    position: relative;
    z-index: 2;
}

.contact-info-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 30px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-info-col {
    padding: 0;
    border-right: 2px dashed rgba(255, 255, 255, 0.22);
    display: flex;
    flex-direction: column;
}

.contact-info-col:last-child {
    border-right: none;
}

/* Col 1: Content on far left */
.contact-info-col:nth-child(1) {
    align-items: flex-start;
}

/* Col 2 & Col 3: Content centered in space, left-aligned text */
.contact-info-col:nth-child(2),
.contact-info-col:nth-child(3) {
    align-items: center;
}

/* Col 4: Content on far right end, left-aligned text */
.contact-info-col:nth-child(4) {
    align-items: flex-end;
    margin-right: 30px;
}

.contact-info-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-label {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-info-text {
    font-size: 16px;
    color: #BEBEBE;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.contact-info-text a {
    color: #C5C7CE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   Location Section Styles
   ========================================================================== */
.location-section {
    position: relative;
    background: url('../images/contact/background.webp') no-repeat center center / cover;
    padding: 100px 0;
    color: #FFFFFF;
    overflow: hidden;
}

.location-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.location-header {
    margin-bottom: 57px;
}

.location-badge {
    display: inline-block;
    background-color: #EFEFEF;
    color: var(--primary-red, #EF383A);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.location-title {
    font-size: 42px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.location-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #BEBEBE;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-map-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    height: 520px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

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

.map-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.location-overlay-card {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 340px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    z-index: 10;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-overlay-card:hover {
    transform: translate(-50%, -53%);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.location-pin-box {
    width: 36px;
    height: 36px;
    background-color: var(--primary-red, #EF383A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.location-card-address {
    font-size: 12.5px;
    font-weight: 400;
    color: #666666;
    line-height: 1.45;
    margin: 0;
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section Styles
   ========================================================================== */
.faq-section {
    background-color: #FFFFFF;

    padding: 50px 0 110px 0;
    color: #1A1A1A;
}

.faq-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 55px 32px 0px;
    border-top: 2px dashed rgba(0, 0, 0, 0.12);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 660px;
    gap: 80px;
    align-items: flex-start;
}

.faq-header-col .section-label {
    margin-bottom: 30px;
}

.faq-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    line-height: 1.18;
    letter-spacing: -0.015em;
}

/* FAQ Accordion Items */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #DBDBDB;
    padding: 24px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-item-question {
    font-size: 20px;
    font-weight: 500;
    color: #353535;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.faq-item-header:hover .faq-item-question {
    color: var(--primary-red, #EF383A);
}

.faq-toggle-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-red, #EF383A);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item-inner {
    overflow: hidden;
}

.faq-item.active .faq-item-body {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 25px;
}

.faq-item-answer {
    font-size: 14px;
    color: #454545;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   Career Page Styles
   ========================================================================== */
.career-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding: 35px 0 35px 0;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.career-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.career-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 250px;
    align-items: center;
}

/* Left Column: Form */
.career-form-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
}

.career-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.career-red-square {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red);
    border-radius: 1px;
    display: inline-block;
}

.career-label-text {
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    letter-spacing: -0.01em;
}

.career-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

/* Form Layout */
.career-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
}

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

.career-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.career-form label {
    font-size: 16px;
    font-weight: 500;
    color: #323131;
    letter-spacing: -0.01em;
}

.career-form input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #DDDDDD;
    padding: 6px 0 10px 0;
    font-size: 13px;
    font-family: inherit;
    color: #1A1A1A;
    background: transparent;
    outline: none;
    transition: border-color 0.25s ease;
}

.career-form input::placeholder {
    color: #8D8D8D;
    font-weight: 400;
}

.career-form input:focus {
    border-bottom-color: var(--primary-red, #BA0C15);
}

/* Custom Select Dropdown */
.custom-select-group .select-input-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 6px 24px 10px 0;
    font-size: 13.5px;
    font-family: inherit;
    color: #666666;
    background: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

.custom-select-group select:focus {
    border-bottom-color: var(--primary-red, #BA0C15);
    color: #1A1A1A;
}

.custom-select-group .select-chevron {
    position: absolute;
    right: 4px;
    bottom: 14px;
    pointer-events: none;
    transition: transform 0.25s ease;
}

/* Drag & Drop File Upload Zone */
.upload-label {
    font-size: 13.5px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 10px;
    display: block;
}

.file-drop-zone {
    width: 100%;
    border: 1px dashed #D4D4D4;
    border-radius: 4px;
    padding: 32px 20px;
    text-align: center;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    position: relative;
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: var(--primary-red, #BA0C15);
    background-color: #FAFAFA;
}

.file-input-hidden {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 5;
}

.file-drop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.upload-icon {
    width: 18px;
    height: 20px;
    object-fit: contain;
}

.upload-text {
    font-size: 14px;
    font-weight: 400;
    color: #424752;
    margin: 0;
    line-height: 1.4;
}

/* Submit Button */
.btn-career-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--primary-red, #BA0C15);
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-career-submit:hover {
    background-color: var(--hover-red, #A80F16);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(186, 12, 21, 0.3);
}

.btn-career-submit svg {
    transition: transform 0.25s ease;
}

.btn-career-submit:hover svg {
    transform: translateX(4px);
}

/* Right Column: Banner Card */
.career-banner-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.career-banner-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 640px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

.career-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 48px 40px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 32%) 40%, rgb(0 0 0 / 23%) 100%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.career-banner-heading {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.18;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 35px;
}

.career-banner-subtext {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    max-width: 390px;
}

/* =========================================================================
   Gallery Page Styles (Matching exact design)
   ========================================================================= */
.gallery-page-hero {
    padding: 130px 0 65px 0;
    background-color: #FFFFFF;
}

.gallery-page-container {
    max-width: var(--container-max-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
}

.gallery-page-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.gallery-red-square {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red, #BA0C15);
    border-radius: 1px;
    display: inline-block;
}

.gallery-label-text {
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    letter-spacing: -0.01em;
}

.gallery-page-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 35px;
}

.gallery-page-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.gallery-page-subtitle-wrapper {
    max-width: 400px;
    text-align: left;
}

.gallery-page-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #353535;
    line-height: 1.5;
    margin: 0;
}

.gallery-page-dashed-divider {
    width: 100%;
    border-top: 2px dashed rgba(0, 0, 0, 0.12);
    margin-bottom: 45px;
}

/* Gallery Grid & Filter Bar */
.gallery-grid-wrapper {
    width: 100%;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-red, #BA0C15);
    color: #FFFFFF;
    border-color: var(--primary-red, #BA0C15);
    box-shadow: 0 4px 12px rgba(186, 12, 21, 0.2);
}

.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-card {
    border-radius: 5px;
    overflow: hidden;
    background-color: #F8F8F8;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gallery-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.gallery-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-card:hover .gallery-card-img {
    transform: scale(1.06);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background-color: var(--primary-red, #BA0C15);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.gallery-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.gallery-card-zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-card-zoom-btn:hover {
    background: var(--primary-red, #BA0C15);
    transform: scale(1.08);
}

.gallery-card-zoom-btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-caption {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}

.gallery-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.gallery-lightbox-close:hover {
    color: var(--primary-red, #BA0C15);
    transform: scale(1.15);
}

.gallery-lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(4px);
}

.gallery-lightbox-btn svg {
    width: 24px;
    height: 24px;
}

.gallery-lightbox-btn:hover {
    background: var(--primary-red, #BA0C15);
    border-color: var(--primary-red, #BA0C15);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
    left: -70px;
}

.gallery-lightbox-next {
    right: -70px;
}

@media screen and (max-width: 768px) {
    .gallery-lightbox-content {
        padding-bottom: 54px;
    }

    .gallery-lightbox-btn {
        top: auto;
        bottom: 0;
        transform: none;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .gallery-lightbox-btn svg {
        width: 18px;
        height: 18px;
    }

    .gallery-lightbox-btn:hover {
        transform: scale(1.1);
        background: var(--primary-red, #BA0C15);
        border-color: var(--primary-red, #BA0C15);
    }

    .gallery-lightbox-prev {
        left: calc(50% - 48px);
    }

    .gallery-lightbox-next {
        right: calc(50% - 48px);
    }
}

/* Hidden Items & Load More Button */
.gallery-item-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item-hidden.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.gallery-load-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: #FFFFFF;
    color: var(--primary-red, #BA0C15);
    border: 1px solid var(--primary-red, #BA0C15);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-load-more:hover {
    background-color: var(--primary-red, #BA0C15);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(186, 12, 21, 0.25);
    transform: translateY(-1px);
}

/* ==========================================================================
   Products Page Styles
   ========================================================================== */
.products-hero-section {
    padding: 130px 0 40px;
    background-color: #FAFAFA;
}

.products-hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.products-hero-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.products-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products-hero-left .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
}

.products-hero-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.products-hero-right {
    max-width: 440px;
}

.products-hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #353535;
}

.products-dashed-divider {
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #CCCCCC;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Products 2x2 Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #EEEEEE;
    border-radius: 5px;
    padding: 10px 10px 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-card-img-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #E2E2E2;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.03);
}

.product-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--primary-red);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card-btn:hover {
    background-color: var(--hover-red);
    box-shadow: 0 4px 15px rgba(186, 12, 21, 0.25);
}

/* ==========================================================================
   Heavy Duty Trucks Page Styles
   ========================================================================== */
.heavy-duty-banner-section {
    width: 100%;
    overflow: hidden;
}

.heavy-duty-banner-wrapper {
    width: 100%;
}

.heavy-duty-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.heavy-duty-content-section {
    padding: 40px 0 40px;
    background-color: #FAFAFA;
}

.heavy-duty-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb */
.heavy-duty-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    margin-bottom: 80px;
}

.heavy-duty-breadcrumb .square-dot {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red);
    display: inline-block;
}

.breadcrumb-link {
    color: #969696;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    color: #888888;
}

.breadcrumb-current {
    color: var(--primary-red);
    font-weight: 500;
}

/* Title & Description */
.heavy-duty-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.heavy-duty-description {
    font-size: 16px;
    line-height: 1.6;
    color: #454545;
    max-width: 870px;
    margin-bottom: 60px;
}

/* 3-Column Truck Grid Layout */
.heavy-duty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.heavy-duty-card {
    background-color: #EEEEEE;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.heavy-duty-card:hover {
    transform: translateY(-4px);
}

.heavy-duty-card-img-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 20px;
    flex: 1;
}

.heavy-duty-card-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.heavy-duty-card:hover .heavy-duty-card-img {
    transform: scale(1.03);
}

.heavy-duty-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 24px;
    background-color: var(--primary-red);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.heavy-duty-card-btn:hover {
    background-color: var(--hover-red);
    box-shadow: 0 4px 14px rgba(186, 12, 21, 0.25);
}

/* ==========================================================================
   Haulage Trucks Page Styles
   ========================================================================== */
.haulage-banner-section {
    width: 100%;
    overflow: hidden;
}

.haulage-banner-wrapper {
    width: 100%;
}

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

.haulage-content-section {
    padding: 40px 0 80px;
    background-color: #FAFAFA;
}

.haulage-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.haulage-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.haulage-top-bar .heavy-duty-breadcrumb {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Grouped Filter Bar Box */
.haulage-filters {
    display: inline-flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #00000024;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 3px 0px;
}

.haulage-filters .filter-select-wrapper {
    position: relative;
    border-right: 1px solid #E2E2E2;
}

.haulage-filters .filter-select-wrapper:last-child {
    border-right: none;
}

.haulage-filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 14px 44px 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #353535;
    cursor: pointer;
    background-image: url("../images/haulage-trucks/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    transition: color var(--transition-fast);
}

.haulage-filter-select:hover,
.haulage-filter-select:focus {

    outline: none;
}

.haulage-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.haulage-description {
    font-size: 16px;
    line-height: 1.6;
    color: #454545;
    max-width: 900px;
    margin-bottom: 80px;
}

/* 3-Column 12 Truck Card Grid */
.haulage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.haulage-card {
    background-color: #EEEEEE;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    height: 100%;
    transition: transform var(--transition-normal);
}

.haulage-card:hover {
    transform: translateY(-4px);
}

.haulage-card-img-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 20px;
    min-height: 180px;
}

.haulage-card-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.haulage-card:hover .haulage-card-img {
    transform: scale(1.03);
}

.haulage-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.haulage-card-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.haulage-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #454545;
    margin-bottom: 20px;
    flex: 1;
}

.haulage-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--primary-red);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color var(--transition-fast);
    margin-top: auto;
}

.haulage-card-btn:hover {
    background-color: var(--hover-red);
}

/* ==========================================================================
   Service Booking Modal Styles
   ========================================================================== */
.service-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.service-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-card {
    position: relative;
    background-color: #FFFFFF;
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 40px;
    padding: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}

.service-modal-close {
    position: absolute;
    top: 5px;
    right: 7px;
    background: #ffffff;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #333333;
    cursor: pointer;
    z-index: 100;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease;
}



/* Left Form Column */
.service-modal-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-modal-title {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.service-modal-subtitle {
    font-size: 12px;
    color: #3C3C3C;
    line-height: 1.5;
    margin-bottom: 24px;
}

.service-modal-divider {
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #CCCCCC;
    margin-bottom: 50px;
}

/* Form Fields Grid */
.service-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 24px;
    margin-bottom: 32px;
}

.service-field-group {
    display: flex;
    flex-direction: column;
}

.service-field-full {
    grid-column: span 2;
}

.service-field-label {
    font-size: 16px;
    font-weight: 500;
    color: #323131;
    margin-bottom: 6px;
}

.service-field-input {
    border: none;
    border-bottom: 1px solid #D8D8D8;
    padding: 6px 0 10px 0;
    font-size: 14px;
    color: #222222;
    background: transparent;
    width: 100%;
    border-radius: 0;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.service-field-input::placeholder {
    color: #A0A0A0;
    font-size: 13px;
}

.service-field-input:focus {
    outline: none;
    border-bottom-color: var(--primary-red);
}

.btn-service-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background-color: var(--primary-red);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-service-submit:hover {
    background-color: var(--hover-red);
    transform: translateY(-1px);
}

/* Right Image Column */
.service-modal-right {
    flex: 0 0 44%;
    display: flex;
}

.service-modal-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #F0F0F0;
}

.service-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Success Message */
.service-success-message {
    text-align: center;
    padding: 30px 0;
}

.service-success-message .success-icon {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.service-success-message .success-title {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.service-success-message .success-desc {
    font-size: 14px;
    color: #666666;
}

/* ==========================================================================
   Terms and Conditions Page Styles
   ========================================================================== */
.terms-section {
    padding: 130px 0 80px 0;
    background-color: #FFFFFF;
    width: 100%;
}

.terms-container {
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    padding: 0 40px;
}

.terms-header {
    margin-bottom: 60px;
}

.terms-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.terms-red-square {
    width: 11px;
    height: 11px;
    background-color: var(--primary-red, #BA0C15);
    border-radius: 1px;
    display: inline-block;
}

.terms-last-updated {
    font-size: 18px;
    font-weight: 500;
    color: #353535;
}

.terms-title {
    font-size: 42px;
    font-weight: 500;
    color: #353535;
    margin: 0 0 60px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.terms-divider {
    border-bottom: 2px dashed #0000004F;
    width: 100%;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.terms-block {
    max-width: 100%;
}

.terms-section-title {
    font-size: 20px;
    font-weight: 500;
    color: #353535;
    margin-bottom: 30px;
}

.terms-text {
    font-size: 14px;
    line-height: 1.7;
    color: #353535;
    margin-bottom: 14px;
}

.terms-text a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-text a:hover {
    color: var(--primary-red, #BA0C15);
}

.terms-bullet-list {
    margin: 14px 0 18px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-bullet-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #353535;
}

.terms-bullet-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-red, #BA0C15);
    border-radius: 50%;
}

.terms-sub-bullet-list {
    margin: 10px 0 6px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms-sub-item {
    font-size: 13.5px;
    line-height: 1.6;
    color: #353535;
    padding-left: 0 !important;
}

.terms-sub-item::before {
    display: none !important;
}

.terms-address {
    font-style: normal;
    font-size: 13.5px;
    line-height: 1.8;
    color: #444444;
    margin-top: 14px;
}

.terms-address strong {
    color: #1A1A1A;
    font-weight: 600;
}

.terms-address a {
    color: #444444;
    text-decoration: none;
}

.terms-address a:hover {
    color: var(--primary-red, #BA0C15);
}

/* ==========================================================================
   Department Contact Section Styles
   ========================================================================== */
.department-contact-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    width: 100%;
}

.department-contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.department-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dept-contact-card {
    background-color: #EFEFEF;
    border-radius: 8px;
    padding: 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 160px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dept-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.dept-icon-wrapper {
    width: 41px;
    height: 39px;
    border: 1px solid #BA0C15;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.dept-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.dept-label {
    font-size: 18px;
    font-weight: 500;
    color: #373737;
    margin: 0;
    line-height: 1.35;
}

.dept-phone {
    font-size: 16px;
    font-weight: 400;
    color: #272727;
    margin: 0;
    line-height: 1.45;
}

.dept-phone a {
    color: #272727;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dept-phone a:hover {
    color: var(--primary-red, #BA0C15);
}

/* ==========================================================================
   Insurance Renewal Modal Overlay
   ========================================================================== */
.insurance-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.insurance-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.insurance-modal-card {
    position: relative;
    background-color: #FFFFFF;
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 40px;
    padding: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
}

.insurance-modal-close {
    position: absolute;
    top: 5px;
    right: 7px;
    background: #ffffff;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #333333;
    cursor: pointer;
    z-index: 100;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease;
}



.insurance-modal-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insurance-modal-title {
    font-size: 38px;
    font-weight: 500;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.insurance-modal-subtitle {
    font-size: 13px;
    color: #3C3C3C;
    line-height: 1.5;
    margin-bottom: 20px;
}

.insurance-modal-divider {
    width: 100%;
    height: 1px;
    border-bottom: 2px dashed #CCCCCC;
    margin-bottom: 32px;
}

.insurance-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 24px;
    margin-bottom: 32px;
}

.insurance-field-group {
    display: flex;
    flex-direction: column;
}

.insurance-field-label {
    font-size: 15px;
    font-weight: 500;
    color: #323131;
    margin-bottom: 6px;
}

.insurance-field-input {
    border: none;
    border-bottom: 1px solid #D8D8D8;
    padding: 6px 0 10px 0;
    font-size: 14px;
    color: #222222;
    background: transparent;
    width: 100%;
    border-radius: 0;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.insurance-field-input::placeholder {
    color: #A0A0A0;
    font-size: 13px;
}

.insurance-field-input[type="date"] {
    cursor: pointer;
}

.insurance-field-input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.insurance-field-input:focus {
    outline: none;
    border-bottom-color: var(--primary-red, #BA0C15);
}

.btn-insurance-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background-color: var(--primary-red, #BA0C15);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-insurance-submit:hover {
    background-color: #8E0910;
    transform: translateY(-1px);
}

.insurance-success-message {
    text-align: center;
    padding: 30px 20px;
}

.insurance-modal-right {
    width: 320px;
    flex-shrink: 0;
}

.insurance-modal-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 6px;
    overflow: hidden;
}

.insurance-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments for Insurance Modal */
@media (max-width: 900px) {
    .insurance-modal-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }

    .insurance-modal-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .insurance-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .insurance-modal-title {
        font-size: 28px;
    }
}
.haulage-filter-select optgroup {
    background-color: #000;
    color: #fff;
    font-weight: 600;
}
.haulage-filter-select optgroup option {
    background-color: #f5f5f5;
    color: #333;
}

