/* =========================================================
   🔥 PAX CLEANING LLC - MASTER CSS FILE (CLEANED + ORGANIZED)
   ========================================================= */


/* =========================================================
   RESET + BASE
   ========================================================= */

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

body {
    font-family: Arial, sans-serif;
    background: #f1e99e;
    color: #000;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}


/* =========================================================
   🔷 HEADER SECTION
   ========================================================= */

header {
    background: #000;
    padding: 20px;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgb(12, 250, 4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.logo-text .pax {
    font-size: 56px;
    font-weight: 900;
    color: rgb(12, 250, 4);
    line-height: 1;
}

.logo-text .cleaning {
    font-size: 20px;
    color: yellow;
}

.header-right {
    text-align: right;
}

.quote-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 10px 20px;
    background: rgb(12, 250, 4);
    color: black;
    font-weight: bold;
    border-radius: 6px;
}

.quote-btn:hover {
    background: #000;  /* Pax "identity" black */
    color: white;

    transform: translateY(-6px);

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        0 0 18px rgba(12, 250, 4, 0.7);
    
    border: 1px solid rgb(250, 4, 4);
}


/* =========================================================
   🔷 NAVIGATION (DESKTOP)
   ========================================================= */

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.main-nav ul li a {
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
}

.main-nav ul li a:hover {
    background: rgb(12, 250, 4);
    color: black;
}

.glass-box.hero {
    border: 2px solid black;
}

/* =========================================================
   🔷 HERO SECTION (ALL PAGES)
   ========================================================= */

.hero {
    text-align: center;
}

.hero h2 {
    margin-bottom: 10px;
}

.hero p {
    margin: 0;
}


/* =========================================================
   🔷 GLASS BOX (GLOBAL COMPONENT)
   ========================================================= */

.glass-box {
    background: rgb(12, 250, 4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Visible outline */
    border: 2px solid black;

    padding: 15px 20px;
    border-radius: 16px;

    box-shadow: 
      0 8px 32px rgba(0,0,0,0.25),
      0 0 10px rgba(0,0,0,0.5),
      inset 0 0 10px rgba(12, 250, 4, 0.3);

    width: fit-content;
    margin: 0 auto 25px auto;

    position: relative;
}

.glass-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );
    pointer-events: none;
}

/* =========================================================
   🔷 COMMUNITY PAGE
   ========================================================= */





/* =========================================================
   🔷 SERVICES PAGE
   ========================================================= */



.service-area h2 {
    text-align: center;
    margin-bottom: 10px;
}

.service-intro {
    text-align: center;
    margin-bottom: 20px;
}

/* MAP */
.map-glass {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgb(12, 250, 4);

    box-shadow:
        0 0 12px rgba(12, 250, 4, 0.4),
        0 0 28px rgba(12, 250, 4, 0.25),
        inset 0 0 10px rgba(12, 250, 4, 0.2);

    transition: 0.3s ease;
}

.map-glass:hover {
    box-shadow:
        0 0 18px rgba(12, 250, 4, 0.9),
        0 0 40px rgba(12, 250, 4, 0.5),
        inset 0 0 14px rgba(12, 250, 4, 0.3);
}

.map-glass iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(12, 250, 4, 0.25);
    border: 1px solid rgba(12, 250, 4, 0.4);
}

.map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 12px;
}

/* CITY CHIPS (this is the “slick” part) */
.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 30px 0;
}

/* DEFAULT STATE (matches your service cards) */
.city-chips span {
    display: inline-block;

    padding: 6px 12px;
    border-radius: 10px;

    background: rgba(12, 250, 4, 0.25); /* Pax green base */
    border: 1px solid rgba(12, 250, 4, 0.6);

    color: #000;
    font-weight: 600;
    font-size: 14px;

    cursor: pointer;
    transition: all 0.25s ease;
}

