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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1f2328; /* charcoal */
    color: #e5e7eb;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 3rem 1.5rem;
}

h1, h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    color: #d1d5db;
}

/* ================= HEADER ================= */
.header {
    background-color: #0f172a; /* dark blue */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
    color: #22c55e; /* green accent */
}

.nav {
    display: flex;
}

.nav a {
    color: #e5e7eb;
    margin-left: 1.2rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #22c55e;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    background: url("../images/hero.jpg") center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.10);


}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-subtitle {
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    margin-bottom: 2rem;
}

/* ================= BUTTON ================= */
.btn-primary {
    display: inline-block;
    background-color: #22c55e;
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #16a34a;
}

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

/* ================= WHY ================= */
.why {
    background-color: #0f172a;
}

.why ul {
    list-style: none;
    margin-top: 1rem;
}

.why li {
    margin-bottom: 0.5rem;
}

.why-tagline {
    margin-top: 1.5rem;
    font-style: italic;
    color: #22c55e;
}

/* ================= CAPABILITIES ================= */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.cap-grid span {
    background-color: #0f172a;
    padding: 1rem;
    border-left: 4px solid #22c55e;
}

/* ================= ABOUT ================= */
.about {
    background-color: #1f2933;
    text-align: center;
}

/* ================= CTA ================= */
.cta {
    background-color: #0f172a;
    text-align: center;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #020617;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #0f172a;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ================= CONTACT ================= */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.contact-block a {
    color: #22c55e;
    text-decoration: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: none;
    background-color: #0f172a;
    color: #e5e7eb;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

/* ================= EMPLOYEE BILLING ================= */
.billing-portal {
    background-color: #020617;
    text-align: center;
    border-top: 1px solid #1f2933;
}

.billing-portal h2 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.billing-note {
    font-size: 0.9rem;
    color: #9ca3af;
}

.billing-btn {
    margin-top: 1.25rem;
}

/* ================= MOBILE NAV (ANIMATED) ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 26px;
    background: #22c55e;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .header {
        position: relative;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 1000;
    }

    .nav a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .nav.active {
        max-height: 500px;
    }
}
