/* Services Section */
/* =========================
   HERO
========================= */

.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.services-hero::before {
    content: "";

    position: absolute;

    top: -20%;
    right: -10%;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(212, 175, 55, 0.12),
            transparent 70%);

    filter: blur(80px);

    opacity: .7;
}

.services-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.services-hero .services-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.services-hero-text {
    max-width: 100%;

    margin: 0 auto;
}

.services-hero-text span {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.services-hero-text h1 {
    font-size: 84px;
    line-height: 0.95;
    margin: 25px 0;
    color: #fff;
}

.services-hero-text p {
    max-width: 540px;
    font-size: 18px;
    margin-bottom: 40px;
}

.services-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #c8a46b;
    color: #0f0f0f;

    padding: 18px 34px;

    border-radius: 16px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.4s ease;
}

.services-hero-btn:hover {
    transform: translateY(-4px);
    background: #ddb87b;
}

.services-hero-image {
    position: relative;
}

.services-hero-image img {
    height: 780px;
    border-radius: 340px 340px 40px 40px;
}

.services-hero-image img {
    animation:
        floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}

.services-hero-badge {
    position: absolute;

    bottom: 40px;
    left: -20px;

    padding: 22px 24px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.services-hero-badge h3 {
    color: #c8a46b;
    font-size: 36px;
    margin-bottom: 6px;
}

.services-hero-badge p {
    font-size: 14px;
}

/* =========================
   STACK SECTION
========================= */

.stack-section {
    padding: 60px 0 220px;
}

.stack-intro {
    text-align: center;
    margin-bottom: 120px;
}

.stack-intro span {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.stack-intro h2 {
    font-size: 72px;
    line-height: 1.05;
    margin-top: 20px;
}

/* =========================
   STACKING CARDS
========================= */

.stack-wrapper {
    position: relative;
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: sticky;

    top: 90px;

    min-height: 72vh;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 70px;

    padding: 50px;

    border-radius: 34px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.01));

    border:
        1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(16px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.28);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}



.service-card:hover::before {
    opacity: 1;
}

/* DIFFERENT CARD TONES */

.card-two {
    background: #1d1d1d;
}

.card-three {
    background: #242424;
}

/* =========================
   CARD CONTENT
========================= */

.service-card-content {
    max-width: 560px;
}

.service-card-content span {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
}

.service-card-content h2 {
    font-size: clamp(38px, 3.5vw, 62px);
    ;
    line-height: 1;
    margin: 22px 0 28px;
    color: #fff;

}

.service-card-content p {
    font-size: 17px;
    margin-bottom: 35px;
}

/* FEATURES */

.service-card-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 42px;
}

.service-card-features div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    border-radius: 14px;
}

.service-card-features i {
    color: #c8a46b;
}

/* BUTTON */

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.learn-btn:hover {
    gap: 18px;
    color: #c8a46b;
}

/* =========================
   IMAGE
========================= */

.service-card-image {
    position: relative;
}

.service-card-image img {
    height: 640px;
    border-radius: 30px;
}

.service-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);

    border-radius: 30px;
}

/* =========================
   SCROLL ANIMATION
========================= */

.service-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.service-fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1100px) {
    .services-hero .services-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .services-hero-text h1 {
        font-size: 62px;
    }

    .stack-intro h2,
    .service-card-content h2 {
        font-size: 48px;
    }

    .services-hero-image img {
        height: 560px;
    }

    .service-card-image img {
        height: 450px;
    }
}

.stack-spacer {
    height: 100vh;
}

@media (max-width: 900px) {
    .service-card {
        position: relative;

        top: unset;

        min-height: auto;

        margin-bottom: 40px;
    }

    .stack-spacer {
        display: none;
    }
}

@media (max-width: 700px) {
    .services-hero {
        min-height: auto;
        padding-top: 180px;
    }

    .services-hero-text {
        text-align: center;

        align-items: center;
    }

    .services-hero-text h1 {
        font-size: 46px;
    }

    .stack-intro h2,
    .service-card-content h2 {
        font-size: 36px;
    }

    .service-card {
        padding: 32px;
        min-height: auto;
    }

    .services-hero-image img {
        border-radius: 220px 220px 30px 30px;
    }

    .service-card-image img {
        height: 38vh;
        min-height: 240px;
        max-height: 320px;
    }

    .stack-section {
        padding: 60px 0 10px;
    }

    .services-hero-image img {
        height: 420px;
    }
}

/* =========================
   RECOMMEND SECTION
========================= */

.recommend-section {
    padding: 140px 8%;
    background: #1c1c1c;
}

.recommend-section .container {
    max-width: 1100px;
    margin: auto;
}

/* BOX */

.trust-box {
    border-top: 1px solid rgba(212, 175, 122, 0.3);
    border-bottom: 1px solid rgba(212, 175, 122, 0.3);
    padding: 70px 0;
    position: relative;
}

/* QUOTE */

.quote-icon {
    font-size: 90px;
    color: #c7a16a;
    line-height: 1;
    margin-bottom: 25px;
    font-family: serif;
}

/* TEXT */

.trust-text {
    font-size: 42px;
    line-height: 1.5;
    color: #f5f1eb;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 950px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .recommend-section {
        padding: 90px 5%;
    }

    .trust-box {
        padding: 50px 0;
    }

    .quote-icon {
        font-size: 65px;
    }

    .trust-text {
        font-size: 26px;
        line-height: 1.7;
    }
}

.process-section {
    background: #0d0d0d;
    padding: 120px 8%;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 120px;

    overflow: hidden;
}

/* LEFT SIDE */

.process-intro {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.eyebrow {
    color: #b8935f;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.process-intro h2 {
    font-size: 92px;
    line-height: 0.95;
    color: #f5f1eb;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    margin: 30px 0;
    max-width: 650px;
}

.process-intro p {
    color: #8f8f8f;
    font-size: 18px;
    line-height: 2;
    max-width: 480px;
}

/* RIGHT FLOW */

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ITEM */

.flow-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;

    transition: 0.5s ease;
}

.flow-item.offset {
    margin-left: 140px;
}

.flow-item:hover {
    transform: translateX(20px);
}

/* META */

.flow-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.flow-meta span {
    font-size: 120px;
    line-height: 0.8;
    color: rgba(184, 147, 95, 0.18);
    font-family: "Cormorant Garamond", serif;
}

.line {
    width: 1px;
    height: 120px;
    margin-top: 30px;
    background:
        linear-gradient(to bottom,
            rgba(212, 175, 55, 0.6),
            transparent);
}

/* CONTENT */

.flow-content {
    padding-top: 30px;
    max-width: 520px;
}

.flow-content h3 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 22px;
    line-height: 1.1;
}

.flow-content p {
    color: #9f9f9f;
    font-size: 17px;
    line-height: 2;
}

.flow-item {
    position: relative;
}

.flow-item::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top,
            rgba(212, 175, 55, 0.05),
            transparent 70%);

    opacity: 0;

    transition: var(--transition);
}

.flow-item:hover::before {
    opacity: 1;
}

/* FINAL ITEM */

