/* === GLOBAL RESET === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === BASE STYLES === */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

main {
    padding-top: 110px; /* fixed navbar height */
    flex: 1;
}

/* === NAVIGATION === */
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    width: 100%;
    z-index: 1050;
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 0 1rem;
}

.navbar-container {
    display: flex;
    justify-content: space-between;  /* left group vs right group */
    align-items: center;             /* ✅ vertical centering */
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
    height: 100%;                    /* aligns with nav height */
}

/* === Left side: Brand + Phone === */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* space between brand and phone */
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #00c853;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.navbar-phone {
    color: #ccc;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 0; /* keep same height as brand */
    margin: 0;
}

/* === Right side: Menu === */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    font-size: 1.2rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00c853;
    text-decoration: underline;
}

/* Special Fab-Hack link */
.fab-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding: 0.5rem 1rem;
    border: 2px solid #00c853;
    border-radius: 6px;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fab-link:hover {
    background-color: #00c853;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

/* === Action button === */
.my-acc-btn {
    background: linear-gradient(135deg, #00c853, limegreen);
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    border: none;
}

.my-acc-btn:hover {
    background: linear-gradient(135deg, limegreen, #00c853);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(67, 160, 71, 0.3);
}

.my-acc-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    font-size: 1.2rem;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;                  /* more spacing between bars */
    cursor: pointer;
    background-color: #000;    /* black background */
    padding: 0.6rem;           /* space around bars */
    border: none;              /* no default border */
    border-radius: 6px;        /* rounded edges */
}

.hamburger span {
    width: 32px;
    height: 4px;               /* thicker (juicier) bars */
    background-color: #fff;    /* white bars */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Active animation (X shape) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    transform-origin: center;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    transform-origin: center;
}

/* Mobile nav menu */
.nav-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: #111;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #00c853;
    border-radius: 0 0 12px 12px;
}

.nav-menu-mobile.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-mobile li {
    list-style: none;
}

/* === FOOTER === */
footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 1.5rem;  /* reduced top/bottom padding → tighter */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem; /* MORE space before copyright */
}

.footer-logo {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
    font-weight: bold;
    color: #00c853;
}
.footer-slogan {
    font-size: clamp(1.1rem, 1vw + 0.5rem, 1.3rem);
    color: #ccc;
}

footer address {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: clamp(1.05rem, 1vw + 0.5rem, 1.25rem);
    font-style: normal;
}

footer address a {
    color: #00c853;
    text-decoration: none;
}


.footer-contact-link{
      color: #00c853;
      text-decoration: none;
}

.footer-contact-link:hover{
    text-decoration: underline;
    color: limegreen;
}

/* Copyright */
footer .copyright {
    text-align: center;
    font-size: clamp(0.85rem, 0.5vw + 0.7rem, 0.95rem);
    color: #aaa;
    border-top: 1px solid #222;
    padding-top: 1.8rem;   /* a bit tighter */
    margin-top: 0;         /* prevent extra spacing */
}

/* === FLOATING BUTTONS === */
button.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #00c853; /* same green as phone button */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    border: none;
}

button.to-top:hover {
    background-color: #00e676;
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.4);
}

button.to-top svg {
    width: 36px;
    height: 36px;
    fill: white; /* ensures the arrow is bold white */
}


.phone-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background-color: #00c853;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s;
    text-decoration: none;
}

.phone-button:hover {
    background-color: #00e676;
    transform: translateY(-4px);
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.4);
}

.phone-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* === RESPONSIVE === */
@media (max-width: 1450px) {
    .navbar-phone {
        display: none;
    }
}

@media (max-width: 1200px) {

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-top {
        flex-direction: column;
    }

}

@media (min-width: 1201px) {
    .nav-menu-mobile {
        display: none;
    }

    .nav-menu {
        display: flex !important;
    }

    .hamburger {
        visibility: hidden;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .phone-button {
        display: flex;
    }
}
