/* Layout */
.header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Logo */
.logo img {
    height: 55px;
}

/* Desktop nav */
.nav-desktop {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.nav-link:hover {
    color: #ff6600;
}

/* Button */
.btn-primary {
    background: #ff6600;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #e25500;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-mobile .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile.active {
        display: flex;
    }
}
.footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
    font-size: 14px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    line-height: 1.6;
    color: #ddd;
}

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

.footer-col ul li {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #ff6600;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
.hero {
    background: #f5f5f5;
    padding: 80px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 18px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
}
.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.service-card {
    background: #fafafa;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

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

.service-card img {
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}
.why {
    padding: 80px 0;
    background: #f5f5f5;
}

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

.why-item {
    text-align: center;
}

.why-item img {
    height: 55px;
    margin-bottom: 15px;
}
.cta {
    background: #ff6600;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.cta-inner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-inner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background: #fff;
    color: #ff6600;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.2s;
}

.cta-btn:hover {
    background: #ffe2d0;
}
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 600px) {
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* HERO */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 100px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    max-width: 550px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #222;
}

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 20px;
    border-radius: 6px;
}

.hero-right {
    flex-shrink: 0;
}

.hero-van {
    width: 100%;
    max-width: 520px;
    display: block;
}
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-left p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }

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

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