.final .flow-meta span {
    color: rgba(184, 147, 95, 0.35);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .process-section {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .process-intro {
        position: relative;
        top: 0;
    }

    .process-intro h2 {
        font-size: 62px;
    }

    .flow-item.offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 110px 5%;
    }

    .process-intro h2 {
        font-size: 42px;
    }

    .flow-item {
        gap: 25px;
    }

    .flow-meta {
        min-width: 70px;
    }

    .flow-meta span {
        font-size: 70px;
    }

    .line {
        height: 120px;
    }

    .flow-content {
        padding-top: 10px;
    }

    .flow-content h3 {
        font-size: 28px;
    }

    .flow-content p {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 180px 8%;
    background:
        radial-gradient(circle at top, rgba(199, 161, 106, 0.08), transparent 40%),
        #0f0f0f;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;

    text-align: center;

    position: relative;
    overflow: hidden;
}

/* SOFT GLOW */

.cta-section::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    background: rgba(199, 161, 106, 0.05);

    border-radius: 50%;

    top: -300px;
    right: -200px;

    filter: blur(120px);
}

/* LINES */

.cta-line {
    width: 100%;
    height: 1px;

    background: linear-gradient(to right,
            transparent,
            rgba(199, 161, 106, 0.45),
            transparent);

    position: relative;
    z-index: 2;
}

/* CONTENT */

.cta-content {
    max-width: 1150px;
    position: relative;
    z-index: 2;
}

.cta-content span {
    color: #c7a16a;
    font-size: 13px;
    letter-spacing: 5px;
}

/* TITLE */

.cta-content h2 {
    font-size: 62px;
    line-height: 1.2;

    color: #f5f1eb;

    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    margin: 40px 0 35px;

    text-wrap: balance;
}

/* TEXT */

.cta-content p {
    color: #9f9f9f;
    font-size: 18px;
    line-height: 2;

    max-width: 760px;
    margin: auto auto 70px;
}

/* BUTTON */

.cta-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(199, 161, 106, 0.35);

    color: #f5f1eb;
    text-decoration: none;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);

    transition: 0.5s ease;

    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.02),
        0 10px 40px rgba(0, 0, 0, 0.35);
}

.cta-content a:hover {
    background: #c7a16a;
    color: #111;

    transform: scale(1.06);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 120px 5%;
    }

    .cta-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .cta-content a {
        width: 150px;
        height: 150px;

        font-size: 12px;
    }
}

/* =========================
   CLEANING LUXURY HERO
========================= */

.cleaning-luxury-hero {
    min-height: 50vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
        url("../images/cleaning-service.png");

    background-size: cover;
    background-position: center;

    position: relative;

    padding: 50px 8% 60px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

        position: relative;

    min-height: 100vh;

    padding:
    220px 40px 140px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.cleaning-luxury-hero::before {
    content: "";

    position: absolute;

    top: -20%;
    right: -10%;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(212, 175, 55, 0.12),
            transparent 70%);

    filter: blur(90px);

    opacity: .7;
}

/* OVERLAY */

.cleaning-luxury-overlay {
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at top left,
            rgba(199, 161, 106, 0.12),
            transparent 35%);
}

/* TOP */

.cleaning-luxury-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cleaning-luxury-top span {
    color: #fff;
    letter-spacing: 5px;
    font-size: 13px;
}

.cleaning-luxury-top p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

/* MAIN */

.cleaning-luxury-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: self-start;
}


/* LEFT */

.cleaning-luxury-left h1 {
    font-size: 90px;
    line-height: 1.2;

    color: #f5f1eb;

    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    max-width: 620px;
}

/* RIGHT */

.cleaning-luxury-right {
    padding-bottom: 20px;
}

.cleaning-luxury-right p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 19px;

    margin-bottom: 45px;
    max-width: 500px;

    line-height: 1.95;
}

/* BUTTONS */

.cleaning-luxury-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cleaning-luxury-primary {
    padding: 18px 36px;

    background: #c7a16a;
    color: #111;

    text-decoration: none;

    border-radius: 100px;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: 0.4s ease;
    text-align: center;
    box-shadow:
        0 14px 40px rgba(212, 175, 55, 0.16);
}

.cleaning-luxury-primary:hover {
    transform: translateY(-4px);
}

.cleaning-luxury-secondary {
    padding: 18px 36px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #fff;
    text-decoration: none;

    border-radius: 100px;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);

    transition: 0.4s ease;
}

.cleaning-luxury-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cleaning-luxury-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 44px;
    }

    .cleaning-luxury-left h1 {
        font-size: 82px;
    }
}

@media (max-width: 768px) {
    .cleaning-luxury-hero {
        padding: 35px 5% 40px;
        margin-top: 110px;
    }

    .cleaning-luxury-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cleaning-luxury-left h1 {
        font-size: 52px;
    }

    .cleaning-luxury-right p {
        font-size: 17px;
        line-height: 1.9;
    }

    .cleaning-luxury-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cleaning-luxury-strip {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* =========================
   CLEANING INTRO SECTION
========================= */

.cleaning-intro-section {
    padding: 180px 8%;
    background: #111111;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;

    align-items: start;

    position: relative;
}

.cleaning-intro-section::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 70%;
    height: 1px;

    background:
        linear-gradient(to right,
            transparent,
            rgba(212, 175, 55, 0.12),
            transparent);
}

/* LEFT */

.cleaning-intro-left {
    position: sticky;
    top: 120px;
}

.cleaning-intro-left span {
    color: #c7a16a;
    font-size: 13px;
    letter-spacing: 5px;
}

.cleaning-intro-left h2 {
    font-size: 90px;
    line-height: 1.2;

    color: #f5f1eb;

    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    margin-top: 30px;
}

/* RIGHT */

.cleaning-intro-right {
    padding-top: 90px;
}

.cleaning-intro-text {
    font-size: 24px;
    line-height: 2;

    color: #b8b8b8;

    margin-bottom: 45px;
}

/* LINK */

.cleaning-intro-link {
    color: #f5f1eb;
    text-decoration: none;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    position: relative;
    padding-bottom: 10px;
}

.cleaning-intro-link::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #c7a16a;

    transition: 0.4s ease;
}

.cleaning-intro-link:hover::after {
    width: 40%;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cleaning-intro-section {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .cleaning-intro-right {
        padding-top: 1px;
    }

    .cleaning-intro-left {
        position: relative;
        top: 0;
    }

    .cleaning-intro-left h2 {
        font-size: 62px;
    }
}

@media (max-width: 768px) {
    .cleaning-intro-section {
        padding: 50px 5%;
    }

    .cleaning-intro-left h2 {
        font-size: 26px;
    }

    .cleaning-intro-text {
        font-size: 18px;
        line-height: 1.9;
    }
}

/* =========================
   CLEANING SERVICES SECTION
========================= */

.cleaning-services-section {
    padding: 180px 8%;
    background: #111111;
}

/* HEADING */

.cleaning-services-heading {
    margin-bottom: 100px;
}

.cleaning-services-heading span {
    color: #c7a16a;
    font-size: 13px;
    letter-spacing: 5px;
}

.cleaning-services-heading h2 {
    font-size: 78px;
    line-height: 1;

    color: #f5f1eb;

    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    margin-top: 30px;
}

/* GRID */

.cleaning-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ITEM */

.cleaning-service-item {
    padding: 0 0 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
}


.cleaning-service-item:hover::before {
    opacity: 1;
}

/* TEXT */

.cleaning-service-item h3 {
    font-size: 34px;
    line-height: 1.2;

    color: #fff;

    font-weight: 400;

    margin-bottom: 25px;
}

.cleaning-service-item p {
    color: #a8a8a8;

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 35px;
}

/* BUTTON */

.cleaning-learn-btn {
    background: none;
    border: none;

    color: #c7a16a;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    padding: 0;

    position: relative;
}

.cleaning-learn-btn::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: #c7a16a;

    transition: 0.4s ease;
}

.cleaning-learn-btn:hover::after {
    width: 40%;
}

/* =========================
   MODAL
========================= */

