body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  text-align: center;
}

header {
  background: #111;
  color: white;
  padding: 25px;
}

header h1 {
  margin: 0;
  font-size: 40px;
}

main {
  padding: 80px 20px;
}

h2 {
  font-size: 36px;
}

button {
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 140px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #111;
}

/* NAVBAR */

.navbar {
    width: 100%;
    background: rgba(15, 15, 15, 0.96);
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 5px 8%;

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.22);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 130px;
    height: auto;
    display: block;
}


/* NAVIGATION */

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* NAV BUBBLES */

.navbar nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    color: white;
    text-decoration: none;

   font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

    transition: 0.2s ease;
}


/* NAV HOVER */

.navbar nav a:hover {
    color: white;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #00cfff
    );

    border-color: transparent;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(124, 58, 237, 0.28);
}


/* WHEN CLICKED */

.navbar nav a:active {
    transform: translateY(0) scale(0.97);
}

/* HERO */

.hero {
    min-height: 80vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.72)
        ),
        url("hero.jpg.png");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    color: white;
}
.trust-line {
    margin-top: 22px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.9;
}
.hero-slogan {
    width: 100%;
    font-size: 45px;
    font-weight: 800;
    line-height: 0.90;
    margin-bottom: 20px;
}
.seo-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.small-title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 62px;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* HEADER SOCIAL LINKS */

.header-socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    gap: 22px;

    width: 100%;
    margin: 0 auto;
}

.header-socials a {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    color: rgb(8, 8, 8);
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    transition: 0.2s ease;
}

.social-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    border: 1px solid #dddddd;
    border-radius: 50%;

    color: #111;

    transition: 0.2s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-socials a:hover .social-icon {
    background: linear-gradient(
        135deg,
        #7c3aed,
        #00cfff
    );

    color: rgb(5, 5, 5);
    border-color: transparent;

    transform: translateY(-2px);
}

.header-socials a:hover span {
    color: #00cfff;
}

/* MOBILE */

@media (max-width: 700px) {

    .header-socials {
        gap: 5px;
        margin-left: 5px;
    }

    .header-socials a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s;
}

.primary {
    background: #7c3aed;
    color: white;
}

.secondary {
    background: #00cfff;
    color: #111;
    border: 2px solid #00cfff;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* SERVICES */

.services {
    padding: 90px 8%;
    background: #ffffff;
}

.services-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.services-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.services-heading p {
    font-size: 18px;
    line-height: 1.6;
}

.services-heading .small-title {
    color: #7c3aed;
    font-size: 15px;
    margin-bottom: 8px;
}

.service-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

/* SERVICE PHOTOS */

.service-image {
    width: 100%;
    height: 230px;

    background-size: cover;
    background-position: center;
}

.house-image {
    background-image: url("house-washing.png");
}

.concrete-image {
    background-image: url("concrete-cleaning.png");
}

.commercial-image {
    background-image: url("commercial-cleaning.png");
}

/* SERVICE TEXT */

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.service-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: bold;
}

.service-link:hover {
    text-decoration: underline;
}

/* SERVICE CARDS ON PHONES */

@media (max-width: 800px) {

    .service-container {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }
}
/* BEFORE & AFTER */

.results {
    padding: 90px 8%;
    background: #f4f4f4;
    text-align: center;
}

.results-heading {
    max-width: 700px;
    margin: 0 auto 40px;
}

.results-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.results-heading p {
    font-size: 18px;
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto 35px;

    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 15px;
}

.result-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.result-photo img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.photo-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;

    padding: 10px 18px;
    color: white;
    font-weight: 900;
    font-size: 18px;
    border-radius: 5px;
}

.before-label {
    background: #7c3aed;
}

.after-label {
    background: #00a8e8;
}

.result-arrow {
    font-size: 55px;
    font-weight: bold;
    color: #7c3aed;
}

.results-button {
    display: inline-block;
    background: #7c3aed;
    color: white;
    text-decoration: none;
    font-weight: bold;

    padding: 16px 30px;
    border-radius: 7px;

    transition: 0.2s;
}

.results-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 800px) {

    .before-after-container {
        grid-template-columns: 1fr;
    }

    .result-arrow {
        transform: rotate(90deg);
    }

    .result-photo img {
        height: 300px;
    }
}
/* WHY DAS PRESSURE */

.about {
    padding: 90px 8%;
    background: #111;
    color: white;
}

.about-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.about-heading .small-title {
    color: #00cfff;
    margin-bottom: 8px;
}

.about-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.about-heading > p:last-child {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
}

.why-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: #1b1b1b;
    padding: 30px 22px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2d2d2d;

    transition: 0.25s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #7c3aed;
}

.why-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #00cfff
    );

    font-size: 25px;
    font-weight: bold;
    color: white;
}

.why-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.why-card p {
    color: #bbbbbb;
    line-height: 1.6;
    font-size: 15px;
}

/* WHY SECTION MOBILE */

@media (max-width: 1000px) {

    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .why-container {
        grid-template-columns: 1fr;
    }
}
/* CUSTOMER REVIEWS */

.reviews {
    padding: 90px 8%;
    background: #ffffff;
    text-align: center;
}

.reviews-heading {
    max-width: 700px;
    margin: 0 auto 45px;
}

.reviews-heading h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.reviews-heading p {
    font-size: 18px;
    color: #555;
}

