/* =========================================================
    PAX CLEANING LLC - MASTER CSS FILE
   ========================================================= */


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

body {
  margin:0;
  font-family: 'Segoe UI', sans-serif;
  background:#050505;
  color:#e5e5e5;
  line-height:1.6;
  letter-spacing:0.3px;
  overflow-x:hidden;
}

/* GLOW BACKGROUND */
body::before {
  content:"";
  position:fixed;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#22c55e33,transparent);
  top:-200px;
  left:-200px;
  z-index:-1;
  animation:floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform:translate(0,0) scale(1); }
  50% { transform:translate(120px,60px) scale(1.1); }
  100% { transform:translate(-40px,20px) scale(1); }
}

a {
    text-decoration: none;
}

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

section {
    margin-bottom: 40px;
}


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

header {
    background: rgba(0, 0, 0, 0.75); 

    backdrop-filter: blur(6px); /* subtle, not heavy */
    -webkit-backdrop-filter: blur(6px);

    border-bottom: 1px solid rgba(12, 250, 4, 0.3);

    padding: 20px;

    position: sticky; /* stays on scroll */
    top: 0;
    z-index: 1000;
}

.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:5.5em;
  background:linear-gradient(90deg,#22c55e,#facc15);
  -webkit-background-clip:text;
  background-clip: text;
  color:transparent;
  text-shadow: 0 0 20px rgba(7, 204, 24, 0.3);
}

.logo-text .cleaning {
    font-size: 20px;
    color: rgb(12, 250, 4);
}

.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: yellow;
    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;
}

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


/* =========================================================
   🔷 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: transparent; 
    pointer-events: none;
}

.modern-box {
    background: rgba(0, 0, 0, 0.25); /* transparent */
    border: 1px solid rgba(12, 250, 4, 0.7);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow:
        0 0 15px rgba(12, 250, 4, 0.6),
        0 0 35px rgba(12, 250, 4, 0.25);

    padding: 20px;
}


/* =========================================================
   🔷 INDEX PAGE
   ========================================================= */
.lead {
  font-size:1.2em;
  color:#aaa;
  max-width:600px;
  margin:10px auto 30px;
}

.section-title {
  font-size:2.2em;
  margin-bottom:10px;
  background:linear-gradient(90deg,#facc15,#22c55e);
  -webkit-background-clip:text;
  background-clip: text;
  color:transparent;
  text-align:center;
}

/* underline */
.section-title::after {
  content:"";
  display:block;
  height:3px;
  margin:10px auto 0;
  background:linear-gradient(90deg,#facc15,#22c55e);
  border-radius:5px;
}


/* PARTICLE CANVAS */
#particles {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:-2;
}

/* ENHANCED GLOW */
body::before {
  content:"";
  position:fixed;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#22c55e33,transparent);
  top:-200px;
  left:-200px;
  z-index:-1;
  animation:floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {
  0% { transform:translate(0,0); }
  50% { transform:translate(100px,50px); }
  100% { transform:translate(0,0); }
}

.highlight-line {
    display: inline-block;
    margin-top: 8px;

    color: #ffd600;
    font-weight: 600;

    text-shadow: 0 0 10px rgba(255, 214, 0, 0.6);
}



/* =========================================================
   🔷 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 */
.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 30px 0;
}

/* STATIC PILL STYLE */
.city-chips span {
    display: inline-block;

    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.35); /* see-through black */
    border: 1px solid rgb(12, 250, 4); /* green outline */

    color: #ffd600; /* yellow text */
    font-weight: 700;
    font-size: 14px;

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

    box-shadow:
        0 4px 12px rgba(0,0,0,0.25),
        inset 0 0 6px rgba(12, 250, 4, 0.15);
}

/* 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(0, 0, 0, 0.2); 

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

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

    position: relative;
    z-index: 2; 

    box-shadow: 
        0 0 12px rgba(12, 250, 4, 0.5),
        0 0 25px rgba(12, 250, 4, 0.25);
}

.service h3 {
    color: #ffd600;
    text-shadow: 0 0 8px rgba(255, 214, 0, 0.6);
}

.service-title {
    display: inline-block;

    padding: 10px 18px;
    border-radius: 999px; /* keep pill shape */

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

    color: #ffd600; 
    font-weight: 800;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow:
        0 0 10px rgba(12, 250, 4, 0.6),
        0 0 20px rgba(12, 250, 4, 0.25);

    margin-bottom: 10px;

    transition: 0.25s ease;
}