.cleaning-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: 0.5s ease;

    background:
        rgba(12, 12, 12, 0.82);

    backdrop-filter: blur(22px);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.4);
}

/* ACTIVE */

.cleaning-modal.active {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */

.cleaning-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(10px);
}

/* CONTENT */

.cleaning-modal-content {
    position: absolute;

    left: 50%;
    bottom: -100px;

    transform: translateX(-50%);

    width: 92%;
    max-height: 90vh;

    background: #111111;

    border-radius: 30px 30px 0 0;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1fr;

    transition: 0.6s ease;

    overflow-y: auto;

    scroll-behavior: smooth;
}

/* ACTIVE ANIMATION */

.cleaning-modal.active .cleaning-modal-content {
    bottom: 0;
}

/* IMAGE */

.cleaning-modal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* TEXT */

.cleaning-modal-text {
    padding: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cleaning-modal-text span {
    color: #c7a16a;
    font-size: 13px;
    letter-spacing: 4px;
}

.cleaning-modal-text h2 {
    font-size: 72px;
    line-height: 1;

    color: #f5f1eb;

    font-family: "Cormorant Garamond", serif;
    font-weight: 900;

    margin: 35px 0;
}

.cleaning-modal-text p {
    color: #a8a8a8;

    font-size: 18px;
    line-height: 2;
}

/* CLOSE */

.cleaning-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 4px solid #ffc814;
    background: rgba(255, 255, 255, 0.04);
    color: #ffc300;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .cleaning-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cleaning-modal-content {
        grid-template-columns: 1fr;
        height: 95vh;
        overflow-y: auto;
    }

    .cleaning-modal-image {
        height: 400px;
    }

    .cleaning-modal-text {
        padding: 50px;
    }

    .cleaning-modal-text h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .cleaning-services-section {
        padding: 50px 5%;
    }

    .cleaning-services-grid {
        grid-template-columns: 1fr;
    }

    .cleaning-services-heading h2 {
        font-size: 42px;
    }

    .cleaning-service-item h3 {
        font-size: 28px;
    }

    .cleaning-modal-text {
        padding: 35px 25px;
    }

    .cleaning-modal-text h2 {
        font-size: 34px;
    }

    .cleaning-modal-text p {
        font-size: 16px;
        line-height: 1.9;
    }
}

@media (max-width: 550px) {
    .cleaning-services-heading h2 {
        font-size: 29px;
        line-height: 1.2;
    }
}

/* =========================
   MODAL FEATURES
========================= */

.cleaning-modal-features {
    margin-top: 60px;
}

/* TITLE */

.cleaning-modal-features h4 {
    color: #c7a16a;

    font-size: 38px;
    font-weight: 600;

    margin-bottom: 40px;
}

/* GRID */

.cleaning-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 80px;

    margin-bottom: 50px;
}

/* ITEM */

.cleaning-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* CHECK */

.cleaning-feature-item span {
    color: #f4c542;

    font-size: 18px;
    margin-top: -2px;
}

/* TEXT */

.cleaning-feature-item p {
    color: #e5e5e5 !important;

    font-size: 13px !important;
    line-height: 1.5 !important;

    margin: 0 !important;
}

/* BUTTONS */

.cleaning-modal-actions {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 20px;
}

/* PRIMARY */

.cleaning-modal-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 62px;
    padding: 0 34px;

    background: #0d6efd;

    border-radius: 14px;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    transition: 0.4s ease;
}

.cleaning-modal-primary:hover {
    background: #2c82ff;
}

/* SECONDARY */

.cleaning-modal-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 62px;
    padding: 0 34px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    background: rgba(255, 255, 255, 0.03);

    transition: 0.4s ease;
}

.cleaning-modal-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* MOBILE */

@media (max-width: 768px) {
    .cleaning-features-grid {
        gap: 22px;
    }

    .cleaning-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================
   SIGNATURE EXPERIENCE
========================= */

.signature-cleaning-section{
    position: relative;

    padding: 140px 40px;

    background:
linear-gradient(
    180deg,
    #161616 0%,
    #1A1A1A 100%
);

    overflow: hidden;
}

/* GOLD ATMOSPHERE */

.signature-cleaning-section::before{
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 800px;
    height: 800px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.08),
        transparent 70%
    );

    filter: blur(90px);
}

/* CONTAINER */

.signature-cleaning-container{
    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 90px;

    align-items: center;
}

/* IMAGE */

.signature-cleaning-image{
    position: relative;

    overflow: hidden;

    border-radius: 30px;
}

.signature-cleaning-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
    transform .8s ease;
}

.signature-cleaning-image:hover img{
    transform: scale(1.05);
}

/* IMAGE OVERLAY */

.signature-cleaning-image::after{
    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.28)
    );
}

/* CONTENT */

.signature-cleaning-content span{
    display: inline-block;

    margin-bottom: 22px;

    color: var(--gold);

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 600;
}

.signature-cleaning-content h2{
    font-size:
    clamp(46px,5vw,78px);

    line-height: 1.05;

    letter-spacing: -1px;

    margin-bottom: 28px;

    color: #fff;
}

.signature-cleaning-content p{
    max-width: 560px;

    font-size: 17px;

    line-height: 2;

    color: #B7B7B7;

    margin-bottom: 40px;
}

/* POINTS */

.signature-cleaning-points{
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.signature-cleaning-points div{
    display: flex;
    align-items: center;

    padding: 18px 22px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    border-radius: 18px;

    color: #EAEAEA;

    backdrop-filter: blur(12px);
}

/* MOBILE */

@media(max-width:992px){

    .signature-cleaning-container{
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

@media(max-width:768px){

    .signature-cleaning-section{
        padding: 100px 20px;
    }

    .signature-cleaning-content{
        text-align: center;
    }

    .signature-cleaning-content p{
        margin:
        0 auto 36px;
    }

}

/* =========================
   CLEANING FAQ SECTION
========================= */

.cleaning-faq-section{
    position: relative;

    padding: 140px 40px;

    background:
linear-gradient(
    180deg,
    #161616 0%,
    #1A1A1A 100%
);

    overflow: hidden;
}

/* ATMOSPHERE */

.cleaning-faq-section::before{
    content: "";

    position: absolute;

    top: 20%;
    right: -10%;

    width: 700px;
    height: 700px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.06),
        transparent 70%
    );

    filter: blur(90px);
}

/* CONTAINER */

.cleaning-faq-container{
    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
    .85fr 1.15fr;

    gap: 80px;
}

/* LEFT */

.cleaning-faq-left span{
    display: inline-block;

    margin-bottom: 22px;

    color: var(--gold);

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 600;
}

.cleaning-faq-left h2{
    font-size:
    clamp(44px,5vw,74px);

    line-height: 1.05;

    letter-spacing: -1px;

    margin-bottom: 28px;

    color: #fff;
}

.cleaning-faq-left p{
    max-width: 500px;

    font-size: 17px;

    line-height: 2;

    color: #B7B7B7;
}

/* FAQ ITEMS */

.cleaning-faq-right{
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.cleaning-faq-item{
    background:
    rgba(255,255,255,0.02);

    border:
    1px solid rgba(255,255,255,0.05);

    border-radius: 22px;

    overflow: hidden;

    transition: var(--transition);
}

.cleaning-faq-item:hover{
    border-color:
    rgba(212,175,55,0.18);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.24);
}

/* QUESTION */

.cleaning-faq-question{
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 28px 30px;

    background: transparent;

    border: none;

    color: #fff;

    text-align: left;

    cursor: pointer;
}

.cleaning-faq-question span{
    font-size: 18px;

    line-height: 1.5;
}

.cleaning-faq-question i{
    color: var(--gold);

    transition: .4s ease;
}

/* ANSWER */

.cleaning-faq-answer{
    max-height: 0;

    overflow: hidden;

    transition:
    max-height .5s ease,
    padding .4s ease;
}

.cleaning-faq-answer p{
    padding:
    0 30px 28px;

    color: #B7B7B7;

    line-height: 1.9;

    font-size: 15px;
}

/* ACTIVE */

.cleaning-faq-item.active .cleaning-faq-answer{
    max-height: 300px;
}

.cleaning-faq-item.active .cleaning-faq-question i{
    transform: rotate(45deg);
}

/* MOBILE */

@media(max-width:992px){

    .cleaning-faq-container{
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

@media(max-width:768px){

    .cleaning-faq-section{
        padding: 100px 20px;
    }

    .cleaning-faq-left{
        text-align: center;
    }

    .cleaning-faq-left p{
        margin: auto;
    }

}

/* =========================
   FINAL LUXURY CTA
========================= */

.cleaning-final-cta{
    position: relative;

    padding: 180px 20px;

    background:
radial-gradient(
    circle at top,
    rgba(212,175,55,0.08),
    transparent 40%
),
linear-gradient(
    180deg,
    #151515 0%,
    #101010 100%
);
    overflow: hidden;
}

/* ATMOSPHERIC GLOW */

.cleaning-final-cta::before{
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 900px;
    height: 900px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.10),
        transparent 70%
    );

    filter: blur(100px);

    opacity: .8;
}

/* TOP LINE */

.cleaning-final-cta::after{
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 70%;
    height: 1px;

    background:
    linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.14),
        transparent
    );
}