/* HOVER STATE (service card hover style) */
.city-chips span:hover {
    background: #000;
    color: #fff;

    transform: translateY(-3px);

    /* yellow ONLY on hover */
    border: 1px solid #FFD700;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.3),
        0 0 18px rgba(255, 215, 0, 0.6); /* yellow glow */

}

/* FOOT NOTE */
.service-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Each service card */
.service {
    background: rgba(12, 250, 4); /* Pax Logo Color*/
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 2px solid black; /*same outline as glass-box */

    padding: 20px;
    border-radius: 16px;
    text-align: center;
    color: black;

    transition: all 0.3s ease;

    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2),
        inset 0 0 10px rgba(12, 250, 4, 0.3);
}

/* Hover = dramatic shift */
.service:hover {
    background: #000;  /* Pax "identity" black */
    color: white;

    transform: translateY(-6px);

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        0 0 18px rgba(12, 250, 4, 0.7);
    
    border: 1px solid rgb(12, 250, 4);
}

.service-title {
    display: inline-block;

    padding: 10px 18px;

    background: rgba(12, 250, 4, 0.25); /* transparent green glass */
    border: 1px solid rgba(12, 250, 4, 0.6);

    border-radius: 999px; /* THIS makes it oval/pill */

    color: #000;
    font-weight: 800;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 0 8px rgba(12, 250, 4, 0.25);

    margin-bottom: 10px;

    transition: 0.25s ease;
}

.service-title:hover {
    transform: scale(1.05);
    background: rgba(12, 250, 4, 0.4);
    box-shadow:
        0 0 15px rgba(12, 250, 4, 0.7),
        0 6px 18px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .service-title {
        font-size: 18px;
        padding: 8px 14px;
    }
}

/* ==========================
   🔷 SERVICE AREA SECTION
   ========================== */

   .service-area {
    text-align: center;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-top: 15px;
}

/* little pill bubbles */
.areas-grid span {
    background: rgba(0, 0, 0, 0.85);
    color: rgb(12, 250, 4);

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: bold;

    border: 1px solid rgb(12, 250, 4);

    transition: 0.2s ease;
}


    
.area-note {
    margin-top: 15px;
    font-size: 14px;
}



/* ==========================
   🔷 WHY CHOOSE US SECTION
   ========================== */

.why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-text {
    flex: 1;
}

.why-text ul {
    margin: 20px auto;
    padding-left: 20px;
}

/* RIGHT SIDE IMAGE */
.why-image {
    flex: 1;
    text-align: center;
}

.why-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
}

/* --------------
   TESTIMONIALS
   -------------- */
.testimonials {
    text-align: left;     /* easier to read bullets */
    font-style: italic;
    background-color: transparent; /* remove gray box */
}

/* Bulleted testimonials list */
.testimonials ul {
    list-style: disc;
    margin-left: 20px;
}

.testimonials li {
    margin-bottom: 15px;
}

/* -------------------------
   CALL TO ACTION (CTA)
   ------------------------- */
.cta {
    background-color: rgb(12, 250, 4);
    color: black;
    text-align: center;
    padding: 60px 20px;
}

/* CTA button color override */
.cta .quote-btn {
    background-color: black;
    color: rgb(12, 250, 4);
    margin-top: 15px;
}

/* =========================================================
   🔷 SUPPORT / CONTACT PAGE
   ========================================================= */


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
}

/* FORM STYLING */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea, select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

#contact-form,
.review-form {
    width: 100%;
    max-width: 1000px;
}

#contact-form iframe,
.review-form iframe {
    width: 100%;
    min-height: 700px;
    border: none;
}

/* SOCIAL CENTER */
.social-box {
    text-align: center;
}

/* CONTACT TOP BUTTON ROW */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* SUPPORT HERO */
.support-hero {
    text-align: center;
}

.support-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.support-item {
    position: relative;
    background-color: rgb(12, 250, 4);    /* Pax green tint */
    border: 1px solid rgba(12, 250, 4, 0.4);
    border-radius: 12px;

    padding: 20px 10px;
    text-align: center;

    text-decoration: none;
    color: black;

    transition: 0.25s ease;
    overflow: hidden;
}

