:root {
    --primary-color: #F9BF15;
    --text-color: #333;
    --background-color: #f5f5f5;

    --btn-color: #F9BF15;
    --btn-color-hover: #ffd34d;

    --font-family: "Montserrat", sans-serif;
    --font-family-alt: 'Poppins', sans-serif;
}

.logo-img{
    position: relative;
    top:3px;
    height: 60px;
}

.top-bar {
    background: #111;
    color: #fff;
    height: 40px;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;

    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;

    padding: 8px 20px;
}

/* hidden state */
.top-bar.hide {
    transform: translateY(-100%);

}

.top-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


.top-right i {
  color: var(--primary-color);
}

/* clickable links */
.top-link {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #fff;
  text-decoration: none;
  font-size: 13px;

  transition: 0.3s ease;
}

.top-link:hover {
  color: var(--primary-color);
}

.top-link i {
  color: var(--primary-color);
}



/* HEADER */
.header {
    background: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 60px;
    transition: top 0.3s ease, transform 0.3s ease;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* when top bar is hidden → move header up */
.header.shift {
    top: 0;
}

.logo {
    font-weight: bold;
}

/* DESKTOP NAV */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LINKS GROUP */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* CTA BUTTON */
.quote-btn {
    padding: 10px 18px;
    background: var(--primary-color);
    color: #000;

    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #ffd34d;
    transform: scale(1.05);
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDE NAV */
.side-nav {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;

    transition: 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.side-nav.active {
    right: 0;
}

/* HEADER */
.side-header {
    position: relative;
    top: -15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px 15px 0px;
    border-bottom: 1px solid #eee;
}

.side-header h3 {
    font-size: 16px;
    font-weight: 700;
}

/* CLOSE BUTTON */
.close-btn {
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--primary-color);
}

/* LINKS */
.side-links {
    position: relative;
    top: -20px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}

/* LINK STYLE */
.side-links a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 10px;
    border-radius: 10px;

    text-decoration: none;
    color: #000;
    font-size: 15px;

    transition: 0.3s ease;
}

/* hover effect */
.side-links a:hover {
    background: var(--primary-color);
    transform: translateX(6px);
}

/* icons */
.side-links i {
    font-size: 20px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
     .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
        /* ensure header is at the top when top bar is hidden */
    }
}

/* Nav Info */
.nav-info-group {
    position: relative;
    top: -10px;
}

.nav-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #707070;
}

/* container */
.nav-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* link cards */
.nav-info a,
.info-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 10px;
    border-radius: 10px;

    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    text-decoration: none;
    color: #000;

    transition: 0.3s ease;
}

/* hover effect */
.nav-info a:hover {
    transform: translateX(6px);
    background: var(--primary-color);
}

/* icon style */
.nav-info i {
    font-size: 22px;
    color: #000;
}

/* text structure */
.label {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

small {
    font-size: 12px;
    color: #666;
}

/* hover text color fix */
.nav-info a:hover small {
    color: #000;
}





