/* ========== PRIME MOVE SERVICES - PROFESSIONAL COLOR SCHEME ==========
   Based on logo colors:
   - Primary Blue: #003A7A (deep blue - trust, professionalism)
   - Secondary Blue: #0070D8 (bright blue - energy, reliability)
   - Accent Gray: #2C3E50 (dark gray - stability)
   - White/Light Gray: Clean, modern backgrounds

   Light Mode: Professional white backgrounds with blue accents

   Color variables are defined in colors.css with semantic tokens for
   easy customization and consistent theming across components.
*/

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light-gray);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    letter-spacing: 0.3px;
}

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

/* ========== HEADER & NAVIGATION ========== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 58, 122, 0.08);
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 58, 122, 0.08);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    min-width: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}

.logo-prime {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1F3A5C;
    letter-spacing: 1px;
}

.logo-move {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-blue);
    letter-spacing: 1px;
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
nav a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

nav a:hover {
    color: var(--secondary-blue);
}

nav a:hover::after {
    width: 100%;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 0 20px;
    gap: 0;
    z-index: 998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-sizing: border-box;
}




.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--secondary-blue);
}

.mobile-nav .contact-btn {
    margin-top: 15px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    border: none;
}

.contact-btn {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: var(--btn-primary-text);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 70, 216, 0.25);
}

.contact-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 12px 32px rgba(0, 58, 122, 0.35);
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 122, 0.7) 0%, rgba(0, 112, 216, 0.7) 100%);
    z-index: 2;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide.active {
    opacity: 1;
}

@keyframes carousel-fade {
    0% { opacity: 1; }
    16% { opacity: 1; }
    17% { opacity: 0; }
    33% { opacity: 0; }
    34% { opacity: 1; }
    50% { opacity: 1; }
    51% { opacity: 0; }
    67% { opacity: 0; }
    68% { opacity: 1; }
    84% { opacity: 1; }
    85% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 3;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--hero-text);
    letter-spacing: -0.5px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    display: inline-block;
}

/* Fallback if animation doesn't load */
.hero h1 span[style*="opacity: 0"] {
    animation: fallback-fade-in 0.8s forwards 0.5s;
}

@keyframes fallback-fade-in {
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.hero-line {
    width: 100%;
    max-width: 600px;
    height: 4px;
    margin: 20px auto;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    stroke: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    transition: filter 0.3s ease;
}

.hero p {
    font-size: 18px;
    color: var(--hero-subtext);
    margin-bottom: 30px;
}

.hero p span {
    display: inline-block;
}

/* Fallback if animation doesn't load */
.hero p span[style*="opacity: 0"] {
    animation: fallback-fade-in 0.6s forwards 1s;
}

/* Kinetic Background Animation */
.kinetic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.kinetic-line {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    color: rgba(212, 175, 55, 0.05);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-50%);
}

.kinetic-line:nth-child(1) {
    animation: slideKinetic 20s linear infinite;
    animation-delay: 0s;
}

.kinetic-line:nth-child(2) {
    animation: slideKineticReverse 20s linear infinite;
    animation-delay: 2s;
}

.kinetic-line:nth-child(3) {
    animation: slideKinetic 20s linear infinite;
    animation-delay: 4s;
}

.kinetic-line:nth-child(4) {
    animation: slideKineticReverse 20s linear infinite;
    animation-delay: 6s;
}

