/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563EB;
    --secondary-color: #1E40AF;
    --accent-color: #3B82F6;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #F3F4F6;
    --bg-gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--bg-gradient);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
    width: 10px;
    height: 10px;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
    width: 9px;
    height: 9px;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 20s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 4.5s;
    animation-duration: 23s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

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

* {
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: var(--bg-gradient);
    padding: 10px 0;
    font-size: 13px;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    margin: 0;
    border: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.top-bar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.top-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.top-phone i.arrow-before {
    font-size: 14px;
    margin-right: 8px;
    color: #FF4444;
    animation: slideRight 1.5s infinite;
}

.top-phone i.fa-phone-alt {
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.top-badge {
    font-size: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

.info-item i {
    font-size: 16px;
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.phone {
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.phone:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    margin: 0;
    padding: 0;
    border-top: 0;
    display: block;
    position: relative;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px 15px 20px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.logo-icon .fa-truck {
    font-size: 24px;
    color: var(--white);
}

.logo-icon .fa-box-open {
    position: absolute;
    font-size: 12px;
    top: 8px;
    right: 8px;
    color: var(--white);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

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

.vehicle-specs {
    display: block;
    font-size: 11px;
    color: var(--primary-color);
    margin-top: 2px;
    font-weight: 700;
}

.mobile-header-buttons {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-phone-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--bg-gradient);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
}

.mobile-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mobile-phone-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-phone-btn .mobile-arrow {
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 16px;
    color: #FF4444;
    background: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: slideRight 1.5s infinite;
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.2;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-button {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background-color: var(--white);
}

/* Services Section */
.services {
    padding: 40px 0 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.accent-bar {
    width: 6px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
}

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

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    border: 4px solid var(--white);
}

.service-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-content {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-title {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.details-btn {
    background: var(--bg-gradient);
    color: var(--white);
    border: none;
    padding: 13px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    margin-top: auto;
}

.details-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Hamali Details Section */
.hamali-details {
    padding: 80px 0;
    background-color: var(--white);
}

.process-flow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    z-index: 1;
    position: relative;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    border: 3px solid var(--white);
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Cargo Details Section */
.cargo-details {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-icon i {
    font-size: 36px;
    color: var(--white);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 42px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-description {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    text-align: left;
    min-height: 45px;
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

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

.about-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Previous Works Gallery */
.previous-works {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.previous-works h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.work-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    max-width: 100%;
}

.work-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .works-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .previous-works h3 {
        font-size: 24px;
        padding: 0 10px;
    }

    .previous-works {
        padding: 0 5px;
    }
}

@media (max-width: 576px) {
    .works-gallery {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    padding: 50px 0 20px;
    box-shadow: 0 -5px 20px var(--shadow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-content.footer-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-section h4 {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: var(--accent-color);
}

.footer-phone {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

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

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

    .hero-subtitle {
        font-size: 20px;
    }

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

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-header-buttons {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .logo-text {
        font-size: 16px;
    }

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

    .logo-icon .fa-truck {
        font-size: 20px;
    }

    .logo-icon .fa-box-open {
        font-size: 10px;
        top: 6px;
        right: 6px;
    }

    .hero {
        padding: 25px 0 15px 0;
    }

    .services {
        padding: 15px 0 40px 0;
    }

    .hero-title {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .cta-button {
        margin-top: 10px;
    }
}

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

    .main-nav {
        top: 0;
        position: fixed;
    }

    .hero {
        margin-top: 50px;
        padding: 20px 0 15px 0;
    }

    .services {
        padding: 20px 0 50px 0;
    }

    .nav-content {
        padding: 5px 12px;
    }

    .logo-text {
        font-size: 13px;
    }

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

    .logo-icon .fa-truck {
        font-size: 17px;
    }

    .logo-icon .fa-box-open {
        font-size: 9px;
    }
}

    .section-header h2 {
        font-size: 32px;
    }

    .process-flow::before {
        left: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .price {
        font-size: 36px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-cards {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        max-width: 100%;
    }

    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .works-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .previous-works h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 45px;
        padding: 15px 0 10px 0;
    }

    .hero-title {
        font-size: 19px;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 12px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

