/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* =========================
   HEADER / NAVIGATION
========================= */
.site-header {
    background: #12000e;
    width: 100%;
    font-size: 18px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 1rem;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    height: 80px;
    width: auto;
}

.company-name{
    font-size: 1.5rem;
    font-weight: bold;
}

/* NAV (DESKTOP) */
.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* =========================
   HERO SECTION (HOME PAGE)
========================= */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;
}

.hero h2 {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
    background: #0056b3;
}

/* =========================
    WHY CHOOSE ME
========================== */
.why{
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 20px auto 0;
}

/* =========================
   CALL TO ACTION
========================= */
.cta {
    padding: 60px 20px;
    text-align: center;
}

/* =========================
   SERVICES SECTION
========================= */
.services {
    padding: 60px 20px;
    text-align: center;
}
.services h2{
    margin-bottom: 30px;
}

/* GRID LAYOUT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD STYLE */
.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;

    box-shadow: 0 2px 8px rgba(0,0,0,0.1);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: #000;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.service-card h3 {
    margin-bottom: 10px;
}


/* =========================
   REQUEST SERVICE PAGE
========================= */
.contact-page {
    padding: 40px 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-intro p {
    color: #555;
}

.contact-form-centered {
    color: white;
    max-width: 600px;
    margin: 0 auto;
    background: #12000e;
    padding: 25px;
    border-radius: 8px;
}

/* FORM */
.contact-form-centered form {
    display: flex;
    flex-direction: column;
}

.contact-form-centered input,
.contact-form-centered textarea,
.contact-form-centered select {
    background: white;
    color: #888;
    margin-bottom: 12px;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form-centered textarea {
    resize: vertical;
}

.contact-form-centered input:focus,
.contact-form-centered textarea:focus,
.contact-form-centered select:focus {
    outline: none;
    border-color: #007BFF;
}

.contact-form-centered button {
    transition: background 0.2s ease;
    padding: 12px;
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form-centered button:hover {
    background: #0056b3;
}

/* OPTIONAL SECONDARY CONTACT TEXT */
.contact-alt {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    color: #333;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 20px;
    background: #12000e;
    color: white;
    margin-top: 40px;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    /* Hide nav initially */
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #12000e;

        position: absolute;
        top: 100%;
        left: 0;

        padding: 1rem;
    }

    /* Show nav when active */
    .nav.active {
        display: flex;
    }

    /* Needed for absolute nav positioning */
    .container {
        position: relative;
    }
}