@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: yellow ;

    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;
    opacity: 0.6; /* adjust 0.6–1.0 */
}

/* --------------
   TESTIMONIALS
   -------------- */
.testimonials {
    text-align: left;     
    font-style: italic;
    background-color: transparent; 
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 800;

    background: linear-gradient(90deg, #00c853, #ffd600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

/* 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 CARDS - MODERN STYLE */
.support-card {
    background: transparent; 

    border: 1px solid rgba(12, 250, 4, 0.7);
    border-radius: 14px;

    padding: 25px;
    text-align: center;
    text-decoration: none;

    color: white;

    box-shadow:
        0 0 12px rgba(12, 250, 4, 0.4),
        0 0 25px rgba(12, 250, 4, 0.2);

    transition: 0.25s ease;
}

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

    box-shadow:
        0 0 18px rgba(12, 250, 4, 0.7),
        0 0 35px rgba(12, 250, 4, 0.3);
}

/* ICON SIZE */
.support-card div {
    font-size: 28px;
    color: #ffd600; 
}


/* =========================
   REVIEWS GRID
   ========================= */

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

.review-card {
    background: rgba(0, 0, 0, 0.25); /* matches modern-box */
    
    border: 1px solid rgba(12, 250, 4, 0.7);
    border-radius: 12px;

    padding: 15px;

    color: #fff;

    box-shadow:
        0 0 12px rgba(12, 250, 4, 0.35),
        0 0 25px rgba(12, 250, 4, 0.15);

    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;

    background: #ffd600; /* yellow accent */
    border-radius: 2px;
}

.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;
}




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

footer {
    background: transparent; 
    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);
}


/* =========================
   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%;     
    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); 
    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 */
.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;
}

.form-box {
    width: min(1100px, 95%);
    max-width: 1100px;
    margin: 60px auto;
    padding: 35px;

    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(12, 250, 4, 0.7);
    border-radius: 16px;

    box-shadow:
        0 0 18px rgba(12, 250, 4, 0.35),
        0 0 40px rgba(12, 250, 4, 0.15);
}
.stripe-logo {
    height: 22px;       
    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);
}

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

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.addon-row label {
    flex: 1;
}

.addon-qty {
    width: 70px;
}

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

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

    font-size: 16px;
    line-height: 1.5;
}

.estimate-breakdown {
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(12, 250, 4, 0.15);
    border: 1px solid rgba(12, 250, 4, 0.5);
}

.line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 15px;
}

.total {
    font-weight: bold;
    font-size: 17px;
    border-top: 1px solid rgba(0,0,0,0.2);
    padding-top: 6px;
}

.range {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.addon-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    flex: 1;
}

.addon-row input[type="number"] {
    width: 60px;
    padding: 5px;
    border-radius: 6px;
    text-align: center;
}



.summary-box {
    margin-top: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.summary-line span:last-child {
    font-weight: bold;
}

.book-box {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

.book-panel {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 18px;
    border: 2px solid #ffd700;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    color: white;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}

.book-card {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.book-panel h3 {
    margin-top: 0;
}

.book-subtext {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* title */
.book-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* button upgrade */
.book-btn {
    background: #1f6f3f; /* pax green vibe */
    color: white;
    box-shadow: 0 0 0px transparent;
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 12px 18px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.6); /* yellow glow */
}

/* subtext */
.book-subtext {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 10px;
}


/* =========================================================
   🔷 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: transparent;

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

    padding: 20px;
    border-radius: 12px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: white;

    box-shadow: 
        0 0 12px rgba(12, 250, 4, 0.4),
        0 0 25px rgba(12, 250, 4, 0.2);
}

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

.method h3 {
    color: #ffd600;
}

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

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

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

    transition: 0.2s ease;

    width: auto;     
}

.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: #0cc804;
    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;
    }

    .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

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

.header-right a {
    display: block;
    margin: 4px 0;
}

header {
    position: relative; /* or static */
    top: auto;
}

.why-image {
    display: none;
}

}