:root {
    --primary-red: #ff3131;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}












/* Hero */

.hero {
    overflow: hidden;
    box-shadow: var(--shadow);

    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/services/glass-cleaning.jpg");

    background-size: cover;

    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    width: 100%;
    position: relative;
}


.hero-inner {
    padding: 72px 28px;
    padding-bottom: 40px;
    color: #fff;
    max-width: 900px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lux-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
    padding: 10px 14px;
    border-radius: 999px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 16px;
    margin-bottom: 10px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hero p {
    font-size: 1.07rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 16px 0 24px;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.btn-lux {
    border-radius: 999px;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
}





.btn-ghost {
    color: var(--5, #fff);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    background: linear-gradient(to right, #3f3f3f, #000000);
    border-radius: 30px;
    padding: 14px 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.btn-ghost::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background: linear-gradient(to left, #3f3f3f, #000000);
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}

.btn-ghost:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}





.hero-inner {
    width: 100%;
    max-width: 900px;
}

/* ---------- Tablets ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        max-width: 760px;
        padding: 64px 24px 36px;
        top: 55%;
    }

    .hero h1 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-inner {
        min-width: unset;
        max-width: 100%;
        padding: 56px 20px 32px;
        top: 50%;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin: 14px 0 22px;
    }

    .hero-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }

    .hero-inner {
        padding: 48px 16px 18px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.92rem;
    }
}

























/* Section */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: clamp(30px, 2.8vw, 40px);
    font-weight: 600;
    background: linear-gradient(to right, #000000, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}


.section-lead {
    max-width: 85ch;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.03rem;
}




.lux-card-head {
    background: linear-gradient(to right, #000000, #ff3131);
    border-radius: 15px;
    padding: 22px;
    height: 100%;
    overflow: hidden;
    color: white;
    text-align: center;
}

.lux-card-head h2 {
    margin-bottom: 20px;
}



/* Cards */
.lux-card {
    background: #F5F6F7;
    border-radius: 15px;
    padding: 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

}

.lux-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 200px at 10% 0%, rgba(184, 155, 94, 0.10), transparent 55%),
        radial-gradient(600px 220px at 90% 0%, rgba(214, 192, 137, 0.10), transparent 58%);
    pointer-events: none;
}

.lux-card>* {
    position: relative;
}

.lux-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 50%;
    background: rgba(0, 0, 0);
    display: grid;
    place-items: center;
    color: white;
    margin-bottom: 14px;
    transition: all 0.5s ease;
}


.lux-card:hover {
    transform: scale(1.02);
}


.lux-card:hover .lux-icon {
    transform: rotateY(180deg);
    background: linear-gradient(to right, #000000, #ff3131);
}

.lux-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.lux-list {
    margin: 0;
    color: var(--muted);
    padding-left: 15px;
}

.lux-list li {
    margin-bottom: 10px;
    list-style: disc;
}

.lux-list li::marker {
    color: var(--gold);
}










.image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;

    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
    border-radius: 10px;


}

.image-strip img {
    width: 100%;
    aspect-ratio: 4 / 2;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}


@media (max-width:575px) {
    .image-strip {
        grid-template-columns: repeat(1, 1fr);
    }

}













/* Pricing */
.pricing {
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.98), rgba(23, 23, 23, 0.90)),
        url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-inner {
    padding: 48px 22px;
}

.pricing h2 {
    margin-bottom: 8px;
}

.pricing p {
    color: rgba(255, 255, 255, 0.88);
}

.pricing .rule {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 18px 0;
}

.pricing .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(to right, #000000, #ff3131);
    margin: 6px 6px 0 0;
    font-weight: 600;
}

.pricing .pill i {
    color: var(--gold-2);
}