/* CONTAINER */

.cleaning-final-cta-container{
    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: auto;

    text-align: center;
}

/* LABEL */

.cleaning-final-cta span{
    display: inline-block;

    margin-bottom: 26px;

    color: var(--gold);

    font-size: 13px;

    letter-spacing: 4px;

    font-weight: 600;
}

/* HEADING */

.cleaning-final-cta h2{
    font-size:
    clamp(52px,6vw,92px);

    line-height: 1.02;

    letter-spacing: -2px;

    color: #fff;

    margin-bottom: 34px;
}

/* TEXT */

.cleaning-final-cta p{
    max-width: 760px;

    margin:
    0 auto 50px;

    font-size: 18px;

    line-height: 2;

    color: #B8B8B8;
}

/* BUTTONS */

.cleaning-final-cta-buttons{
    display: flex;
    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* PRIMARY */

.cleaning-final-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 34px;

    border-radius: 999px;

    background: var(--gold);

    color: #111;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);

    box-shadow:
    0 18px 45px rgba(212,175,55,0.16);
}

.cleaning-final-primary:hover{
    transform: translateY(-4px);

    box-shadow:
    0 24px 60px rgba(212,175,55,0.22);
}

/* SECONDARY */

.cleaning-final-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 34px;

    border-radius: 999px;

    border:
    1px solid rgba(255,255,255,0.08);

    background:
    rgba(255,255,255,0.03);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}

.cleaning-final-secondary:hover{
    transform: translateY(-4px);

    border-color:
    rgba(212,175,55,0.25);

    background:
    rgba(255,255,255,0.05);
}

/* MOBILE */

@media(max-width:768px){

    .cleaning-final-cta{
        padding: 120px 20px;
    }

    .cleaning-final-cta h2{
        line-height: 1.08;
    }

    .cleaning-final-cta p{
        font-size: 16px;
    }

}


.signature-cleaning-section,
.cleaning-faq-section,
.cleaning-final-cta{
    position: relative;
}

.signature-cleaning-section::after,
.cleaning-faq-section::after{
    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 72%;
    height: 1px;

    background:
    linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.10),
        transparent
    );
}

/* beauty/saloon page */

/* =========================
   SALON HERO
========================= */

.rezi-salon-hero {
    position: relative;

    height: 97vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0d0d0d;
    margin-top: 120px;
}

.rezi-salon-hero::before{
    content: "";

    position: absolute;

    top: -20%;
    right: -10%;

    width: 700px;
    height: 700px;

    background:
    radial-gradient(
        circle,
        rgba(255,192,203,0.10),
        transparent 70%
    );

    filter: blur(90px);

    opacity: .8;
}
/* =========================
   BACKGROUND IMAGE
========================= */

.rezi-salon-hero-image {
    position: absolute;

    inset: 0;
}

.rezi-salon-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================
   OVERLAY
========================= */

.rezi-salon-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.82) 20%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.7));
}

/* =========================
   CONTENT
========================= */

.rezi-salon-hero-content {
    position: relative;
    z-index: 10;

    max-width: 760px;

    padding: 140px 7%;
}

/* =========================
   TAG
========================= */

.rezi-salon-tag {
    display: inline-block;

    color: #d4aa74;

    font-size: 13px;
    letter-spacing: 3px;

    margin-bottom: 28px;
}

/* =========================
   TITLE
========================= */

.rezi-salon-hero-content h1 {
    color: #f8f1e8;

    font-size:
    clamp(58px,7vw,110px);

    line-height: .95;

    letter-spacing: -2px;

    font-weight: 600;

    margin-bottom: 35px;
}

/* =========================
   DESCRIPTION
========================= */

.rezi-salon-hero-content p {

    color: rgba(255, 255, 255, 0.78);

    max-width: 620px;

    margin:
    0 auto 40px;

    line-height: 2;

    font-size: 17px;
}
/* =========================
   BUTTON WRAPPER
========================= */

.rezi-salon-hero-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.rezi-salon-btn {
    height: 58px;

    padding: 0 34px;

    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 14px;
    letter-spacing: 0.5px;

    transition: 0.35s ease;
}

/* PRIMARY */

.rezi-salon-btn.primary {
    background: #d4aa74;

    color: #111111;
}

.rezi-salon-btn.primary:hover {
    transform: translateY(-3px);

    background: #e3bc89;
}

/* SECONDARY */

.rezi-salon-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.04);
}

.rezi-salon-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .rezi-salon-hero-content h1 {
        font-size: 82px;
    }
}

@media (max-width: 768px) {
    .rezi-salon-hero {
        min-height: auto;
    }

    .rezi-salon-overlay {
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.92),
                rgba(0, 0, 0, 0.65));
    }

    .rezi-salon-hero-content {
        padding: 120px 24px 80px;
    }

    .rezi-salon-hero-content h1 {
        font-size: 56px;

        line-height: 0.98;

        margin-bottom: 24px;
    }

    .rezi-salon-hero-content p {
        font-size: 15px;

        line-height: 1.9;
    }

    .rezi-salon-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .rezi-salon-btn {
        width: 100%;
    }
}

/* =========================
   EXPERIENCE SECTION
========================= */

.rezi-experience-section {
    padding: 120px 30px;

    background: linear-gradient(180deg, #0c0c0d, #111111);

    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.rezi-experience-container {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 40px;
}

/* =========================
   CONTENT
========================= */

.rezi-experience-content {
    max-width: 720px;
}

/* TAG */

.rezi-experience-tag {
    display: inline-block;

    color: #c89b67;

    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 24px;
}

/* =========================
   TITLE
========================= */

.rezi-experience-content h2 {
    color: #f5eee6;

    font-size: 92px;
    line-height: 0.95;

    font-family: "Cormorant Garamond", serif;

    font-weight: 300;

    margin-bottom: 35px;

    letter-spacing: -3px;
}

/* HIGHLIGHT */

.rezi-experience-content h2 span {
    color: #c89b67;
}

/* =========================
   DESCRIPTION
========================= */

.rezi-experience-content p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 2;

    max-width: 650px;

    margin-bottom: 45px;
}

/* =========================
   BUTTON
========================= */

.rezi-experience-btn {
    width: 180px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #d4aa74;

    color: black;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    transition: 0.35s ease;

    box-shadow: 0 15px 40px rgba(212, 170, 116, 0.3);
}

/* HOVER */

.rezi-experience-btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 20px 50px rgba(127, 0, 200, 0.4);
}