/* hover effect */
.support-item:hover {
    background: rgb(12, 250, 4);
    transform: translateY(-3px);
}

/* icon */
.support-item .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

/* label */
.support-item .label {
    font-weight: bold;
    display: block;
}

/* hidden info */
.hover-info {
    display: block;
    font-size: 12px;
    margin-top: 6px;

    opacity: 0;
    transform: translateY(8px);
    transition: 0.25s ease;
}

/* reveal on hover */
.support-item:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}


/* GRID */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px auto;
    max-width: 1200px;
}

.support-card {
    background: rgba(12, 250, 4, 0.15);
    border: 1px solid rgba(12, 250, 4, 0.4);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: black;
    transition: 0.25s ease;
}

.support-card:hover {
    background: rgb(12, 250, 4);
    transform: translateY(-5px);
}

.support-card div {
    font-size: 28px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.review-card {
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 15px;
    border-left: 5px solid rgb(12, 250, 4);
}

.small-note {
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.7;
}

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

.form-section iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
}

/* FLOATING LABEL INPUTS */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: transparent;
    outline: none;
}

/* LABEL */
.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    transition: 0.2s;
    color: #666;
    pointer-events: none;
}

/* FLOAT EFFECT */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -10px;
    font-size: 12px;
    background: white;
    padding: 0 5px;
}

/* TESTIMONIAL WALL */
.testimonial-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: rgb(12, 250, 4);    /* Pax green tint */
    border: 1px solid rgba(12, 250, 4, 0.4);
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
    color: #000;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(12, 250, 4, 0.30);
    box-shadow: 0 6px 18px rgba(12, 250, 4, 0.25);
}


/* =========================================================
   🔷 REVIEWS SECTION
   ========================================================= */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.review-card {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 12px;
    border-left: 5px solid rgb(12, 250, 4);
}


/* =========================================================
   🔷 FOOTER
   ========================================================= */

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

/* SOCIAL ICONS */
.social-icons img {
    width: 35px;
    margin: 0 10px;
}


/* =========================================================
   🔷 PHOTOS PAGE
   ========================================================= */

 
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 👈 3 columns */
    gap: 15px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 👈 3 columns */
    gap: 15px;
    margin-top: 20px;
}

.photo-grid img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}


/* =========================
   BEFORE / AFTER PHOTOS
   ========================= */

.photo-section {
    margin-bottom: 60px;
}

.photo-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(12, 250, 4);
}

/* Container for before/after */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 20px;
    align-items: center;
    margin-top: 20px;
   position: relative;
}

.before-after::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 2px;
    background: rgba(0,0,0,0.1);
}

/* Each side */
.photo-box {
    width: 100%;       /* 👈 remove fixed width */
    text-align: center;
}

.photo-box h4 {
    margin-bottom: 10px;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 6px;
    font-size: 14px;
}

/* Before = red tint */
.photo-box h4:contains("Before") {
    background: rgba(255, 0, 0, 0.1);
}

/* After = green tint */
.photo-box h4:contains("After") {
    background: rgba(0, 255, 0, 0.1);
}

/* Image styling */
.photo-box img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.photo-box img:hover {
    transform: scale(1.03);
}

/* LIGHTBOX BACKGROUND */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9); /* darker background for better contrast */
    display: none;

    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* IMAGE INSIDE LIGHTBOX */
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE */
#close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ARROWS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* CLICKABLE IMAGES */
.clickable-img {
    cursor: pointer;
}

/* ANIMATION */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* =========================================================
   🔷 COMMUNITY PAGE
   ========================================================= */

.community-text {
    text-align: center;
    margin: 40px 20px;
}

.community-section {
    margin: 50px 20px;
    text-align: center;
}

.community-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.community-gallery img {
    width: 100%;
    border-radius: 10px;
}

.community-mission-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    object-fit: cover;
}

