nav a.active {

    position: relative;
}

:root {
    --orange: #ff6404;
    --dark: #121212;
    --gray: #f4f4f4;
    --light-gray: #e8e8e8;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* ===== HEADER ===== */

header {
    background: var(--dark);
    position: relative;
    z-index: 5000;
        margin-top: 0;

}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

/* NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav > a,
.services-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.main-nav > a:hover,
.services-link:hover {
    color: var(--orange);
}


/* ===== ANNOUNCEMENT BANNER ===== */

.announcement-bar {
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 8px 8%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.announcement-bar span {
    color: var(--orange);
    font-weight: 600;
}

.announcement-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 700;
}
.announcement-bar a:hover {
    text-decoration: underline;
}


/* ===== TOP BAR (SEGMENTED STYLE) ===== */
.top-bar {
    background: #1c1c1c;
    border-top: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    font-size: 13px;
}

.top-bar .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LEFT NAV TABS ===== */

.top-left {
    display: flex;
    align-items: stretch;
}

/* Individual tabs */
.top-left a {
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    color: #bbb;
    font-weight: 600;
    transition: 0.25s ease;
    border-right: 1px solid #2a2a2a; /* divider */
}

/* Left border for first tab */
.top-left a:first-child {
    border-left: 1px solid #2a2a2a;
}

/* Hover effect (underline bar like TruGreen) */
.top-left a:hover {
    color: #fff;
}

.top-left a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
}

/* Active tab (solid orange background) */
.top-left a.active {
    background: var(--orange);
    color: #fff;
    border-right: none;
}

.top-left a.active::after {
    display: none; /* prevent underline on active */
}

/* ===== RIGHT SIDE ===== */

.top-right {
    display: flex;
    align-items: center;
}

/* Login Button */
.login-btn {
    background: var(--orange);
    color: #fff;
    padding: 8px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.login-btn:hover {
    background: #e55a00;
}


/* ===== FOOTER ===== */

footer {
    background: #000;
    color: #ccc;
    padding: 60px 8% 30px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ===== FULL WIDTH ENTERPRISE MEGA MENU ===== */

.dropdown {
    position: static; 
}

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;             /* right below the nav link */
    left: 0;
    width: 100vw;           /* full viewport width */
    margin-left: calc(-50vw + 50%); /* centers it across the screen */
    background: var(--white);
    padding: 70px 8%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-top: 4px solid var(--orange);

    /* Hover transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;          /* above other content */
}

.mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

/* ===== MEGA MENU ITEMS ===== */

.mega-item {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--dark);
    transition: 0.25s ease;
}

.mega-item:hover .mega-title {
    color: var(--orange);
}

.mega-title {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.mega-desc {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Sections */

.mega-column h4 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}


.mega-column a {
    display: block;
    margin-bottom: 12px;
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.mega-column a:hover {
    color: var(--orange);
}

/* Show dropdown */

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* ===== HERO ===== */

.hero {
    color: var(--white);
    padding: 140px 8%;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero span {
    color: var(--orange);
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
}


/* ===== SECTIONS ===== */

.section {
    padding: 100px 8%;
}

.section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--orange);
}

.section-sub {
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}


/* ===== GRID ===== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}


/* ===== CARDS ===== */

.card {
    background: var(--gray);
    padding: 40px;
    border-radius: 14px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid transparent;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--orange);
}

.card h3 {
    font-size: 22px;
    color: var(--orange);
}


/* ===== WHY SECTION ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-box {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 14px;
}

.why-box h4 {
    color: var(--orange);
    margin-bottom: 15px;
}


/* ===== GUARANTEE & CTA ===== */

.guarantee {
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 100px 8%;
}

.guarantee h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 100px 8%;
}


/* ===== BUTTON ===== */

.btn {
    background: var(--orange);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #e55a00;
}


/* =========================
   NP: ABOUT PAGE
========================= */

/* ===== ABOUT HERO ===== */

.about-hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
                url("/images/about-hero.jpg") center/cover no-repeat;
    padding: 140px 8%;
    color: var(--white);
}

.about-hero-inner {
    max-width: 900px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: .9;
}

/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 100px 8%;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 18px;
    color: #444;
    line-height: 1.7;
}

/* Highlight Cards */

.about-highlight {
    display: grid;
    gap: 20px;
}

.highlight-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    transition: .2s ease;
}

.highlight-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.highlight-card h3 {
    margin-bottom: 8px;
    color: var(--orange);
}

/* ===== SEASON SECTION ===== */

.season-section {
    padding: 100px 8%;
    background: var(--gray);
    text-align: center;
}

.season-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.season-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    text-align: left;
    transition: .2s ease;
}

.season-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
}

.season-card h3 {
    margin-bottom: 20px;
    color: var(--orange);
}

.season-card ul {
    list-style: none;
    padding: 0;
}

.season-card li {
    margin-bottom: 12px;
    color: #444;
}

/* ===== MISSION ===== */

.mission-section {
    padding: 110px 8%;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mission-section p {
    max-width: 750px;
    margin: 0 auto;
    opacity: .9;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 38px;
    }
}