/* =========================
   IMAGE
========================= */

.rezi-experience-image {
    position: relative;

    display: flex;
    justify-content: center;
}

/* IMAGE */

.rezi-experience-image img {
    width: 100%;
    max-width: 950px;

    object-fit: contain;

    transform: translateX(40px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .rezi-experience-content h2 {
        font-size: 72px;
    }
}

@media (max-width: 768px) {
    .rezi-experience-section {
        padding: 80px 20px;
    }

    .rezi-experience-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .rezi-experience-content {
        text-align: center;

        margin: auto;
    }

    .rezi-experience-content h2 {
        font-size: 54px;

        line-height: 1;
    }

    .rezi-experience-content p {
        font-size: 15px;

        line-height: 1.9;

        margin-inline: auto;
    }

    .rezi-experience-image img {
        transform: none;
    }

    .rezi-experience-btn {
        width: 100%;
    }
}

/* =========================
   FLOATING BOOKING SECTION
========================= */

.rezi-floating-booking {
    position: relative;

    min-height: 100vh;

    background: linear-gradient(180deg, #0c0c0d, #111111);

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px 40px;
}

/* =========================
   RIGHT IMAGE
========================= */

.rezi-floating-image {
    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 48%;
    height: 78%;
}

/* IMAGE */

.rezi-floating-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 0;
}

/* DARK OVERLAY */

.rezi-floating-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

/* =========================
   CENTER CARD
========================= */

.rezi-floating-card {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 980px;

    background: linear-gradient(180deg, #72009d, #59007c);

    border-radius: 28px;

    padding: 48px;

    margin-left: 12%;

    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

/* =========================
   INNER CARD
========================= */

.rezi-floating-inner {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));

    border-radius: 22px;

    padding: 50px;
}

/* =========================
   TITLE
========================= */

.rezi-floating-inner h2 {
    color: #f8f1e8;

    text-align: center;

    font-size: 76px;
    line-height: 1;

    font-family: "Cormorant Garamond", serif;

    font-weight: 300;

    margin-bottom: 45px;
}

/* =========================
   GRID
========================= */

.rezi-floating-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

/* =========================
   ITEM
========================= */

.rezi-floating-item {
    height: 82px;

    background: #111418;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f3d7ba;

    font-size: 24px;

    font-family: "Cormorant Garamond", serif;

    cursor: pointer;

    transition: 0.35s ease;

    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* HOVER */

.rezi-floating-item:hover {
    transform: translateY(-4px);

    background: #171b20;

    border-color: rgba(255, 255, 255, 0.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .rezi-floating-card {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .rezi-floating-booking {
        min-height: auto;

        padding: 90px 20px;
    }

    .rezi-floating-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        transform: none;

        opacity: 0.2;
    }

    .rezi-floating-card {
        max-width: 100%;

        padding: 22px;
    }

    .rezi-floating-inner {
        padding: 32px 20px;
    }

    .rezi-floating-inner h2 {
        font-size: 48px;

        margin-bottom: 30px;
    }

    .rezi-floating-grid {
        grid-template-columns: 1fr;
    }

    .rezi-floating-item {
        height: 72px;

        font-size: 22px;
    }
}

/* =========================
   BOOKING SECTION
========================= */

.salon-booking-section {
    padding: 80px 24px;
}

/* =========================
   BOOKING SECTION
========================= */

.salon-booking-section {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;

    background: linear-gradient(180deg, #090909, #111111);
}

/* =========================
   BACKGROUND IMAGE
========================= */

.salon-booking-bg-image {
    position: absolute;

    top: 50%;
    right: -3%;

    transform: translateY(-50%);

    width: 55%;
    height: 82%;

    z-index: 1;
}

/* IMAGE */

.salon-booking-bg-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* OVERLAY */

.salon-booking-bg-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.75));
}

/* =========================
   CONTAINER
========================= */

.salon-booking-container {
    width: 70%;
    max-width: 1350px;

    margin: auto;

    background: linear-gradient(135deg,
            #2a220f 0%,
            #5f4d1d 20%,
            #a7893b 50%,
            #6e5a23 80%,
            #241d0d 100%);

    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);

    border-radius: 2px;

    padding: 30px 10px;

    overflow: hidden;

    position: relative;
    z-index: 10;
}

.salon-booking-content-wrapper {
    position: relative;
}

/* =========================
   INNER CONTAINER
========================= */
.inner-container {
    max-width: 90%;

    margin: 0;

    padding: 25px;

    background: linear-gradient(145deg,
            #141212 0%,
            #1d1818 35%,
            #2a2222 70%,
            #171414 100%);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 0px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.35);

    position: relative;

    overflow: hidden;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
    .salon-booking-bg-image {
        inset: 0;

        width: 100%;
        height: 100%;

        transform: none;

        opacity: 0.15;
    }

    .salon-booking-container {
        margin-left: 0;
        width: 100%;
    }

    .inner-container {
        max-width: 100%;
        margin: 0;
    }
}

/* =========================
   TITLE
========================= */

.salon-booking-title {
    color: #f1cb4e;

    text-align: center;

    font-size: 50px;
    line-height: 0.95;

    font-family: "Cormorant Garamond", serif;

    font-weight: 300;

    margin-bottom: 65px;

    letter-spacing: -2px;
}

/* =========================
   MAIN GRID
========================= */

.salon-booking-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

/* =========================
   MAIN CARD
========================= */

.salon-booking-card {
    position: relative;

    overflow: hidden;

    border-radius: 10px;

    padding: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.45s ease;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: linear-gradient(135deg,
            #4d3f16 0%,
            #7f6827 20%,
            #c7a649 50%,
            #8d732c 75%,
            #574716 100%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.35);
        
}

/* GLOSS EFFECT */

.salon-booking-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.22),
            transparent 45%);

    opacity: 0.55;

    pointer-events: none;
}

/* LIGHT SWEEP */

.salon-booking-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.28),
            transparent);

    transform: skewX(-25deg);

    transition: 0.8s ease;
}

/* HOVER */

.salon-booking-card:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow: 0 20px 55px rgba(212, 175, 55, 0.25);

    border-color: rgba(255, 255, 255, 0.16);
}

/* SWEEP MOVE */

.salon-booking-card:hover::after {
    left: 150%;
}

/* TEXT */

.salon-booking-card span {
    color: #fff;

    font-size: 20px;

    font-weight: 400;

    position: relative;
    z-index: 2;
}

/* =========================
   SUB SERVICES
========================= */

.salon-sub-services {
    display: none;

    animation: fadeUp 0.5s ease;
}

.salon-sub-services.active {
    display: block;
}

/* =========================
   SUB TOP
========================= */

.salon-sub-top {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: 16px;

    margin-bottom: 45px;
}

/* =========================
   BACK BUTTON
========================= */

#backBtn {
    background: transparent;
    border: none;

    color: #f1cb4e;

    font-size: 15px;
    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.3s ease;
}

#backBtn:hover {
    opacity: 0.7;
}