/* Donation Section - Updated */
.donation {
    text-align: center;
    background: rgb(12, 250, 4);
    color: black;
    padding: 40px;
    margin-top: 50px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}

/* Community Story */
.community-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.8;
    font-size: 18px;
}

.community-story h3 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

.community-story p {
    margin-bottom: 25px; /* adjust spacing between lines */
}

.impact-counter {
    text-align: center;
    margin: 50px 0;
    font-size: 20px;
}

.impact-counter h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.donate-btn {
    background: #7CFF6B; /* lighter green */
    color: black;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s ease;
}

.donate-btn:hover {
    background: rgb(12, 250, 4);
    transform: scale(1.08);
}

.donation p {
    margin-top: 20px;
}

.donation {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.donation-text {
    margin-bottom: 10px;
}

.donation-button {
    margin-top: 10px;
}

.stripe-logo {
    height: 22px;       /* keeps it small and clean */
    width: auto;
    vertical-align: middle;
    margin-left: 6px;
}

.pay-logo {
    width: 24px;
    height: 24px;
}

.method-header-style {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    text-align: center;
}

.method-center {
    text-align: center;
}

.method-right {
    text-align: right;
}


@media (max-width: 600px) {
    .method-header-style {
        grid-template-columns: 1fr;
    }

    .method-right {
        text-align: center;
        margin-top: 10px;
    }
}


/* =========================================================
   🔷 REQUEST FORM PAGE
   ========================================================= */

.estimator {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.estimator select,
.estimator input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(12, 250, 4, 0.5);
    background: rgba(255,255,255,0.8);
}

.estimator button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;

    background: rgba(12, 250, 4, 0.25);
    border: 1px solid rgb(12, 250, 4);

    font-weight: bold;
    cursor: pointer;

    transition: 0.25s ease;
}

.estimator button:hover {
    background: #000;
    color: #fff;

    box-shadow:
        0 0 15px rgba(12, 250, 4, 0.8);
}

.estimate-result {
    margin-top: 10px;
    padding: 10px;

    background: rgba(12, 250, 4, 0.2);
    border: 1px solid rgba(12, 250, 4, 0.5);
    border-radius: 8px;

    font-size: 18px;
}


/* =========================================================
   🔷 PAYMENTS PAGE
   ========================================================= */

.form-embed {
    margin: 40px 20px;
}

.form-embed iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.payment-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.payment-section h2,
.payment-section p {
    text-align: center;
    margin-bottom: 20px;
}

/* PAYMENT BOX */
.method {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.method-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.method h3 {
    margin: 0 0 5px 0;
}

.method p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

/* BUTTONS */
.pay-btn {
    display: inline-flex;        /* key change */
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 18px;          /* slightly tighter padding */
    background: rgb(12, 250, 4);
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;

    transition: 0.2s ease;

    width: auto;                 /* 👈 THIS fixes the long stretch */
}

.pay-btn:hover {
    background: #0cc804;
}

.pay-logo {
    width: 22px;
}

/* QR CODE */
.qr-code {
    width: 160px;
    height: auto;
    margin-top: 15px;
}


/* ARROW */
.scan-arrow {
    font-size: 18px;
    font-weight: bold;
    color: black;
    margin: 0 10px;
}


/* =========================================================
   🔷 HAMBURGER MENU
   ========================================================= */

.hamburger {
    display: none;
}


/* =========================================================
   🔷 MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 46px;
        height: 42px;

        background: rgba(0,0,0,0.85);
        border: 2px solid rgb(12, 250, 4);
        border-radius: 12px;

        margin: 10px auto;
        cursor: pointer;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background: rgb(12, 250, 4);
        margin: 3px 0;
        border-radius: 2px;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        background: rgba(0,0,0,0.95);
        padding: 15px;
        border-radius: 12px;
        width: 90%;
        margin: 10px auto;
    }

    .main-nav ul.show {
        display: flex;
    }

    .why-container {
        flex-direction: column;
        text-align: center;
    }

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

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

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