@keyframes slideKinetic {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.05;
    }
    90% {
        opacity: 0;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideKineticReverse {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    10% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.05;
    }
    90% {
        opacity: 0;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Enhanced Hero H1 with Character Expansion */
.hero h1 span {
    display: inline-block;
    position: relative;
    will-change: transform, color, text-shadow, letter-spacing;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: var(--btn-primary-text);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0, 70, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 15px 40px rgba(0, 58, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 100px 20px;
    background: #FFFFFF;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.about-text p {
    margin-bottom: 20px;
    color: black;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 58, 122, 0.08);
    box-shadow: 0 8px 24px rgba(0, 58, 122, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-gray) 0%, rgba(0, 58, 122, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 112, 216, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0, 70, 216, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%);
    border: 1.5px solid rgba(0, 58, 122, 0.12);
    padding: 0;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 58, 122, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 216, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-16px);
    box-shadow: 0 16px 48px rgba(0, 70, 216, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-card-content {
    transform: translateY(-3px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
    display: block;
    opacity: 0.95;
}

.service-card:hover .service-image img {
    opacity: 1;
}

.service-card-content {
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary-blue);
}

.service-card p {
    color: rgba(0, 58, 122, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

/* ========== STATS SECTION ========== */
.stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-top: 1px solid rgba(0, 58, 122, 0.2);
    border-bottom: 1px solid rgba(0, 58, 122, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* ========== MISSION & VISION SECTION ========== */
.mission-vision {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(0, 112, 216, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 50%, rgba(0, 112, 216, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 100% 50%, rgba(0, 70, 216, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-vision .container {
    position: relative;
    z-index: 1;
}

.mission-vision .section-title {
    opacity: 0;
    transform: translateY(30px);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.mv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
    border: 2px solid rgba(0, 112, 216, 0.18);
    padding: 50px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 58, 122, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 216, 0.08), transparent);
    transition: left 0.6s ease;
}

.mv-card:hover::before {
    left: 100%;
}

.mv-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 16px 48px rgba(0, 70, 216, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(225, 240, 255, 0.95) 100%);
}

.mv-card h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    transition: color 0.3s ease;
}

.mv-card:hover h3 {
    color: var(--secondary-blue);
}

.mv-card p {
    color: rgba(0, 58, 122, 0.9);
    line-height: 1.9;
    font-size: 15px;
}

.core-values {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.8) 0%, rgba(225, 242, 255, 0.6) 100%);
    padding: 60px 50px;
    border-radius: 16px;
    border: 2px solid rgba(0, 112, 216, 0.2);
    box-shadow: 0 8px 24px rgba(0, 58, 122, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 112, 216, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.core-values h3 {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(20px);
}

.values-grid-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-auto-columns: minmax(180px, 1fr);
    grid-auto-flow: column;
    gap: 20px;
    width: fit-content;
    min-width: 100%;
}

.value-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 2px solid rgba(0, 112, 216, 0.2);
    padding: 28px 24px;
    text-align: center;
    border-radius: 14px;
    color: var(--primary-blue);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 58, 122, 0.06);
}

.value-item:hover {
    border-color: var(--secondary-blue);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 70, 216, 0.25);
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--accent-gray) 0%, rgba(0, 58, 122, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 112, 216, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 58, 122, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-item {
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.contact-item:hover {
    background: rgba(0, 112, 216, 0.08);
    border-color: rgba(0, 112, 216, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 112, 216, 0.12);
}

.contact-item-icon {
    font-size: 28px;
    color: var(--secondary-blue);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 112, 216, 0.12), rgba(0, 70, 216, 0.08));
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    filter: drop-shadow(0 4px 12px rgba(0, 112, 216, 0.3));
    transform: scale(1.1);
}

.contact-item-content h4 {
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
    letter-spacing: -0.2px;
}

.contact-item-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    border-color: var(--secondary-blue);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 112, 216, 0.35);
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(0, 58, 122, 0.12);
    border-radius: 10px;
    color: var(--input-text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 58, 122, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(0, 112, 216, 0.15), 0 4px 16px rgba(0, 112, 216, 0.12);
    transform: translateY(-2px);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(0, 70, 216, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 16px 40px rgba(0, 58, 122, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.map-form-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 112, 216, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(30px);
}

.contact-map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.activate-form-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 70, 216, 0.32);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activate-form-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 16px 48px rgba(0, 58, 122, 0.5);
}

.contact-form {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    height: 100%;
    padding: 45px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) translateY(-10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
    box-sizing: border-box;
}

.contact-form.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(0);
}

.close-form-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

.close-form-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-color: var(--secondary-blue);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 70, 216, 0.25);
}

/* ========== FLEET SECTION ========== */
.fleet {
    padding: 80px 20px;
    background: var(--accent-gray);
    border-top: 1px solid var(--accent-gray);
    border-bottom: 1px solid var(--accent-gray);
}

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

.section-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin: 15px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-line {
    width: 120px;
    height: 2px;
    margin: 0 auto;
    display: block;
}

.fleet-grid {
    display: grid;
    grid-auto-columns: minmax(300px, 1fr);
    grid-auto-flow: column;
    gap: 30px;
    margin-top: 40px;
    width: fit-content;
    min-width: 100%;
}

.fleet-grid-wrapper {
    overflow: hidden;
    width: 100%;
}

.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 58, 122, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fleet-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 70, 216, 0.18);
}

.fleet-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: block;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.08);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.5;
}

.fleet-card:hover .fleet-overlay {
    opacity: 0.7;
}

.fleet-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background:var(--accent-gray);
    transition: background 0.3s ease;
}

.fleet-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.fleet-description-wrapper {
    margin-bottom: 18px;
}

.fleet-description {
    font-size: 14px;
    color: white;
    line-height: 1.6;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: line-clamp 0.3s ease;
}

