/* =========================
   Z'S MOVING SERVICES
   MAIN STYLESHEET
========================= */


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fff;
}


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


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


ul {
    list-style: none;
}



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


header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}


.navbar {

    max-width: 1200px;
    margin: auto;

    padding: 15px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* LOGO SIZE CONTROL */

.logo img {

    width: 170px;
    height: auto;
    max-height: 70px;
    object-fit: contain;

}



.nav-links {

    display: flex;
    gap: 25px;
    align-items: center;

}


.nav-links a {

    font-weight: 500;
    transition: .3s;

}


.nav-links a:hover {

    color: #0b5ed7;

}



.quote-button {

    background: #f8b400;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;

}



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


.hero {

    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px 20px;

    background:

    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),

    url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;

}



.hero-content {

    max-width: 800px;

}



.hero h1 {

    font-size: 3.5rem;
    margin-bottom: 20px;

}



.hero p {

    font-size: 1.2rem;
    margin-bottom: 35px;

}



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


.gold-btn,
.blue-btn {


    display: inline-block;

    padding: 14px 30px;

    border-radius: 8px;

    font-weight: 600;

    margin-top: 20px;

}



.gold-btn {

    background: #f8b400;
    color: #000;

}



.blue-btn {

    background: #0b5ed7;
    color: white;

}



/* =========================
   SECTIONS
========================= */


section {

    padding: 80px 20px;
    text-align: center;

}


section h2 {

    font-size: 2.3rem;
    margin-bottom: 25px;

}



section p {

    max-width: 800px;
    margin: auto;

}



/* =========================
   CARDS
========================= */


.cards {

    max-width: 1100px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;

}



.card {

    padding: 30px;

    background: #f8f9fa;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

}



.card h3 {

    margin-bottom: 15px;

}



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


footer {

    background: #1f2937;

    color: white;

    text-align: center;

    padding: 40px 20px;

}



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


@media(max-width:900px){


.nav-links {

    display:none;

}


.navbar {

    flex-direction: column;
    gap:20px;

}


.hero h1 {

    font-size:2.3rem;

}


.cards {

    grid-template-columns:1fr;

}


.logo img {

    width:140px;

}


}

/* =========================
   GALLERY
========================= */

.gallery-grid {

    max-width: 1200px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.gallery-grid img {

    width: 100%;

    height: 260px;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,.10);

    transition: .3s ease;

}


.gallery-grid img:hover {

    transform: scale(1.03);

}



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


.quote-form {

    max-width: 700px;

    margin: 40px auto;

    display: flex;

    flex-direction: column;

    gap: 18px;

}



.quote-form input,
.quote-form select,
.quote-form textarea {


    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 1rem;

}



.quote-form textarea {

    resize: vertical;

}



.quote-form button {

    border: none;

    cursor: pointer;

}




/* =========================
   MOBILE GALLERY
========================= */


@media(max-width:900px){


.gallery-grid {

    grid-template-columns: 1fr;

}


}


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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #1f2937;
    border-radius: 5px;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .quote-button {
        display: none;
    }

    .navbar {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        margin-top: 15px;
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,.1);
    }

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

    .nav-links li {
        padding: 12px 0;
        text-align: center;
    }
}