/* =========================
   SUB TITLE
========================= */

.salon-sub-top h3 {
    color: #f1cb4e;

    font-size: 16px;

    font-family: "Cormorant Garamond", serif;

    font-weight: 400;
}

/* =========================
   SUB GRID
========================= */

.salon-sub-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px;
}

/* =========================
   SUB CARD
========================= */

.salon-sub-card {
    overflow: hidden;

    border-radius: 4px;

    background: linear-gradient(180deg, #181818, #121212);

    cursor: pointer;

    transition: 0.35s ease;

    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* HOVER */

.salon-sub-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 155, 103, 0.16);
}

/* =========================
   SUB IMAGE
========================= */

.salon-sub-image {
    height: 150px;

    background: radial-gradient(circle, #262626, #161616);
    background-size: cover;
    background-repeat: no-repeat;
}

.salon-sub-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
    background-repeat: no-repeat;
}

.salon-sub-card:hover img {
    transform: scale(1.03);
}

/* =========================
   SUB CONTENT
========================= */

.salon-sub-content {
    height: calc(100% - 130px);
    padding: 24px 16px;
}

/* TEXT */

.salon-sub-content h4 {
    color: #f1cb4e;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
    align-self: flex-start;
    margin: 0 16px 0 0;
    padding: 0;
    border: none;
}

/* =========================
   DETAILS MODAL
========================= */

.salon-details-modal {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(6px);

    z-index: 999;

    padding: 24px;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;

    border-radius: 2px;
}

/* ACTIVE */

.salon-details-modal.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MODAL CONTENT
========================= */

.salon-details-content {
    width: 100%;
    max-width: 980px;

    margin: auto;


    overflow: hidden;

    position: relative;

    animation: modalFade 0.45s ease;

        background:
    rgba(14,14,14,0.84);

    backdrop-filter: blur(24px);

    border:
    1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 40px 120px rgba(0,0,0,0.42);
}

/* =========================
   CLOSE BUTTON
========================= */

.salon-details-close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: none;

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    font-size: 26px;

    cursor: pointer;

    z-index: 20;

    transition: 0.3s ease;
}

.salon-details-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================
   MODAL IMAGE
========================= */

.salon-details-image {
    height: 420px;
}

.salon-details-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================
   MODAL CARD
========================= */

.salon-details-card {
    width: calc(100% - 70px);

    margin: -70px auto 35px;

    background: linear-gradient(180deg, #181818, #131313);

    padding: 45px;

    position: relative;
    z-index: 10;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================
   MODAL ICON
========================= */

.salon-details-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: -90px auto 22px;

    border: 1px solid rgba(255, 255, 255, 0.05);
}

.salon-details-icon img {
    height: inherit;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: inherit;
}

/* =========================
   MODAL BACK
========================= */

.salon-details-back {
    background: transparent;
    border: none;

    color: #c89b67;

    cursor: pointer;

    font-size: 15px;

    margin-bottom: 18px;
}

/* =========================
   MODAL TITLE
========================= */

.salon-details-card h2 {
    color: #f1d5b3;

    font-size: 46px;
    line-height: 1.2;

    font-family: "Cormorant Garamond", serif;

    font-weight: 400;

    margin-bottom: 70px;
}

/* =========================
   SMALL TITLE
========================= */

.salon-details-card h4 {
    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    margin-bottom: 24px;

    letter-spacing: 1px;
}

/* =========================
   MODAL TEXT
========================= */

.salon-details-card p {
    max-width: 700px;

    margin: auto;

    color: #cfcfcf;

    font-size: 14px;
    line-height: 1.95;
    text-align: left;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .salon-booking-section {
        padding: 40px 14px;
    }

    .salon-booking-container {
        padding: 38px 1px;
        border-radius: 2px;
        background: transparent;
    }

    .salon-booking-title {
        font-size: 38px;
        margin-bottom: 38px;
        margin-top: 20px;
    }

    .salon-booking-card {
        justify-content: start;
        padding-left: 20px;
    }

    .salon-booking-grid,
    .salon-sub-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .salon-booking-card span {
        font-size: 18px;
    }

    .salon-sub-image {
        height: 150px;
    }

    .salon-sub-content h4 {
        font-size: 17px;
    }

    .salon-details-modal {
        padding: 14px;
    }

    .salon-details-image {
        height: 230px;
    }

    .salon-details-card {
        width: calc(100% - 24px);

        padding: 32px 20px;

        margin: -45px auto 20px;
    }

    .salon-details-card h2 {
        font-size: 28px;
    }

    .salon-details-card p {
        font-size: 14px;
        line-height: 1.85;
    }

    .salon-booking-section {
        display: none;
    }

    .salon-booking-section.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .inner-container {
        padding: 10px;
    }
}

/* =========================
   BEAUTY SIGNATURE SECTION
========================= */

.beauty-signature-section{
    position: relative;

    padding: 150px 40px;

    background:
    linear-gradient(
        180deg,
        #141414 0%,
        #1A1A1A 100%
    );

    overflow: hidden;
}

/* SOFT PINK GLOW */

.beauty-signature-section::before{
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 850px;
    height: 850px;

    background:
    radial-gradient(
        circle,
        rgba(255,192,203,0.08),
        transparent 70%
    );

    filter: blur(100px);
}

/* CONTAINER */

.beauty-signature-container{
    position: relative;

    z-index: 2;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 90px;

    align-items: center;
}

/* IMAGE */

.beauty-signature-image{
    position: relative;

    overflow: hidden;

    border-radius: 30px;
}

.beauty-signature-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
    transform .8s ease;
}

.beauty-signature-image:hover img{
    transform: scale(1.05);
}

.beauty-signature-image::after{
    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,0.04),
        rgba(0,0,0,0.28)
    );
}

/* CONTENT */

.beauty-signature-content span{
    display: inline-block;

    margin-bottom: 24px;

    color: #C9A96E;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 600;
}

.beauty-signature-content h2{
    font-size:
    clamp(48px,5vw,82px);

    line-height: 1.02;

    letter-spacing: -1px;

    margin-bottom: 30px;

    color: #fff;
}

.beauty-signature-content p{
    max-width: 560px;

    font-size: 17px;

    line-height: 2;

    color: #C4C4C4;

    margin-bottom: 40px;
}

/* POINTS */

