:root {
    --dark: #151515;
    --light: #ffffff;
    --accent: #e30613;
    --text: #555;
    --ghost: #9c9c9c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* NAV BASE */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* INNER */
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    width: 140px;
    height: auto;
    margin-bottom: -5rem;
}

/* NAV LINKS WRAPPER */
.nav-links {
    display: flex;
    gap: 0.75rem;
}

/* PILL BUTTON STYLE */
.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;

    padding: 0.55rem 1.1rem;
    border-radius: 999px;

    font-size: 0.95rem;
    letter-spacing: 0.3px;

    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);

    transition: all 0.25s ease;
    overflow: hidden;
}

/* HOVER EFFECT */
.nav-links a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* ACTIVE / CLICK FEEL */
.nav-links a:active {
    transform: translateY(0px);
}

/* OPTIONAL: NICE UNDERLINE SWEEP EFFECT */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 60%;
}

/* DROPDOWN WRAPPER */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* BUTTON STYLE (matches your pill nav vibe) */
.nav-dropbtn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;

    padding: 0.55rem 1.1rem;
    border-radius: 999px;

    cursor: pointer;
    font-size: 0.95rem;

    display: flex;
    align-items: center;
    gap: 0.4rem;

    transition: 0.25s ease;
}

/* PLUS ICON */
.nav-dropbtn .plus {
    font-weight: bold;
    transition: transform 0.25s ease;
}

/* HOVER */
.nav-dropbtn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* ROTATE PLUS WHEN ACTIVE */
.nav-dropdown.open .plus {
    transform: rotate(45deg);
}

/* DROPDOWN PANEL */
.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    background: rgba(20,20,20,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;

    min-width: 220px;
    padding: 0.5rem;

    display: none;
    flex-direction: column;
    gap: 0.25rem;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* SHOW STATE */
.nav-dropdown.open .nav-dropdown-content {
    display: flex;
}

/* DROPDOWN LINKS */
.nav-dropdown-content a {
    color: white;
    text-decoration: none;

    padding: 0.6rem 0.8rem;
    border-radius: 8px;

    font-size: 0.9rem;

    transition: 0.2s ease;
}

/* HOVER */
.nav-dropdown-content a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--accent);
}

.all-services-link {
    margin-top: 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.7rem;

    color: var(--accent);
    font-weight: 600;
}
.all-services-link:hover {
    background: rgba(227, 6, 19, 0.1);
    color: white;
}

/* HERO */

.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../Images/Hero1 - cropped.jpg");
    background-size: cover;
    background-position: center 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
}



.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--text);
}

/* SERVICES */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    border: 1px solid #ddd;
    padding: 2rem;
    transition: .3s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.link {
    color: var(--ghost);
    font-size: .9rem;
    margin-top: 1rem;
}

.service-card:hover .link {
    color: var(--accent);
}

/* FEATURE */

.feature {
    background: #f5f5f5;
}

/* HEADER ABOVE GRID */
.feature-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.feature-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-header h4 {
    font-weight: normal;
    color: var(--text);
    line-height: 1.8;
}

/* GRID LAYOUT */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* IMAGE */
.feature-image {
    min-height: 500px;
    background: url("../Images/Hero2.JPG");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* CARDS */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform .2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-card h3 {
    color: var(--accent);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.benefit-card p {
    color: var(--text);
    font-size: .95rem;
}

/* CTA */

.cta {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FOOTER */

footer {
    background: #111;
    color: #999;
    padding: 2rem;
    text-align: center;
}

/* =========================
   SERVICE AREA MAP LAYOUT
   ========================= */

.map-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* AREA PILLS */
.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.area-pill {
    background: #fff;
    border: 1px solid #ddd;
    padding: .5rem .75rem;
    border-radius: 999px;
    font-size: .9rem;
    color: var(--text);
    transition: .2s ease;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.area-pill.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* =========================
            MOBILE
   ========================= */

@media (max-width: 750px) {

    .hero {
        max-height: 60vh;
        background-position: 60% 80%;
    }

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

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
    
    .map-grid {
        grid-template-columns: 1fr;
    }
}