.review-stars {
    color: #7c3aed;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

/* SERVICE AREA */

.service-area {
    padding: 90px 8%;
    background: #111;
    color: white;
    text-align: center;
}

.service-area-heading {
    max-width: 800px;
    margin: 0 auto 35px;
}

.service-area-heading .small-title {
    color: #00cfff;
    margin-bottom: 8px;
}

.service-area-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.service-area-heading p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
}

.area-tags {
    max-width: 900px;
    margin: 0 auto 35px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tags span {
    background: #1d1d1d;
    border: 1px solid #333;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: bold;

    transition: 0.2s;
}

.area-tags span:hover {
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.service-area-button {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #7c3aed,
        #00cfff
    );

    color: white;
    text-decoration: none;
    font-weight: bold;

    padding: 16px 30px;
    border-radius: 7px;

    transition: 0.2s;
}

.service-area-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 700px) {

    .service-area-heading h2 {
        font-size: 32px;
    }

    .area-tags span {
        font-size: 14px;
    }
}
/* REVIEW CARDS */

.reviews-container {
    max-width: 1200px;
    margin: 0 auto 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 30px;

    text-align: left;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    min-height: 360px;

    transition: 0.25s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}

.card-stars {
    color: #7c3aed;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-text {
    line-height: 1.7;
    color: #444;

    margin-top: 0;
    margin-bottom: 0;

    flex-grow: 1;
}


/* CUSTOMER */

.review-customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-letter {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #00cfff
    );

    color: white;
    font-weight: bold;
    font-size: 18px;
}

.review-customer h3 {
    font-size: 18px;
    margin-bottom: 3px;
    color: #111;
}

.review-customer span {
    font-size: 13px;
    color: #777;
}


/* GOOGLE REVIEW BUTTON */

.review-button-container {
    width: 100%;
    text-align: center;
    margin-top: 35px;
}

.google-review-button {
    display: inline-block;
    background: #111;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 16px 28px;
    border-radius: 7px;
    transition: 0.2s;
}

.google-review-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}


/* REVIEWS MOBILE */

@media (max-width: 900px) {

    .reviews-container {
        grid-template-columns: 1fr;
    }
}
/* CONTACT */

/* FAQ */

.faq {
    padding: 90px 8%;
    background: #ffffff;
}

.faq-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.faq-heading p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dddddd;
}

.faq-item summary {
    width: 100%;
    padding: 22px 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    color: #7c3aed;
    font-size: 28px;
    font-weight: normal;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-answer p {
    padding: 0 5px 22px;
    margin: 0;

    line-height: 1.7;
    color: #555;
}

.faq-item summary:hover {
    color: #7c3aed;
}

@media (max-width: 600px) {

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-item summary {
        font-size: 16px;
    }
}
.contact {
    .contact {
    padding: 90px 8%;
    background: #f4f4f4;
}

.estimate-container {
    max-width: 900px;
    margin: 0 auto;
}

.estimate-heading {
    text-align: center;
    margin-bottom: 35px;
}

.estimate-heading h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.estimate-heading p {
    font-size: 18px;
    line-height: 1.6;
}

.dark-title {
    color: #7c3aed;
}

.estimate-form {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cccccc;
    border-radius: 7px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.form-group textarea {
    resize: vertical;
}

.estimate-button {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 7px;
    background: #7c3aed;
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.estimate-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
/* SERVICE CHECKBOXES */

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.checkbox-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #f7f7f7;
    border: 2px solid #e2e2e2;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
}

.checkbox-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-option span {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.checkbox-option span::before {
    content: "";
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid #aaa;
    border-radius: 6px;
    background: white;
    transition: 0.2s;
}

.checkbox-option:hover {
    border-color: #7c3aed;
    background: #faf8ff;
}

.checkbox-option:has(input:checked) {
    border-color: #7c3aed;
    background: #f5f0ff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.checkbox-option input:checked + span::before {
    content: "✓";
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #00cfff);
    border-color: #7c3aed;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .estimate-form {
        padding: 25px 18px;
    }
}
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact p {
    font-size: 20px;
    margin-bottom: 25px;
}

.contact .primary {
    background: #111;
    color: white;
}
/* SERVICE DIMENSIONS */

.service-dimensions {
    display: none;

    background: #f7f7f7;
    border: 2px solid #e5e5e5;
    border-radius: 12px;

    padding: 20px;
    margin-bottom: 20px;
}

.service-dimensions.active {
    display: block;
}

.service-dimensions h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #111;
}

.dimension-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dimension-row .form-group {
    margin-bottom: 0;
}

@media (max-width: 600px) {

    .dimension-row {
        grid-template-columns: 1fr;
    }

}
.form-success {
    display: none;
    margin-top: 25px;
    padding: 22px;

    text-align: center;

    background: #f5f0ff;
    border: 2px solid #7c3aed;
    border-radius: 12px;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    margin-bottom: 8px;
    color: #7c3aed;
}

.form-success p {
    margin: 0;
    color: #444;
}

.estimate-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* FOOTER */

.footer {
    background: #0d0d0d;
    color: white;
    padding: 60px 8% 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;

    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #00cfff;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-column a:hover {
    color: #7c3aed;
}

.footer-column p {
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-brand img {
    width: 140px;
    height: auto;
    margin-bottom: 8px;
}

.footer-phone {
    font-size: 20px;
    font-weight: bold;
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 22px 0;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    font-size: 14px;
}

.footer-bottom p {
    color: #888888;
}


/* FOOTER MOBILE */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

/* MOBILE */

@media (max-width: 800px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 75vh;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 34px;
    }
}