.beauty-signature-points{
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.beauty-signature-points div{
    padding: 18px 22px;

    border-radius: 18px;

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    color: #F5F5F5;

    backdrop-filter: blur(12px);
}

/* MOBILE */

@media(max-width:992px){

    .beauty-signature-container{
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

@media(max-width:768px){

    .beauty-signature-section{
        padding: 100px 20px;
    }

    .beauty-signature-content{
        text-align: center;
    }

    .beauty-signature-content p{
        margin:
        0 auto 36px;
    }

}

/* =========================
   WHY CHOOSE SECTION
========================= */

.beauty-why-section {
    padding: 140px 20px;

    background: linear-gradient(135deg, #121212, #1a1a1a);
}

/* CONTAINER */

.beauty-why-container {
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* =========================
   IMAGE
========================= */

.beauty-why-image {
    position: relative;

    overflow: hidden;

    border-radius: 18px;
}

/* IMAGE */

.beauty-why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 18px;

    transition: 0.6s ease;
}

/* HOVER */

.beauty-why-image:hover img {
    transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.beauty-why-content h2 {
    color: #f5f1eb;

    font-size: 62px;

    margin-bottom: 60px;

    font-family: "Cormorant Garamond", serif;

    line-height: 1;
}

/* =========================
   ITEM
========================= */

.beauty-why-item {
    display: flex;

    gap: 24px;

    margin-bottom: 50px;
        padding: 30px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.06);
}

/* ICON */

.beauty-why-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 5px;
}

/* SVG */

.beauty-why-icon svg {
    width: 28px;
    height: 28px;

    stroke: #fff;
}

/* COLORS */

.beauty-why-icon.purple {
    background: linear-gradient(135deg, #d4af37, #f1d77a);
}

.beauty-why-icon.pink {
    background: linear-gradient(135deg, #d4af37, #f1d77a);
}

.beauty-why-icon.gold {
    background: linear-gradient(135deg, #d4af37, #f1d77a);
}

/* TITLE */

.beauty-why-text h3 {
    color: #f5f1eb;

    font-size: 38px;

    margin-bottom: 18px;

    line-height: 1.1;

    font-family: "Cormorant Garamond", serif;
}

/* TEXT */

.beauty-why-text p {
    color: #b8b8b8;

    font-size: 17px;
    max-width: 520px;

    line-height: 1.95;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .beauty-why-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }
}

@media (max-width: 768px) {
    .beauty-why-section {
        padding: 100px 20px;
    }

    .beauty-why-content h2 {
        font-size: 46px;

        margin-bottom: 45px;
    }

    .beauty-why-text h3 {
        font-size: 28px;
    }

    .beauty-why-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .beauty-why-item {
        flex-direction: column;
    }

    .beauty-why-content h2 {
        font-size: 38px;
    }
}

/* =========================
   BEAUTY QUOTE SECTION
========================= */

.beauty-quote-section{
    position: relative;

    padding: 180px 20px;

    background:
    linear-gradient(
        180deg,
        #151515 0%,
        #101010 100%
    );

    overflow: hidden;
}

/* PINK ATMOSPHERE */

.beauty-quote-section::before{
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 900px;
    height: 900px;

    background:
    radial-gradient(
        circle,
        rgba(255,192,203,0.08),
        transparent 70%
    );

    filter: blur(100px);
}

/* QUOTE */

.beauty-quote-container{
    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: auto;

    text-align: center;
}

.beauty-quote-container blockquote{
    font-size:
    clamp(44px,5vw,82px);

    line-height: 1.08;

    letter-spacing: -1px;

    color: #fff;
}


/* =========================
   INTERIOR PAGE
========================= */

.rezi-interior-hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b0b0c;
}

.rezi-interior-hero::before{
    content: "";

    position: absolute;

    top: -15%;
    right: -10%;

    width: 800px;
    height: 800px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.06),
        transparent 70%
    );

    filter: blur(100px);

    opacity: .8;
}

/* BACKGROUND */

.rezi-interior-bg {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.rezi-interior-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.03);
}

/* OVERLAY */

.rezi-interior-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.68));
}

/* CONTENT */

.rezi-interior-content {
    position: relative;

    z-index: 5;

    width: 92%;
    max-width: 1100px;

    text-align: center;

    padding: 80px 60px;

    background: rgba(15, 15, 15, 0.48);

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

/* SMALL TEXT */

.rezi-interior-small {
    display: inline-block;

    margin-bottom: 24px;

    color: #d4af5f;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
}

/* TITLE */

.rezi-interior-content h1 {
    color: #f5f1eb;

    font-size: 48px;
    line-height: 1.04;

    font-weight: 600;

    margin-bottom: 34px;

    letter-spacing: -2px;
}

/* TEXT */

.rezi-interior-content p {
    width: 100%;
    max-width: 860px;

    margin: 0 auto 42px;

    color: #b8b8b8;

    font-size: 20px;
    line-height: 1.9;
}

/* BUTTONS */

.rezi-interior-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

.rezi-interior-btn {
    min-width: 210px;

    padding: 18px 34px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.35s ease;
}

/* PRIMARY */

.rezi-interior-btn.primary {
    background: #d4af5f;

    color: #111;

    border: 1px solid #d4af5f;
}

.rezi-interior-btn.primary:hover {
    background: transparent;

    color: #f5f1eb;
}

/* SECONDARY */

.rezi-interior-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #f5f1eb;

    background: rgba(255, 255, 255, 0.03);
}

.rezi-interior-btn.secondary:hover {
    border-color: #d4af5f;

    color: #d4af5f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .rezi-interior-content {
        padding: 70px 40px;
    }

    .rezi-interior-content h1 {
        font-size: 62px;
    }

    .rezi-interior-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .rezi-interior-hero {
        min-height: auto;

        padding: 120px 0 90px;
    }

    .rezi-interior-content {
        width: 92%;

        padding: 60px 26px;
    }

    .rezi-interior-content h1 {
        font-size: 46px;

        line-height: 1.1;
    }

    .rezi-interior-content p {
        font-size: 16px;

        line-height: 1.8;
    }

    .rezi-interior-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rezi-interior-content {
        padding: 50px 22px;
    }

    .rezi-interior-small {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .rezi-interior-content h1 {
        font-size: 36px;
    }

    .rezi-interior-content p {
        font-size: 15px;
    }
}

/* =========================
   INTERIOR SERVICES
========================= */

.rezi-interior-services {
    width: 100%;

    background: #0b0b0c;
}

/* ROW */

.rezi-interior-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 720px;
}

/* =========================
   DEFAULT LAYOUT
   IMAGE LEFT
   TEXT RIGHT
========================= */

.rezi-interior-image {
    order: 1;

    position: relative;

    overflow: hidden;
}

.rezi-interior-text {
    order: 2;
}

/* =========================
   REVERSE LAYOUT
   TEXT LEFT
   IMAGE RIGHT
========================= */

.rezi-interior-row.reverse .rezi-interior-text {
    order: 1;
}

.rezi-interior-row.reverse .rezi-interior-image {
    order: 2;
}

/* =========================
   IMAGE
========================= */

.rezi-interior-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}

.rezi-interior-row:hover .rezi-interior-image img {
    transform: scale(1.05);
}

/* =========================
   TEXT SIDE
========================= */

.rezi-interior-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 90px;

    background: linear-gradient(180deg, #111214 0%, #0b0b0c 100%);
}

/* SMALL TITLE */

