/* =========================
   RESET
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================
   TOP HEADER
========================= */
.top-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.top-left,
.top-right {
    display: flex;
    gap: 15px;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* =========================
   MAIN HEADER
========================= */
.main-header {
    position: absolute;
    top: 40px; /* below top header */
    width: 100%;
    z-index: 999;
    background: transparent;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* MENU */
.menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #fff;
}

/* BUTTON */
.quote-btn a {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
}

/* =========================
   STICKY HEADER (SCROLL)
========================= */
.sticky-header.scrolled {
    position: fixed;
    top: 0;
    background: #fff;
}

.sticky-header.scrolled .menu a {
    color: #000;
}

.sticky-header.scrolled .quote-btn a {
    background: #0073aa;
    color: #fff;
}

/* LOGO FIX */
.main-header img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.sticky-header.scrolled img {
    filter: none;
}

/* =========================
   HERO / SLIDER AREA
========================= */
.hero-section {
    height: 100vh;
    position: relative;
}

/* =========================
   FOOTER
========================= */
.footer-top {
    background: #111;
    color: #fff;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.footer-top a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    background: #000;
    color: #fff;
}

.footer-bottom .container {
    text-align: center;
    padding: 10px 0;
}