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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Segoe UI", Arial, sans-serif;

    background:
        linear-gradient(
            135deg,
            #1f1c2c,
            #403b5c
        );

    color: #f5f5f5;

    line-height: 1.6;
}


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


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


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

header {

    position: sticky;

    top: 0;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 12px 5%;

    background:
        rgba(0, 0, 0, 0.92);

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.35);

}


.logo-title {

    display: flex;

    align-items: center;

    gap: 14px;

}


.logo-title img {

    width: 105px;

    height: 78px;

    object-fit: contain;

}


.logo-title h1 {

    font-size:
        clamp(1.25rem, 2.5vw, 2rem);

    color: #ffd700;

    letter-spacing: 1.5px;

}


/* =================================
   NAVIGATION
================================= */

nav {

    display: flex;

    align-items: center;

    gap: 18px;

}


nav a {

    font-weight: 700;

    padding: 8px 4px;

    transition: 0.25s;

}


nav a:hover {

    color: #ffd700;

}


#hamburger {

    display: none;

    font-size: 30px;

    color: #ffd700;

    cursor: pointer;

}


/* =================================
   ANNOUNCEMENT
================================= */

.announcement {

    background: #ffd700;

    color: #111;

    padding: 9px 0;

    font-weight: 700;

    border-bottom: 2px solid white;

}


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

.hero {

    min-height: 70vh;

    display: grid;

    place-items: center;

    text-align: center;

    padding: 80px 20px;

}


.hero-content {

    max-width: 900px;

}


.hero h2 {

    font-size:
        clamp(2.1rem, 5vw, 4.2rem);

    color: #ffd700;

    line-height: 1.1;

    margin-bottom: 18px;

}


.hero p {

    font-size:
        clamp(1rem, 2vw, 1.25rem);

    margin-bottom: 28px;

    color: #eee;

}


/* =================================
   BUTTON
================================= */

.btn {

    display: inline-block;

    background: #ffd700;

    color: #111;

    font-weight: 800;

    padding: 12px 24px;

    border-radius: 7px;

    margin: 5px;

    transition: 0.25s;

}


.btn:hover {

    background: #e5bf00;

    transform: translateY(-2px);

}


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

section {

    padding: 70px 5%;

    max-width: 1200px;

    margin: auto;

}


section h2 {

    text-align: center;

    color: #ffd700;

    font-size:
        clamp(1.8rem, 4vw, 2.6rem);

    margin-bottom: 28px;

    text-transform: uppercase;

}


/* =================================
   ABOUT
================================= */

.about-text {

    max-width: 900px;

    margin: auto;

    text-align: center;

    font-size: 1.08rem;

}


.about-text p {

    margin-bottom: 18px;

}


.highlight {

    color: #ffd700;

    font-weight: 800;

}


.quote {

    text-align: center;

    color: #ffd700;

    font-size:
        clamp(1.5rem, 3vw, 2.2rem);

    font-style: italic;

    margin-top: 30px;

    font-weight: 700;

}


/* =================================
   SERVICES
================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px, 1fr)
        );

    gap: 25px;

    align-items: stretch;

}


.service-card {

    background:
        rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    overflow: hidden;

    padding: 30px;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.45);

    transition: 0.3s;

    text-align: center;

}


.service-card:hover {

    transform: translateY(-7px);

    background:
        rgba(255, 255, 255, 0.16);

}


.service-icon {

    font-size: 45px;

    margin-bottom: 15px;

}


.service-card h3 {

    color: #ffd700;

    margin-bottom: 12px;

    font-size: 1.2rem;

}


.service-card p {

    color: #eee;

    margin-bottom: 12px;

}


.service-btn {

    display: inline-block;

    background: #ffd700;

    color: #111;

    font-weight: 800;

    padding: 10px 20px;

    border-radius: 7px;

    margin-top: 10px;

    transition: 0.25s;

}


.service-btn:hover {

    background: #e5bf00;

    transform: translateY(-2px);

}


/* =================================
   PROJECTS
================================= */

.projects {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(270px, 1fr)
        );

    gap: 25px;

}


.card {

    background:
        rgba(255, 255, 255, 0.1);

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.45);

    transition: 0.3s;

}


.card:hover {

    transform: translateY(-7px);

    background:
        rgba(255, 255, 255, 0.16);

}


.card img {

    width: 100%;

    height: 210px;

    object-fit: cover;

    cursor: pointer;

}


.card-body {

    padding: 18px;

}


.card h3 {

    color: #ffd700;

    margin-bottom: 9px;

    font-size: 1.15rem;

}


.card p {

    color: #eee;

}


/* =================================
   WAREHOUSE AVAILABLE FOR RENT
================================= */

.warehouse-rental {

    overflow: hidden;

    padding: 0 !important;

}


/* =================================
   WAREHOUSE PHOTO SLIDESHOW
================================= */

.warehouse-slider {

    position: relative;

    width: 100%;

    height: 320px;

    overflow: hidden;

    background: #111;

    border-radius:
        15px 15px 0 0;

}


.warehouse-slider img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    cursor: pointer;

}


/* =================================
   WAREHOUSE ARROWS
================================= */

.warehouse-prev,
.warehouse-next {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.65);

    color: #ffffff;

    font-size: 25px;

    line-height: 46px;

    text-align: center;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.warehouse-prev {

    left: 15px;

}


.warehouse-next {

    right: 15px;

}


.warehouse-prev:hover,
.warehouse-next:hover {

    background:
        rgba(0, 0, 0, 0.9);

    transform:
        translateY(-50%)
        scale(1.08);

}