.rezi-interior-text span {
    display: inline-block;

    margin-bottom: 22px;

    color: #d4af5f;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* HEADING */

.rezi-interior-text h2 {
    color: #f5f1eb;

    font-size: 56px;
    line-height: 1.08;

    font-weight: 600;

    margin-bottom: 30px;
}

/* PARAGRAPH */

.rezi-interior-text p {
    color: #9e9e9e;

    font-size: 17px;
    line-height: 2;

    max-width: 620px;

    margin-bottom: 42px;
}

/* BUTTON */

.rezi-interior-text a {
    width: fit-content;

    padding: 16px 30px;

    text-decoration: none;

    border: 1px solid rgba(212, 175, 95, 0.35);

    color: #d4af5f;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

.rezi-interior-text a:hover {
    background: #d4af5f;

    color: #111;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .rezi-interior-row {
        min-height: auto;
    }

    .rezi-interior-text {
        padding: 70px 50px;
    }

    .rezi-interior-text h2 {
        font-size: 42px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .rezi-interior-row {
        grid-template-columns: 1fr;
    }

    /* RESET ORDER */

    .rezi-interior-image,
    .rezi-interior-text,
    .rezi-interior-row.reverse .rezi-interior-image,
    .rezi-interior-row.reverse .rezi-interior-text {
        order: unset;
    }

    .rezi-interior-image {
        height: 420px;
    }

    .rezi-interior-text {
        padding: 60px 28px;
    }

    .rezi-interior-text h2 {
        font-size: 36px;
    }

    .rezi-interior-text p {
        font-size: 15px;

        line-height: 1.9;
    }

    .rezi-interior-text a {
        width: 100%;

        text-align: center;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .rezi-interior-image {
        height: 320px;
    }

    .rezi-interior-text {
        padding: 45px 22px;
    }

    .rezi-interior-text h2 {
        font-size: 30px;
    }
}

/* =========================
   SHOWCASE SECTION
========================= */

.rezi-showcase-section {
    width: 100%;

    padding: 120px 6%;

    background: #0b0b0c;
}

/* =========================
   TOP
========================= */

.rezi-showcase-top {
    text-align: center;

    max-width: 900px;

    margin: 0 auto 80px;
}

.rezi-showcase-top span {
    display: inline-block;

    margin-bottom: 20px;

    color: #d4af5f;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.rezi-showcase-top h2 {
    color: #f5f1eb;

    font-size: 64px;
    line-height: 1.08;

    margin-bottom: 28px;

    font-weight: 600;
}

.rezi-showcase-top p {
    color: #9e9e9e;

    font-size: 18px;
    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* =========================
   GRID
========================= */

.rezi-showcase-grid {
    display: grid;

    grid-template-columns: repeat(12, 1fr);

    gap: 24px;
}

/* ITEM */

.rezi-showcase-item {
    position: relative;

    overflow: hidden;

    border-radius: 4px;

    min-height: 420px;

    background: #111;
}

/* IMAGE */

.rezi-showcase-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}

.rezi-showcase-item:hover img {
    transform: scale(1.06);
}

/* OVERLAY */

.rezi-showcase-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 35px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.15),
            transparent);
}

/* TITLE */

.rezi-showcase-overlay h3 {
    color: #fff;

    font-size: 28px;
    font-weight: 600;

    margin-bottom: 10px;
}

/* SMALL */

.rezi-showcase-overlay span {
    color: #d4af5f;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* =========================
   GRID SIZES
========================= */

.rezi-showcase-item.large {
    grid-column: span 7;

    min-height: 700px;
}

.rezi-showcase-item.wide {
    grid-column: span 7;
}

.rezi-showcase-item:not(.large):not(.wide) {
    grid-column: span 5;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .rezi-showcase-top h2 {
        font-size: 48px;
    }

    .rezi-showcase-item.large {
        min-height: 560px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .rezi-showcase-section {
        padding: 90px 5%;
    }

    .rezi-showcase-top {
        margin-bottom: 55px;
    }

    .rezi-showcase-top h2 {
        font-size: 36px;
    }

    .rezi-showcase-top p {
        font-size: 15px;
    }

    .rezi-showcase-grid {
        grid-template-columns: 1fr;
    }

    .rezi-showcase-item,
    .rezi-showcase-item.large,
    .rezi-showcase-item.wide {
        grid-column: auto;

        min-height: 340px;
    }

    .rezi-showcase-overlay {
        padding: 24px;
    }

    .rezi-showcase-overlay h3 {
        font-size: 22px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .rezi-showcase-top h2 {
        font-size: 30px;
    }

    .rezi-showcase-item {
        min-height: 300px;
    }
}

/* =========================
   PROCESS SECTION
========================= */

.rezi-process-section {
    width: 100%;

    padding: 120px 6%;

    background: linear-gradient(180deg, #0b0b0c, #111111);
}

/* =========================
   TOP
========================= */

.rezi-process-top {
    text-align: center;

    max-width: 860px;

    margin: 0 auto 80px;
}

/* SMALL */

.rezi-process-top span {
    display: inline-block;

    margin-bottom: 18px;

    color: #d4af5f;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* TITLE */

.rezi-process-top h2 {
    color: #f5f1eb;

    font-size: 62px;
    line-height: 1.08;

    margin-bottom: 26px;

    font-weight: 600;
}

/* TEXT */

.rezi-process-top p {
    color: #9e9e9e;

    font-size: 18px;
    line-height: 1.9;

    max-width: 760px;

    margin: auto;
}

/* =========================
   GRID
========================= */

.rezi-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
}

/* =========================
   CARD
========================= */

.rezi-process-card {
    position: relative;

    padding: 50px 38px;

    background: linear-gradient(180deg, #151515, #101010);

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.35s ease;
}

/* HOVER */

.rezi-process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(212, 175, 95, 0.25);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* NUMBER */

.rezi-process-number {
    font-size: 62px;
    font-weight: 700;

    color: rgba(212, 175, 95, 0.15);

    margin-bottom: 35px;

    line-height: 1;
}

/* TITLE */

.rezi-process-card h3 {
    color: #f5f1eb;

    font-size: 28px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* TEXT */

.rezi-process-card p {
    color: #9e9e9e;

    font-size: 15px;
    line-height: 1.95;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .rezi-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .rezi-process-section {
        padding: 90px 5%;
    }

    .rezi-process-top {
        margin-bottom: 55px;
    }

    .rezi-process-top h2 {
        font-size: 40px;
    }

    .rezi-process-top p {
        font-size: 15px;
    }

    .rezi-process-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .rezi-process-card {
        padding: 40px 28px;
    }

    .rezi-process-number {
        font-size: 50px;
    }

    .rezi-process-card h3 {
        font-size: 24px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .rezi-process-top h2 {
        font-size: 32px;
    }
}

/* =========================
   INTERIOR CTA
========================= */

.rezi-interior-cta {
    position: relative;

    width: 100%;

    min-height: 700px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 6%;

    background: #0b0b0c;
}

/* =========================
   BACKGROUND
========================= */

.rezi-interior-cta-bg {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.rezi-interior-cta-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transform: scale(1.03);
}

/* =========================
   OVERLAY
========================= */

.rezi-interior-cta-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78));
}

/* =========================
   CONTENT
========================= */

.rezi-interior-cta-content {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 950px;

    text-align: center;
}

/* SMALL */

.rezi-interior-cta-content span {
    display: inline-block;

    margin-bottom: 22px;

    color: #d4af5f;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* TITLE */

.rezi-interior-cta-content h2 {
    color: #f5f1eb;

    font-size: 74px;
    line-height: 1.05;

    font-weight: 600;

    margin-bottom: 30px;
}

/* TEXT */

.rezi-interior-cta-content p {
    color: #b4b4b4;

    font-size: 18px;
    line-height: 1.95;

    max-width: 760px;

    margin: 0 auto 42px;
}

/* BUTTONS */

.rezi-interior-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

/* BUTTON */

.rezi-cta-btn {
    min-width: 220px;

    padding: 18px 34px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: 0.35s ease;
}

/* PRIMARY */

.rezi-cta-btn.primary {
    background: #d4af5f;

    color: #111;

    border: 1px solid #d4af5f;
}

.rezi-cta-btn.primary:hover {
    background: transparent;

    color: #f5f1eb;
}

/* SECONDARY */

.rezi-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #f5f1eb;
}

.rezi-cta-btn.secondary:hover {
    border-color: #d4af5f;

    color: #d4af5f;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .rezi-interior-cta-content h2 {
        font-size: 58px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .rezi-interior-cta {
        min-height: auto;

        padding: 100px 5%;
    }

    .rezi-interior-cta-content h2 {
        font-size: 42px;
    }

    .rezi-interior-cta-content p {
        font-size: 15px;

        line-height: 1.9;
    }

    .rezi-cta-btn {
        width: 100%;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .rezi-interior-cta-content h2 {
        font-size: 34px;
    }
}