.fleet-description.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.read-more-btn {
    color: var(--secondary-blue);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    margin-top: -5px;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.read-more-btn:hover {
    color: var(--primary-blue);
}

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.spec-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid var(--secondary-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.spec-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

/* ========== FOOTER ========== */
footer {
    background: var(--accent-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 50px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    border-color: white;
    background: white;
    color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    padding: 0;
}

.whatsapp-btn i {
    font-size: 36px;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    line-height: 1;
}

.whatsapp-btn:hover {
    transform: translateY(-8px) scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    background-color: #1fa853;
}

.whatsapp-btn:hover i {
    transform: rotate(15deg);
}

/* ========== FLEET MODELS SECTION ========== */
.fleet-models {
    background: linear-gradient(135deg, var(--accent-gray) 0%, #1a2738 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.fleet-models::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 112, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fleet-models::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fleet-models .container {
    position: relative;
    z-index: 2;
}

.fleet-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.fleet-model-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fleet-model-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 70, 216, 0.2);
}

.fleet-model-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.fleet-model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: block;
}

.fleet-model-card:hover .fleet-model-image {
    transform: scale(1.1);
}

.fleet-model-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 70, 216, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-model-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.fleet-model-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gray);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.truck-type {
    font-size: 11px;
    color: var(--secondary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 3px 8px;
    background: rgba(0, 70, 216, 0.08);
    border-radius: 15px;
    width: fit-content;
}

.truck-specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.truck-specs-list li {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.truck-specs-list li::before {
    content: '▸';
    color: var(--secondary-blue);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.truck-specs-list li strong {
    color: var(--accent-gray);
    font-weight: 600;
    min-width: 80px;
    font-size: 11px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-img {
        height: 55px;
        max-width: 150px;
    }

    .logo-prime,
    .logo-move {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav {
        gap: 1rem;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 42px;
        max-width: 100%;
        padding: 0 15px;
    }

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

    .kinetic-line {
        font-size: clamp(2.5rem, 10vw, 6rem);
        letter-spacing: 4px;
    }

    .about-grid,
    .contact-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-card {
        padding: 35px;
    }

    .core-values {
        padding: 40px 25px;
    }

    .core-values h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .values-grid {
        grid-auto-columns: minmax(160px, 1fr);
    }

    .value-item {
        padding: 20px 16px;
        font-size: 12px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-item {
        margin-bottom: 20px;
        padding: 16px;
    }

    .map-form-container {
        min-height: 400px;
    }

    .fleet {
        padding: 60px 20px;
    }

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

    .fleet-image-wrapper {
        height: 240px;
    }

    .fleet-models {
        padding: 50px 20px;
    }

    .fleet-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 35px;
    }

    .fleet-model-image-wrapper {
        height: 160px;
    }

    .fleet-model-content {
        padding: 14px;
    }

    .fleet-model-content h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .truck-type {
        font-size: 10px;
        margin-bottom: 8px;
        padding: 3px 6px;
    }

    .truck-specs-list li {
        font-size: 11px;
        margin-bottom: 6px;
        gap: 6px;
    }

    .truck-specs-list li strong {
        min-width: 70px;
        font-size: 10px;
    }

    .about-image {
        height: 300px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .service-card {
        margin-bottom: 0;
    }

    .service-image {
        height: 200px;
    }

    .service-card-content {
        padding: 22px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 30px 20px;
    }

    .map-form-container {
        min-height: 400px;
    }

    .activate-form-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn i {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .fleet-models {
        padding: 45px 15px;
    }

    .fleet-models-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .fleet-model-image-wrapper {
        height: 150px;
    }

    .fleet-model-content {
        padding: 12px;
    }

    .fleet-model-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .truck-type {
        font-size: 10px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .truck-specs-list li {
        font-size: 11px;
        margin-bottom: 5px;
        gap: 5px;
    }

    .truck-specs-list li strong {
        min-width: 60px;
        font-size: 10px;
    }

    .fleet-model-badge {
        font-size: 10px;
        padding: 5px 10px;
        top: 8px;
        right: 8px;
    }
}

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

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .section-subtitle {
        font-size: 14px;
        margin: 12px 0 20px;
    }

    .about,
    .services,
    .mission-vision,
    .contact,
    .fleet,
    .fleet-models {
        padding: 60px 15px;
    }

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

    .fleet-image-wrapper {
        height: 200px;
    }

    .fleet-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .fleet-model-image-wrapper {
        height: 140px;
    }

    .fleet-model-content {
        padding: 12px;
    }

    .fleet-model-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .truck-type {
        font-size: 10px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    .truck-specs-list li {
        font-size: 11px;
        margin-bottom: 5px;
        gap: 5px;
    }

    .truck-specs-list li strong {
        min-width: 65px;
        font-size: 10px;
    }

    .fleet-model-badge {
        font-size: 10px;
        padding: 5px 10px;
        top: 8px;
        right: 8px;
    }

    .fleet-content {
        padding: 20px;
    }

    .fleet-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .fleet-description-wrapper {
        margin-bottom: 8px;
    }

    .fleet-description {
        font-size: 13px;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 4px 8px;
        margin-bottom: 8px;
        display: inline-block;
    }

    .fleet-specs {
        margin-top: 0;
    }

    .spec-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    .about-text h3,
    .mv-card h3,
    .contact-info h3 {
        font-size: 20px;
    }

    .stat-item h4 {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 13px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .close-form-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