/* =================================
   PHOTO COUNTER
================================= */

.warehouse-photo-count {

    position: absolute;

    bottom: 12px;

    left: 50%;

    transform:
        translateX(-50%);

    background:
        rgba(0, 0, 0, 0.70);

    color: #ffffff;

    padding: 6px 13px;

    border-radius: 20px;

    font-size: 14px;

    font-weight: 600;

    z-index: 5;

}


/* =================================
   WAREHOUSE PARTITION
================================= */

.warehouse-divider {

    width: 90%;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.25);

    margin: 22px auto;

}


/* =================================
   WAREHOUSE DETAILS
================================= */

.warehouse-details {

    padding:
        0 30px 30px;

    text-align: left;

}


.warehouse-details h3 {

    text-align: center;

    color: #ffd700;

    margin-bottom: 18px;

}


.warehouse-details p {

    color: #eee;

    font-size: 0.98rem;

    line-height: 1.6;

    margin-bottom: 10px;

}


.warehouse-details a[href^="tel:"] {

    color: #ffd700;

    font-weight: bold;

}


/* =================================
   INFORMATION BOX
================================= */

.info-box {

    max-width: 850px;

    margin: auto;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.08);

    padding: 35px;

    border-radius: 15px;

}


.info-box h3 {

    color: #ffd700;

    font-size: 1.8rem;

    margin-bottom: 12px;

}


/* =================================
   CONTACT
================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(240px, 1fr)
        );

    gap: 20px;

}


.contact-card {

    background:
        rgba(255, 255, 255, 0.1);

    padding: 25px;

    border-radius: 12px;

    text-align: center;

}


.contact-card h3 {

    color: #ffd700;

    margin-bottom: 8px;

}


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

form {

    max-width: 650px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


input,
textarea {

    width: 100%;

    padding: 13px;

    border-radius: 7px;

    border: 1px solid #777;

    background: #252330;

    color: white;

    font-size: 1rem;

}


button {

    border: 0;

    cursor: pointer;

}


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

footer {

    background:
        rgba(0, 0, 0, 0.9);

    text-align: center;

    padding: 28px 15px;

    color: #ffd700;

    margin-top: 30px;

}


/* =================================
   LIGHTBOX
================================= */

.lightbox {

    display: none;

    position: fixed;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.94);

    z-index: 2000;

    align-items: center;

    justify-content: center;

    padding: 25px;

}


.lightbox.open {

    display: flex;

}


.lightbox img {

    max-width: 92vw;

    max-height: 88vh;

    border-radius: 10px;

}


.close {

    position: absolute;

    right: 25px;

    top: 12px;

    color: #ffd700;

    font-size: 42px;

    cursor: pointer;

}


/* =================================
   TABLET
================================= */

@media (max-width: 800px) {

    header {

        padding: 10px 4%;

        flex-wrap: wrap;

    }


    .logo-title img {

        width: 82px;

        height: 62px;

    }


    nav {

        display: none;

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #111;

    }


    nav.open {

        display: flex;

    }


    nav a {

        text-align: center;

        padding: 12px;

        border-top:
            1px solid #333;

    }


    #hamburger {

        display: block;

    }


    .announcement {

        font-size: 14px;

    }


    section {

        padding:
            55px 5%;

    }


    /* WAREHOUSE */

    .warehouse-slider {

        height: 260px;

    }


    .warehouse-details {

        padding:
            0 22px 25px;

    }


    .warehouse-details h3 {

        font-size: 21px;

    }


    .warehouse-prev,
    .warehouse-next {

        width: 42px;

        height: 42px;

        font-size: 22px;

        line-height: 42px;

    }


    .warehouse-prev {

        left: 10px;

    }


    .warehouse-next {

        right: 10px;

    }

}


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

@media (max-width: 480px) {

    .logo-title {

        gap: 8px;

    }


    .logo-title img {

        width: 70px;

        height: 55px;

    }


    .logo-title h1 {

        font-size: 1.05rem;

        letter-spacing: 1px;

    }


    .hero {

        min-height: 65vh;

        padding:
            60px 15px;

    }


    .btn {

        padding:
            10px 18px;

        font-size: 14px;

    }


    section {

        padding:
            45px 4%;

    }


    /* SERVICES */

    .services-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .service-card {

        width: 100%;

    }


    /* WAREHOUSE PHOTO */

    .warehouse-slider {

        height: 230px;

    }


    .warehouse-details {

        padding:
            0 18px 22px;

    }


    .warehouse-details h3 {

        font-size: 19px;

        line-height: 1.4;

        margin-bottom: 16px;

    }


    .warehouse-details p {

        font-size: 14px;

        line-height: 1.5;

        margin-bottom: 9px;

    }


    /* ARROWS */

    .warehouse-prev,
    .warehouse-next {

        width: 38px;

        height: 38px;

        font-size: 20px;

        line-height: 38px;

    }


    .warehouse-prev {

        left: 8px;

    }


    .warehouse-next {

        right: 8px;

    }


    /* COUNTER */

    .warehouse-photo-count {

        bottom: 8px;

        padding:
            5px 11px;

        font-size: 13px;

    }


    /* PARTITION */

    .warehouse-divider {

        width: 88%;

        margin:
            18px auto;

    }


    /* LIGHTBOX */

    .lightbox {

        padding: 15px;

    }


    .lightbox img {

        max-width: 96vw;

        max-height: 82vh;

    }


    .close {

        right: 15px;

        top: 8px;

        font-size: 36px;

    }

}
