﻿﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 100px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADER */
.samco-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* ONE LINE */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 26px;
    text-decoration: none;
}

    .brand img {
        width: 130px; /* BIG LOGO */
        height: auto;
    }

.brand-name {
    font-size: 2rem; /* BIG COMPANY NAME */
    font-weight: 900;
    color: #27ae60;
    letter-spacing: 1px;
}

/* DESKTOP NAV */
.desktop-nav {
    display: flex;
    gap: 40px; /* MORE GAP */
    font-family: 'Oswald', sans-serif;
}

    .desktop-nav a {
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        padding: 10px 6px;
        transition: all .3s ease;
    }

        .desktop-nav a:hover {
            color: #27ae60;
            transform: translateY(-2px);
        }

/* COLORFUL TOGGLE */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .3s ease;
}

    .mobile-toggle:hover {
        transform: scale(1.05);
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: .4s;
    }

/* MOBILE MENU */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    padding: 90px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

    .mobile-nav a {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        text-decoration: none;
    }

        .mobile-nav a:hover {
            color: #27ae60;
        }

.mobile-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.4rem;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-quote {
    margin-top: auto;
    padding: 16px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

/* ACTIVE */
body.menu-open .mobile-nav {
    transform: translateX(0);
}

body.menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.7rem;
    }

    .brand img {
        width: 55px;
    }
}
