* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}




/* ================= HEADER ================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    transform: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 100%;
    position: relative;
}

.logo {
    max-height: 70px;
    display: block;
}

/* ================= NAV ================= */

.nav-links {
    margin-left: auto;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 14px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* underline hover */
.nav-links ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: lab(38.14% -35.44 21.62);
    display: block;
    margin: auto;
    transition: 0.4s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/image6.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

nav .fa-solid {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.hero-content {
    text-align: center;
    color: #fff;
    width: min(90%, 700px);
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.hero-content p {
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ================= BUTTON ================= */

.hero-btn {
    display: inline-block;
    padding: 12px 34px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
}

.hero-btn:hover {
    background: lab(38.14% -35.44 21.62);
    border-color: lab(38.14% -35.44 21.62);
    color: #fff;
}

/* ================= CONSTRUCTION POPUP ================= */

.construction-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 290px;
    background: rgba(255,255,255,0.97);
    padding: 18px 20px 18px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    z-index: 900;
}

.construction-popup img {
    width: 72px;
    height: auto;
    flex-shrink: 0;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: transparent;
    color: #1b1e4e;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.popup-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.popup-title {
    font-size: 14px;
    font-weight: 700;
    color: #1b1e4e;
    line-height: 1.25;
}

.popup-text p {
    margin: 0;
    font-size: 13px;
    color: #4f4f4f;
    line-height: 1.45;
}

/* ================= CONTACT / SERVICES ================= */

.contact-page-section {
    background-color: rgba(9, 5, 14, 0.85);
    color: #fff;
}

.intro-panel {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 6%;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(255,255,255,0.15), rgba(4,9,30,0.75)), url(images/image4.jpg);
}

.services-intro-panel {
    background-image: linear-gradient(rgba(255,255,255,0.15), rgba(4,9,30,0.75)), url(images/image5.jpg);
}

.intro-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.intro-panel p {
    max-width: 650px;
    line-height: 1.6;
}

/* GRID */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 6%;
}

/* cards */
.contact-details,
.address-container {
    background: rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: 14px;
}

.address-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.contact-details a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: lab(38.14% -35.44 21.62);
    transition: 0.4s;
}

.contact-details a:hover::after {
    width: 100%;
}

.site-footer {
    background: #11131a;
    color: #f5f5f5;
    text-align: center;
    padding: 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.site-footer p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

@media (max-width: 700px) {

    .construction-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 14px;
        border-radius: 12px;
    }

    .construction-popup img {
        width: 44px;
    }

    .nav-links {
        position: absolute;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        background: lab(38.14% -35.44 21.62);
        padding-top: 60px;
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .nav-links ul {
        width: 100%;
        text-align: left;
    }

    .nav-links ul li {
        display: block;
        padding: 14px;
    }

    nav .fa-solid {
        display: block;
        margin: 10px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

}