/* =========================================================
   MS SOFA REPAIRING
   PREMIUM HEADER
   Cream + Espresso + Mocha + Champagne Gold
========================================================= */

:root {
    --cream: #F7F3ED;
    --espresso: #3B2723;
    --espresso-dark: #291B18;
    --mocha: #8B5E3C;
    --gold: #C9A66B;
    --white: #FFFFFF;
    --text: #252525;
}


/* =========================
   HEADER
========================= */

.main-header {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(247, 243, 237, 0.97);

    border-bottom: 1px solid rgba(59, 39, 35, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: all 0.3s ease;
}


/* Header after scrolling */

.main-header.scrolled {
    box-shadow:
        0 8px 30px rgba(59, 39, 35, 0.12);
}


/* =========================
   HEADER INNER
========================= */

.header-inner {
    width: min(1240px, 92%);

    min-height: 88px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 220px 1fr 220px;

    align-items: center;

    gap: 25px;
}


/* =========================
   LOGO
========================= */

.brand-logo {
    display: inline-flex;

    align-items: center;

    width: fit-content;
}

.brand-logo img {
    display: block;

    width: 205px;

    height: auto;

    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.02);
}


/* =========================
   CENTER NAVIGATION
========================= */

.header-nav {
    display: flex;

    justify-content: center;

    align-items: center;
}

.header-nav ul {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.header-nav li {
    position: relative;
}

.header-nav a {
    position: relative;

    display: inline-block;

    padding: 9px 0;

    color: var(--espresso);

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;
}


/* Gold underline */

.header-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--gold);

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


/* Hover */

.header-nav a:hover {
    color: var(--mocha);
}

.header-nav a:hover::after {
    width: 100%;
}


/* Active */

.header-nav a.active {
    color: var(--mocha);
}

.header-nav a.active::after {
    width: 100%;
}


/* =========================
   RIGHT ACTIONS
========================= */

.header-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;
}


/* Common action */

.header-call,
.header-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 43px;

    padding: 0 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        all 0.3s ease;
}


/* =========================
   CALL
========================= */

.header-call {
    background: var(--espresso);

    color: var(--white);

    border: 1px solid var(--espresso);
}

.header-call:hover {
    background: var(--mocha);

    border-color: var(--mocha);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================
   WHATSAPP
========================= */

.header-whatsapp {
    background: transparent;

    color: var(--espresso);

    border: 1px solid var(--gold);
}

.header-whatsapp:hover {
    background: var(--gold);

    color: var(--espresso-dark);

    transform: translateY(-2px);
}


/* Icons */

.action-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    line-height: 1;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    position: relative;

    border: none;

    border-radius: 10px;

    background: var(--espresso);

    cursor: pointer;

    padding: 0;
}


/* Hamburger */

.mobile-menu-btn span {
    position: absolute;

    left: 50%;

    width: 21px;
    height: 2px;

    background: var(--white);

    border-radius: 10px;

    transform: translateX(-50%);

    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 14px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 21px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}


/* =========================
   HAMBURGER → CLOSE
========================= */

.mobile-menu-btn.active span:nth-child(1) {
    top: 21px;

    transform:
        translateX(-50%)
        rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 21px;

    transform:
        translateX(-50%)
        rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        grid-template-columns: 190px 1fr 190px;

        gap: 15px;
    }

    .brand-logo img {
        width: 175px;
    }

    .header-nav ul {
        gap: 22px;
    }

    .header-nav a {
        font-size: 13px;
    }

    .header-call,
    .header-whatsapp {
        padding: 0 11px;

        font-size: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .header-inner {

        width: 92%;

        min-height: 72px;

        display: flex;

        justify-content: space-between;

        gap: 12px;
    }


    /* Logo */

    .brand-logo {
        margin-right: auto;
    }

    .brand-logo img {
        width: 155px;
    }


    /* Hide desktop navigation */

    .header-nav {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        padding: 10px 0 18px;

        background: var(--cream);

        border-bottom:
            1px solid rgba(59, 39, 35, 0.12);

        box-shadow:
            0 15px 35px rgba(59, 39, 35, 0.12);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    /* Open menu */

    .header-nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .header-nav ul {

        width: 92%;

        margin: 0 auto;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .header-nav li {

        border-bottom:
            1px solid rgba(59, 39, 35, 0.09);
    }


    .header-nav li:last-child {

        border-bottom: none;
    }


    .header-nav a {

        display: block;

        width: 100%;

        padding: 14px 5px;

        font-size: 15px;
    }


    .header-nav a::after {

        display: none;
    }


    .header-nav a:hover {

        padding-left: 10px;

        color: var(--mocha);
    }


    /* =========================
       ACTION BUTTONS
    ========================= */

    .header-actions {

        gap: 7px;
    }


    .header-call,
    .header-whatsapp {

        width: 40px;
        height: 40px;

        min-height: 40px;

        padding: 0;

        border-radius: 50%;

        font-size: 0;
    }


    .action-icon {

        font-size: 15px;
    }


    /* Hamburger */

    .mobile-menu-btn {

        display: block;

        flex-shrink: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-inner {

        width: 94%;

        min-height: 68px;

        gap: 6px;
    }


    .brand-logo img {

        width: 135px;
    }


    .header-actions {

        gap: 5px;
    }


    .header-call,
    .header-whatsapp {

        width: 37px;
        height: 37px;

        min-height: 37px;
    }


    .action-icon {

        font-size: 14px;
    }


    .mobile-menu-btn {

        width: 40px;
        height: 40px;
    }

}

/* =========================================================
   PREMIUM HERO SECTION
   MS SOFA REPAIRING
========================================================= */

.hero-section {

    position: relative;

    min-height: calc(100vh - 88px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--cream) 0%,
            #F3ECE3 55%,
            #EDE2D5 100%
        );

    isolation: isolate;
}


/* =========================
   BACKGROUND DECORATION
========================= */

.hero-bg-shape {

    position: absolute;

    z-index: -1;

    pointer-events: none;

    border-radius: 50%;
}


.hero-shape-one {

    width: 520px;

    height: 520px;

    right: -180px;

    top: -230px;

    border: 1px solid
        rgba(201, 166, 107, 0.28);
}


.hero-shape-two {

    width: 380px;

    height: 380px;

    left: -220px;

    bottom: -230px;

    background:
        rgba(139, 94, 60, 0.05);
}


/* =========================
   CONTAINER
========================= */

.hero-container {

    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 75px 0 85px;

    display: grid;

    grid-template-columns:
        1fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {

    max-width: 650px;

    position: relative;

    z-index: 2;
}


/* =========================
   EYEBROW
========================= */

.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--mocha);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.hero-eyebrow::before {

    content: "";

    width: 28px;

    height: 2px;

    background: var(--gold);

    border-radius: 10px;
}


/* =========================
   TITLE LINE
========================= */

.hero-title-line {

    width: 55px;

    height: 3px;

    background: var(--gold);

    margin: 14px 0 20px;

    border-radius: 20px;
}


/* =========================
   H1
========================= */

.hero-content h1 {

    margin: 0 0 24px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        43px,
        5vw,
        67px
    );

    line-height: 1.08;

    letter-spacing: -1.5px;

    color: var(--espresso);

    font-weight: 700;
}


.hero-content h1 span {

    display: block;

    color: var(--mocha);
}


/* =========================
   DESCRIPTION
========================= */

.hero-description {

    max-width: 600px;

    margin-bottom: 30px;

    color: #6B625D;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

    margin-bottom: 38px;
}


.hero-btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 25px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}


/* Primary */

.hero-btn-primary {

    background: var(--espresso);

    color: var(--white);

    border: 1px solid var(--espresso);

    box-shadow:
        0 8px 22px
        rgba(59, 39, 35, 0.16);
}


.hero-btn-primary:hover {

    background: var(--mocha);

    border-color: var(--mocha);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(59, 39, 35, 0.20);
}


/* Secondary */

.hero-btn-secondary {

    background: transparent;

    color: var(--espresso);

    border: 1px solid var(--gold);
}


.hero-btn-secondary:hover {

    background: var(--gold);

    color: var(--espresso-dark);

    transform: translateY(-3px);
}


.btn-icon {

    font-size: 15px;

    line-height: 1;
}


/* =========================
   TRUST ITEMS
========================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

    padding-top: 3px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 9px;
}


.trust-icon {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    color: var(--espresso);

    font-size: 13px;

    font-weight: 900;
}


.trust-item strong {

    display: block;

    color: var(--espresso);

    font-size: 12px;

    line-height: 1.3;
}


.trust-item small {

    display: block;

    margin-top: 2px;

    color: #766B65;

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    width: 100%;

    max-width: 570px;

    justify-self: end;
}


/* =========================
   IMAGE FRAME
========================= */

.hero-image-frame {

    position: relative;

    padding: 14px;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid
        rgba(201, 166, 107, 0.45);

    border-radius: 24px;

    box-shadow:
        0 25px 65px
        rgba(59, 39, 35, 0.17);

    z-index: 2;
}


.hero-image-frame img {

    width: 100%;

    height: 560px;

    object-fit: cover;

    display: block;

    border-radius: 17px;
}


/* =========================
   GOLD ACCENT
========================= */

.hero-image-accent {

    position: absolute;

    width: 100px;

    height: 100px;

    top: -22px;

    right: -22px;

    border-top: 3px solid var(--gold);

    border-right: 3px solid var(--gold);

    border-radius: 0 25px 0 0;

    z-index: -1;
}


/* =========================
   FLOATING CARD
========================= */

.hero-floating-card {

    position: absolute;

    left: -35px;

    bottom: 40px;

    min-width: 205px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid
        rgba(201, 166, 107, 0.35);

    border-radius: 13px;

    box-shadow:
        0 15px 35px
        rgba(59, 39, 35, 0.14);

    z-index: 5;
}


.floating-icon {

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

    color: var(--espresso);

    font-size: 17px;
}


.floating-content strong {

    display: block;

    color: var(--espresso);

    font-size: 14px;
}


.floating-content span {

    display: block;

    color: #766B65;

    font-size: 11px;

    margin-top: 2px;
}


/* =========================
   GOLD CIRCLE
========================= */

.hero-gold-circle {

    position: absolute;

    right: -45px;

    bottom: -45px;

    width: 125px;

    height: 125px;

    border-radius: 50%;

    border: 2px solid
        rgba(201, 166, 107, 0.55);

    z-index: 1;
}


/* =========================
   SCROLL LINK
========================= */

.hero-scroll {

    position: absolute;

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--mocha);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    opacity: 0.85;
}


.hero-scroll:hover {

    color: var(--espresso);

    bottom: 23px;
}


.scroll-arrow {

    font-size: 16px;

    animation:
        scrollDown 1.6s infinite;
}


@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero-container {

        grid-template-columns:
            1fr 0.9fr;

        gap: 40px;
    }


    .hero-content h1 {

        font-size: 48px;
    }


    .hero-image-frame img {

        height: 480px;
    }


    .hero-floating-card {

        left: -20px;
    }


    .hero-trust {

        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .hero-section {

        min-height: auto;
    }


    .hero-container {

        width: 92%;

        padding: 60px 0 75px;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .hero-content {

        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .hero-eyebrow {

        justify-content: center;
    }


    .hero-title-line {

        margin-left: auto;

        margin-right: auto;
    }


    .hero-content h1 {

        font-size: clamp(
            38px,
            9vw,
            52px
        );

        letter-spacing: -0.8px;
    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

        font-size: 15px;
    }


    .hero-buttons {

        justify-content: center;

        margin-bottom: 30px;
    }


    .hero-trust {

        justify-content: center;

        gap: 15px 20px;
    }


    .hero-visual {

        max-width: 620px;

        width: 90%;

        margin: 0 auto;
    }


    .hero-image-frame img {

        height: 460px;
    }


    .hero-floating-card {

        left: -15px;

        bottom: 25px;
    }


    .hero-scroll {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-container {

        width: 94%;

        padding: 48px 0 55px;

        gap: 35px;
    }


    .hero-content h1 {

        font-size: 36px;

        line-height: 1.12;
    }


    .hero-description {

        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .hero-btn {

        width: 100%;
    }


    .hero-trust {

        display: grid;

        grid-template-columns: 1fr;

        text-align: left;

        width: fit-content;

        margin: 0 auto;
    }


    .hero-image-frame {

        padding: 8px;

        border-radius: 17px;
    }


    .hero-image-frame img {

        height: 360px;

        border-radius: 12px;
    }


    .hero-floating-card {

        left: 12px;

        bottom: 18px;

        min-width: auto;

        padding: 11px 13px;
    }


    .floating-icon {

        width: 34px;

        height: 34px;
    }


    .floating-content strong {

        font-size: 12px;
    }


    .floating-content span {

        font-size: 10px;
    }


    .hero-gold-circle {

        width: 80px;

        height: 80px;

        right: -20px;

        bottom: -25px;
    }

}

/* =========================
   PREMIUM ABOUT SECTION
========================= */

.about-section {
    position: relative;
    padding: 110px 20px;
    background: #F7F3ED;
    overflow: hidden;
}

.about-container {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 85px;
}


/* =========================
   IMAGE SIDE
========================= */

.about-image-wrap {
    position: relative;
    padding: 0 25px 25px 0;
}

.about-image-box {
    position: relative;
    height: 590px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(59, 39, 35, 0.18);
    z-index: 2;
}

.about-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(59, 39, 35, 0.20),
        transparent 45%
    );
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-image-box:hover img {
    transform: scale(1.04);
}


/* Gold border decoration */

.about-image-wrap::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid #C9A66B;
    top: -22px;
    left: -22px;
    z-index: 1;
}

.about-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #8B5E3C;
    right: 0;
    bottom: 0;
    z-index: 0;
}


/* =========================
   EXPERIENCE BADGE
========================= */

.about-experience {
    position: absolute;
    right: -20px;
    bottom: 45px;

    width: 175px;
    height: 175px;

    background: #3B2723;
    color: #fff;

    border-radius: 50%;
    z-index: 4;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 7px solid #F7F3ED;
    box-shadow: 0 15px 35px rgba(59, 39, 35, 0.25);
}

.experience-number {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1;
    color: #C9A66B;
    font-weight: 700;
}

.experience-text {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================
   CONTENT
========================= */

.about-content {
    position: relative;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #8B5E3C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.about-eyebrow::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #C9A66B;
}


.about-content h2 {
    margin: 0 0 22px;

    color: #3B2723;

    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 600;
}

.about-content h2 span {
    display: block;
    color: #8B5E3C;
    font-style: italic;
}


.about-intro {
    color: #3B2723 !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    font-weight: 500;
}


.about-content p {
    margin: 0 0 18px;

    color: #66605c;
    font-size: 15px;
    line-height: 1.9;
}

.about-content strong {
    color: #3B2723;
}


/* =========================
   FEATURES
========================= */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid rgba(59, 39, 35, 0.12);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-icon {
    flex-shrink: 0;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: #C9A66B;
    color: #3B2723;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 15px;
    font-weight: 800;
}

.about-feature h3 {
    margin: 2px 0 5px;

    color: #3B2723;
    font-size: 15px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   BOTTOM CTA
========================= */

.about-bottom {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-top: 35px;
}


.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 23px;

    background: #3B2723;
    color: #fff;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 19px;
    color: #C9A66B;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #8B5E3C;
    transform: translateY(-2px);
}

.about-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   PHONE
========================= */

.about-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    border: 1px solid #C9A66B;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8B5E3C;
}

.about-contact small {
    display: block;
    color: #777;
    font-size: 11px;
    margin-bottom: 3px;
}

.about-contact a {
    color: #3B2723;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 65px;
        max-width: 720px;
    }

    .about-image-box {
        height: 520px;
    }

    .about-content h2 {
        font-size: 48px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .about-section {
        padding: 75px 18px;
    }

    .about-container {
        gap: 48px;
    }

    .about-image-wrap {
        padding: 0 12px 15px 0;
    }

    .about-image-box {
        height: 420px;
    }

    .about-image-wrap::before {
        width: 110px;
        height: 110px;
        top: -12px;
        left: -10px;
    }

    .about-decoration {
        width: 90px;
        height: 90px;
    }

    .about-experience {
        width: 125px;
        height: 125px;
        right: -5px;
        bottom: 25px;
        border-width: 5px;
    }

    .experience-number {
        font-size: 34px;
    }

    .experience-text {
        font-size: 9px;
        letter-spacing: 0.7px;
    }

    .about-eyebrow {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-intro {
        font-size: 16px !important;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   PREMIUM SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    padding: 115px 20px;
    background: #ffffff;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.16);
    top: -210px;
    right: -180px;
}

.services-container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.services-heading {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #8B5E3C;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.services-eyebrow::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #C9A66B;
}

.services-heading h2 {
    margin: 15px 0 0;

    color: #3B2723;
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.08;
    font-weight: 600;
}

.services-heading h2 span {
    display: block;
    color: #8B5E3C;
    font-style: italic;
}

.services-heading-right {
    padding-bottom: 5px;
}

.services-heading-right p {
    margin: 0;

    color: #6d6864;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   FEATURED SERVICE
========================================= */

.featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 500px;

    background: #3B2723;

    margin-bottom: 30px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(59, 39, 35, 0.14);
}


/* Image */

.featured-service-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.featured-service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.8s ease;
}

.featured-service:hover .featured-service-image img {
    transform: scale(1.04);
}

.featured-image-label {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 11px 17px;

    background: rgba(59, 39, 35, 0.9);
    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}

.featured-image-label span {
    color: #C9A66B;
    margin-right: 10px;
}


/* Content */

.featured-service-content {
    padding: 65px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-small-title {
    color: #C9A66B;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.featured-service-content h3 {
    margin: 16px 0 20px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
}

.featured-service-content h3 strong {
    display: block;

    color: #C9A66B;
    font-style: italic;
    font-weight: 500;
}

.featured-service-content > p {
    margin: 0 0 27px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    line-height: 1.9;
}


/* Points */

.featured-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 32px;
}

.featured-points div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #fff;

    font-size: 12px;
}

.featured-points span {
    width: 21px;
    height: 21px;

    border: 1px solid #C9A66B;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #C9A66B;

    font-size: 10px;
}


/* Button */

.service-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: fit-content;

    padding: 14px 20px;

    background: #C9A66B;
    color: #3B2723;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
}

.service-main-btn span {
    margin-left: 25px;
    font-size: 18px;

    transition: transform 0.3s ease;
}

.service-main-btn:hover {
    background: #fff;
}

.service-main-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   SERVICE GRID
========================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* Card */

.service-card {
    position: relative;

    min-height: 285px;

    padding: 30px;

    background: #F7F3ED;

    border: 1px solid rgba(59, 39, 35, 0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.service-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(201, 166, 107, 0.09);

    right: -40px;
    bottom: -45px;

    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    background: #fff;

    box-shadow: 0 20px 45px rgba(59, 39, 35, 0.12);
}

.service-card:hover::after {
    transform: scale(1.7);
}


/* Card Top */

.service-card-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 25px;
}

.service-number {
    color: #B9ADA5;

    font-family: "Playfair Display", serif;

    font-size: 13px;
}


/* Icon */

.service-icon {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #3B2723;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.35s ease;
}

.service-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: #C9A66B;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    background: #C9A66B;

    transform: rotate(-6deg);
}

.service-card:hover .service-icon svg {
    stroke: #3B2723;
}


/* Card Text */

.service-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #3B2723;

    font-family: "Playfair Display", serif;

    font-size: 24px;
    font-weight: 600;
}

.service-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #716b67;

    font-size: 13px;
    line-height: 1.75;
}


/* Service Link */

.service-link {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: #8B5E3C;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.service-link span {
    font-size: 16px;

    transition: transform 0.3s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.services-bottom {
    margin-top: 30px;

    padding: 25px 30px;

    background: #3B2723;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.services-bottom span {
    color: #C9A66B;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-bottom p {
    margin: 5px 0 0;

    color: rgba(255,255,255,0.7);

    font-size: 13px;
}

.services-call-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    border: 1px solid rgba(201,166,107,0.7);

    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.services-call-btn span {
    color: #C9A66B;
    font-size: 16px;
}

.services-call-btn:hover {
    background: #C9A66B;
    color: #3B2723;
}

.services-call-btn:hover span {
    color: #3B2723;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .services-section {
        padding: 90px 20px;
    }

    .services-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-service {
        grid-template-columns: 1fr;
    }

    .featured-service-image {
        min-height: 420px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services-section {
        padding: 75px 18px;
    }

    .services-heading {
        margin-bottom: 38px;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .services-heading-right p {
        font-size: 14px;
    }

    .featured-service {
        margin-bottom: 20px;
    }

    .featured-service-image {
        min-height: 330px;
    }

    .featured-service-content {
        padding: 40px 25px;
    }

    .featured-service-content h3 {
        font-size: 34px;
    }

    .featured-points {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        min-height: auto;
        padding: 27px;
    }

    .services-bottom {
        flex-direction: column;
        align-items: flex-start;

        padding: 25px;
    }

    .services-call-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    width: 100%;
    padding: 90px 20px;
    background: #F7F3ED;
}

.gallery-container {
    max-width: 1180px;
    margin: 0 auto;
}


/* Gallery Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* Gallery Item */

.gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 330px;

    overflow: hidden;

    background: #3B2723;

    text-decoration: none;
}


/* Image */

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        opacity 0.4s ease;
}


/* Hover */

.gallery-item:hover img {
    transform: scale(1.07);
    opacity: 0.92;
}


/* Subtle Border */

.gallery-item {
    border: 1px solid rgba(59, 39, 35, 0.12);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .gallery-section {
        padding: 75px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-item {
        height: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 340px;
    }

}

/* =========================================
   GALLERY LIGHTBOX
========================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(37, 37, 37, 0.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-image {
    max-width: 90%;
    max-height: 88vh;

    object-fit: contain;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.gallery-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(201, 166, 107, 0.7);

    border-radius: 50%;

    background: #3B2723;
    color: #C9A66B;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: #C9A66B;
    color: #3B2723;
}


@media (max-width: 600px) {

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox-image {
        max-width: 96%;
        max-height: 80vh;
    }

    .gallery-close {
        top: 15px;
        right: 15px;
    }

}


/* =========================================
   PREMIUM FAQ SECTION
========================================= */

.faq-section {
    position: relative;

    padding: 115px 20px;

    background: #F7F3ED;

    overflow: hidden;
}


/* Decorative Circle */

.faq-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(201, 166, 107, 0.18);

    border-radius: 50%;

    top: -230px;
    left: -220px;

    pointer-events: none;
}

.faq-section::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(139, 94, 60, 0.05);

    border-radius: 50%;

    right: -80px;
    bottom: -70px;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.faq-container {
    position: relative;
    z-index: 2;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.78fr 1.22fr;

    gap: 85px;

    align-items: start;
}


/* =========================================
   LEFT INTRO
========================================= */

.faq-intro {
    position: sticky;

    top: 120px;
}

.faq-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #8B5E3C;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.3px;

    text-transform: uppercase;
}

.faq-eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #C9A66B;
}


.faq-intro h2 {
    margin: 17px 0 22px;

    color: #3B2723;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 4.2vw, 56px);

    line-height: 1.1;

    font-weight: 600;
}

.faq-intro h2 span {
    display: block;

    color: #8B5E3C;

    font-style: italic;
}


.faq-intro > p {
    margin: 0;

    color: #6e6864;

    font-size: 14px;

    line-height: 1.9;

    max-width: 440px;
}


/* =========================================
   TRUST BOX
========================================= */

.faq-trust-box {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 38px;

    padding: 22px;

    background: #3B2723;

    box-shadow: 0 18px 40px rgba(59, 39, 35, 0.15);
}


.faq-trust-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #C9A66B;

    border-radius: 50%;

    color: #C9A66B;

    font-size: 18px;

    font-weight: 700;
}


.faq-trust-box strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 500;
}


.faq-trust-box p {
    margin: 0 0 5px;

    color: rgba(255,255,255,0.62);

    font-size: 11px;
}


.faq-trust-box a {
    color: #C9A66B;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   FAQ LIST
========================================= */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    background: #fff;

    border: 1px solid rgba(59, 39, 35, 0.09);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 166, 107, 0.55);
}

.faq-item.active {
    border-color: rgba(201, 166, 107, 0.65);

    box-shadow: 0 12px 30px rgba(59, 39, 35, 0.07);
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 23px 25px;

    border: 0;

    background: transparent;

    color: #3B2723;

    text-align: left;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.5;

    cursor: pointer;
}


.faq-icon {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #C9A66B;

    border-radius: 50%;

    color: #8B5E3C;

    font-size: 19px;

    font-weight: 400;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: #3B2723;

    color: #C9A66B;
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.4s ease;
}

.faq-answer p {
    overflow: hidden;

    margin: 0;

    padding: 0 25px;

    color: #6f6965;

    font-size: 13px;

    line-height: 1.85;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        padding 0.4s ease;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active .faq-answer p {
    padding: 0 25px 24px;

    opacity: 1;
}


.faq-answer a {
    color: #8B5E3C;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .faq-section {
        padding: 90px 20px;
    }

    .faq-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 750px;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro > p {
        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .faq-section {
        padding: 70px 15px;
    }

    .faq-container {
        gap: 40px;
    }

    .faq-intro h2 {
        font-size: 38px;
    }

    .faq-intro > p {
        font-size: 13px;
    }

    .faq-trust-box {
        padding: 18px;

        margin-top: 28px;
    }

    .faq-question {
        padding: 19px 17px;

        font-size: 13px;
    }

    .faq-icon {
        width: 27px;
        height: 27px;

        font-size: 17px;
    }

    .faq-item.active .faq-answer p {
        padding: 0 17px 20px;
    }

    .faq-answer p {
        font-size: 12.5px;
    }

}

/* =========================================
   PREMIUM CTA SECTION
========================================= */

.cta-section {
    position: relative;

    padding: 105px 20px;

    background: #3B2723;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATIONS
========================================= */

.cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(201, 166, 107, 0.18);

    border-radius: 50%;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(201, 166, 107, 0.10);

    border-radius: 50%;

    bottom: -180px;
    right: -100px;
}


/* =========================================
   CONTAINER
========================================= */

.cta-container {
    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    z-index: 2;
}


/* =========================================
   DECORATIVE LINES
========================================= */

.cta-line {
    position: absolute;

    top: 50%;

    width: 90px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #C9A66B
    );

    opacity: 0.65;
}

.cta-line-left {
    left: -20px;
}

.cta-line-right {
    right: -20px;

    transform: rotate(180deg);
}


/* =========================================
   CONTENT
========================================= */

.cta-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #C9A66B;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background: #C9A66B;
}


.cta-content h2 {
    margin: 18px auto 20px;

    max-width: 700px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 500;
}

.cta-content h2 span {
    display: block;

    color: #C9A66B;

    font-style: italic;
}


.cta-content > p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   CTA BUTTONS
========================================= */

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 38px;
}


.cta-btn {
    min-width: 260px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 17px;

    text-align: left;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.cta-btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}


/* Call */

.cta-call {
    background: #C9A66B;

    color: #3B2723;
}

.cta-call:hover {
    background: #d8b97f;
}


/* WhatsApp */

.cta-whatsapp {
    background: #fff;

    color: #3B2723;
}

.cta-whatsapp:hover {
    background: #F7F3ED;
}


/* =========================================
   BUTTON ICON
========================================= */

.cta-btn-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    border-radius: 50%;

    font-size: 17px;
}


/* =========================================
   BUTTON TEXT
========================================= */

.cta-btn-text {
    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;
}

.cta-btn-text small {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    opacity: 0.65;
}

.cta-btn-text strong {
    font-size: 13px;

    font-weight: 800;
}


/* =========================================
   ARROW
========================================= */

.cta-arrow {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}


/* =========================================
   TRUST
========================================= */

.cta-trust {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 28px;

    margin-top: 35px;
}

.cta-trust span {
    color: rgba(255,255,255,0.58);

    font-size: 10px;

    letter-spacing: 0.4px;
}

.cta-trust span::first-letter {
    color: #C9A66B;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .cta-section {
        padding: 90px 20px;
    }

    .cta-line {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cta-section {
        padding: 75px 18px;
    }

    .cta-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .cta-content h2 {
        font-size: 40px;

        margin-top: 16px;
    }

    .cta-content > p {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;

        gap: 12px;

        margin-top: 30px;
    }

    .cta-btn {
        width: 100%;

        min-width: 0;
    }

    .cta-trust {
        flex-direction: column;

        gap: 10px;

        margin-top: 28px;
    }

}

/* =========================================
   PREMIUM CTA SECTION
========================================= */

.cta-section {
    position: relative;

    padding: 105px 20px;

    background: #3B2723;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATIONS
========================================= */

.cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(201, 166, 107, 0.18);

    border-radius: 50%;

    top: -300px;
    left: 50%;

    transform: translateX(-50%);
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(201, 166, 107, 0.10);

    border-radius: 50%;

    bottom: -180px;
    right: -100px;
}


/* =========================================
   CONTAINER
========================================= */

.cta-container {
    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    z-index: 2;
}


/* =========================================
   DECORATIVE LINES
========================================= */

.cta-line {
    position: absolute;

    top: 50%;

    width: 90px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #C9A66B
    );

    opacity: 0.65;
}

.cta-line-left {
    left: -20px;
}

.cta-line-right {
    right: -20px;

    transform: rotate(180deg);
}


/* =========================================
   CONTENT
========================================= */

.cta-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #C9A66B;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background: #C9A66B;
}


.cta-content h2 {
    margin: 18px auto 20px;

    max-width: 700px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 500;
}

.cta-content h2 span {
    display: block;

    color: #C9A66B;

    font-style: italic;
}


.cta-content > p {
    max-width: 600px;

    margin: 0 auto;

    color: rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   CTA BUTTONS
========================================= */

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 38px;
}


.cta-btn {
    min-width: 260px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 17px;

    text-align: left;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.cta-btn:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}


/* Call */

.cta-call {
    background: #C9A66B;

    color: #3B2723;
}

.cta-call:hover {
    background: #d8b97f;
}


/* WhatsApp */

.cta-whatsapp {
    background: #fff;

    color: #3B2723;
}

.cta-whatsapp:hover {
    background: #F7F3ED;
}


/* =========================================
   BUTTON ICON
========================================= */

.cta-btn-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    border-radius: 50%;

    font-size: 17px;
}


/* =========================================
   BUTTON TEXT
========================================= */

.cta-btn-text {
    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;
}

.cta-btn-text small {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    opacity: 0.65;
}

.cta-btn-text strong {
    font-size: 13px;

    font-weight: 800;
}


/* =========================================
   ARROW
========================================= */

.cta-arrow {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}


/* =========================================
   TRUST
========================================= */

.cta-trust {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 28px;

    margin-top: 35px;
}

.cta-trust span {
    color: rgba(255,255,255,0.58);

    font-size: 10px;

    letter-spacing: 0.4px;
}

.cta-trust span::first-letter {
    color: #C9A66B;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .cta-section {
        padding: 90px 20px;
    }

    .cta-line {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cta-section {
        padding: 75px 18px;
    }

    .cta-eyebrow {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .cta-content h2 {
        font-size: 40px;

        margin-top: 16px;
    }

    .cta-content > p {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;

        gap: 12px;

        margin-top: 30px;
    }

    .cta-btn {
        width: 100%;

        min-width: 0;
    }

    .cta-trust {
        flex-direction: column;

        gap: 10px;

        margin-top: 28px;
    }

}

/* =========================================
   CTA REVEAL
========================================= */

.cta-ready .cta-content {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.cta-visible .cta-content {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PREMIUM FOOTER
========================================= */

.site-footer {
    position: relative;

    background: #2B1D1A;

    color: #fff;

    overflow: hidden;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    padding: 80px 20px 65px;

    position: relative;
}

.footer-main::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(201, 166, 107, 0.08);

    border-radius: 50%;

    top: -280px;
    right: -200px;

    pointer-events: none;
}

.footer-main::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(201, 166, 107, 0.06);

    border-radius: 50%;

    bottom: -180px;
    left: -130px;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    position: relative;

    z-index: 2;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-main .footer-container {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 0.9fr 1.25fr;

    gap: 55px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}

.footer-logo img {
    width: 190px;

    height: auto;

    display: block;
}


.footer-brand > p {
    max-width: 320px;

    margin: 0;

    color: rgba(255,255,255,0.57);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 25px;
}

.footer-social a {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,166,107,0.35);

    border-radius: 50%;

    color: #C9A66B;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #C9A66B;

    color: #2B1D1A;

    border-color: #C9A66B;

    transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;

    margin: 4px 0 25px;

    padding-bottom: 13px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 500;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 1px;

    background: #C9A66B;
}


.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: rgba(255,255,255,0.58);

    text-decoration: none;

    font-size: 12.5px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column li a:hover {
    color: #C9A66B;

    padding-left: 5px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}

.footer-contact-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,166,107,0.35);

    border-radius: 50%;

    color: #C9A66B;

    font-size: 13px;
}


.footer-contact-item small {
    display: block;

    margin-bottom: 4px;

    color: #C9A66B;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.footer-contact-item p {
    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 11.5px;

    line-height: 1.7;
}


.footer-contact-item a {
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 12px;

    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: #C9A66B;
}


/* =========================================
   FOOTER CTA STRIP
========================================= */

.footer-cta {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);

    background: #3B2723;

    padding: 22px 20px;
}


.footer-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-cta-inner > div:first-child {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-cta-inner > div:first-child span {
    color: #C9A66B;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.footer-cta-inner > div:first-child p {
    margin: 0;

    padding-left: 20px;

    border-left: 1px solid rgba(201,166,107,0.35);

    color: rgba(255,255,255,0.65);

    font-size: 12px;
}


/* CTA Buttons */

.footer-cta-buttons {
    display: flex;

    gap: 10px;
}

.footer-cta-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: all 0.3s ease;
}


.footer-call-btn {
    background: #C9A66B;

    color: #2B1D1A;
}

.footer-call-btn:hover {
    background: #fff;
}


.footer-wa-btn {
    border: 1px solid rgba(201,166,107,0.55);

    color: #C9A66B;
}

.footer-wa-btn:hover {
    background: #C9A66B;

    color: #2B1D1A;
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.footer-bottom {
    padding: 18px 20px;

    background: #241815;
}


.footer-bottom-inner {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.4);

    font-size: 10px;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);

    text-decoration: none;

    font-size: 10px;

    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #C9A66B;
}

.footer-legal span {
    color: rgba(201,166,107,0.4);

    font-size: 9px;
}


.footer-credit {
    text-align: right;
}

.footer-credit span {
    color: #C9A66B;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand > p {
        max-width: 550px;
    }

    .footer-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 60px 18px 45px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;

        padding-right: 0;
    }

    .footer-logo img {
        width: 175px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .footer-column h3 {
        margin-bottom: 18px;
    }

    .footer-column li {
        margin-bottom: 11px;
    }

    .footer-cta {
        padding: 25px 18px;
    }

    .footer-cta-inner {
        gap: 20px;
    }

    .footer-cta-inner > div:first-child {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .footer-cta-inner > div:first-child p {
        padding-left: 0;

        border-left: 0;
    }

    .footer-cta-buttons {
        width: 100%;
    }

    .footer-cta-buttons a {
        flex: 1;
    }

    .footer-bottom {
        padding: 20px 18px;
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 10px;
    }

    .footer-bottom p {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-credit {
        display: none;
    }

}

/* =========================================
   MS SOFA REPAIRING
   GALLERY V2
========================================= */

.msr-gallery-v2,
.msr-gallery-v2 *,
.msr-gallery-v2__lightbox,
.msr-gallery-v2__lightbox * {
    box-sizing: border-box;
}


/* Prevent this section from creating horizontal scroll */

.msr-gallery-v2 {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-x: clip;

    padding: 90px 20px;

    background: #F7F3ED;
}


/* =========================================
   CONTAINER
========================================= */

.msr-gallery-v2__container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================
   GRID
========================================= */

.msr-gallery-v2__grid {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
   IMAGE BOX
========================================= */

.msr-gallery-v2__item {
    position: relative;

    display: block;

    width: 100%;
    min-width: 0;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #3B2723;

    text-decoration: none;

    border: 1px solid rgba(59, 39, 35, 0.12);

    isolation: isolate;
}


/* Gold corner */

.msr-gallery-v2__item::before {
    content: "";

    position: absolute;

    width: 35px;
    height: 35px;

    top: 12px;
    right: 12px;

    border-top: 1px solid #C9A66B;
    border-right: 1px solid #C9A66B;

    z-index: 2;

    opacity: 0;

    transition: opacity 0.35s ease;
}


/* Image */

.msr-gallery-v2__item img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;

    object-fit: cover;

    transition:
        transform 0.65s cubic-bezier(.2,.7,.2,1),
        opacity 0.35s ease;
}


/* =========================================
   HOVER
========================================= */

.msr-gallery-v2__item:hover img {
    transform: scale(1.07);

    opacity: 0.9;
}

.msr-gallery-v2__item:hover::before {
    opacity: 1;
}


/* =========================================
   LIGHTBOX
========================================= */

.msr-gallery-v2__lightbox {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(35, 25, 22, 0.96);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    overflow: hidden;
}

.msr-gallery-v2__lightbox.is-open {
    opacity: 1;

    visibility: visible;
}


/* Lightbox Image */

.msr-gallery-v2__lightbox-img {
    display: block;

    width: auto;
    height: auto;

    max-width: 92vw;
    max-height: 88vh;

    object-fit: contain;

    box-shadow: 0 25px 70px rgba(0,0,0,0.45);

    transform: scale(0.95);

    transition: transform 0.35s ease;
}

.msr-gallery-v2__lightbox.is-open
.msr-gallery-v2__lightbox-img {
    transform: scale(1);
}


/* Close Button */

.msr-gallery-v2__close {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 1px solid rgba(201,166,107,0.65);

    border-radius: 50%;

    background: #3B2723;

    color: #C9A66B;

    font-size: 29px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.msr-gallery-v2__close:hover {
    background: #C9A66B;

    color: #3B2723;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .msr-gallery-v2 {
        padding: 75px 20px;
    }

    .msr-gallery-v2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .msr-gallery-v2 {
        padding: 60px 15px;
    }

    .msr-gallery-v2__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .msr-gallery-v2__item {
        aspect-ratio: 4 / 3;
    }

    .msr-gallery-v2__lightbox {
        padding: 15px;
    }

    .msr-gallery-v2__lightbox-img {
        max-width: 94vw;
        max-height: 82vh;
    }

    .msr-gallery-v2__close {
        top: 15px;
        right: 15px;

        width: 40px;
        height: 40px;

        font-size: 26px;
    }

}

/* GLOBAL RESPONSIVE FIX */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* =========================================
MS SOFA REPAIRING
PREMIUM STICKY CALL + WHATSAPP
========================================= */

.msr-float-call,
.msr-float-whatsapp {
position: fixed;
top: 50%;
transform: translateY(-50%);

```
width: 58px;
height: 150px;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;

z-index: 99999;

text-decoration: none;
box-sizing: border-box;

transition: all 0.3s ease;

box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
```

}

/* CALL LEFT */
.msr-float-call {
left: 0;
background: #3B2723;
color: #F7F3ED;

```
border-radius: 0 14px 14px 0;
```

}

/* WHATSAPP RIGHT */
.msr-float-whatsapp {
right: 0;
background: #25D366;
color: #ffffff;

```
border-radius: 14px 0 0 14px;
```

}

/* ICON CIRCLE */
.msr-float-icon {
width: 38px;
height: 38px;

```
display: flex;
align-items: center;
justify-content: center;

flex-shrink: 0;

border-radius: 50%;

background: rgba(255,255,255,0.14);
```

}

/* SVG ICON */
.msr-float-icon svg {
width: 22px;
height: 22px;

```
display: block;

fill: currentColor;
```

}

/* TEXT */
.msr-float-label {
writing-mode: vertical-rl;
transform: rotate(180deg);

```
font-family: Arial, sans-serif;
font-size: 13px;
font-weight: 700;

letter-spacing: 0.5px;
line-height: 1;

white-space: nowrap;
```

}

/* HOVER */
.msr-float-call:hover {
width: 68px;
background: #8B5E3C;
color: #ffffff;
}

.msr-float-whatsapp:hover {
width: 68px;
background: #20bd5a;
}

.msr-float-call:hover,
.msr-float-whatsapp:hover {
box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

/* ICON HOVER */
.msr-float-call:hover .msr-float-icon,
.msr-float-whatsapp:hover .msr-float-icon {
transform: scale(1.08);
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 600px) {

```
.msr-float-call,
.msr-float-whatsapp {
    top: auto;
    bottom: 18px;

    transform: none;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    gap: 0;

    box-shadow: 0 7px 22px rgba(0,0,0,0.25);
}

.msr-float-call {
    left: 15px;
}

.msr-float-whatsapp {
    right: 15px;
}

.msr-float-icon {
    width: 46px;
    height: 46px;

    background: transparent;
}

.msr-float-icon svg {
    width: 27px;
    height: 27px;
}

.msr-float-label {
    display: none;
}

.msr-float-call:hover,
.msr-float-whatsapp:hover {
    width: 58px;
    transform: scale(1.08);
}
```

}

/* SMALL MOBILE */
@media (max-width: 380px) {

```
.msr-float-call {
    left: 10px;
}

.msr-float-whatsapp {
    right: 10px;
}

.msr-float-call,
.msr-float-whatsapp {
    bottom: 12px;
    width: 54px;
    height: 54px;
}

.msr-float-icon {
    width: 44px;
    height: 44px;
}

.msr-float-icon svg {
    width: 25px;
    height: 25px;
}
```

}


/* =========================================
   MS SOFA REPAIRING
   ABOUT US - BREADCRUMB HERO
   ========================================= */

.msr-about-breadcrumb,
.msr-about-breadcrumb * {
    box-sizing: border-box;
}

.msr-about-breadcrumb {
    position: relative;
    width: 100%;
    min-height: 330px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #3B2723 0%,
            #4A3029 48%,
            #2B1D1A 100%
        );

    overflow: hidden;
    isolation: isolate;
}

/* Decorative background */
.msr-about-breadcrumb::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    top: -190px;

    border: 1px solid rgba(201, 166, 107, 0.28);
    border-radius: 50%;

    z-index: -1;
}

.msr-about-breadcrumb::after {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    left: -120px;
    bottom: -150px;

    border: 1px solid rgba(201, 166, 107, 0.20);
    border-radius: 50%;

    z-index: -1;
}

/* Overlay */
.msr-about-breadcrumb__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(59,39,35,0.95),
            rgba(59,39,35,0.72),
            rgba(43,29,26,0.92)
        );

    z-index: -1;
}

/* Container */
.msr-about-breadcrumb__container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 70px 20px;

    position: relative;
}

/* Breadcrumb */
.msr-about-breadcrumb__nav {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.msr-about-breadcrumb__nav a {
    color: #C9A66B;
    text-decoration: none;

    transition: color 0.3s ease;
}

.msr-about-breadcrumb__nav a:hover {
    color: #F7F3ED;
}

.msr-about-breadcrumb__nav span {
    color: rgba(247,243,237,0.55);
}

.msr-about-breadcrumb__nav span:last-child {
    color: #F7F3ED;
}

/* Content */
.msr-about-breadcrumb__content {
    max-width: 720px;
}

/* Eyebrow */
.msr-about-breadcrumb__eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #C9A66B;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

/* H1 */
.msr-about-breadcrumb__content h1 {
    margin: 0 0 14px;

    color: #F7F3ED;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;

    line-height: 1.08;
}

/* Description */
.msr-about-breadcrumb__content p {
    margin: 0;

    color: rgba(247,243,237,0.78);

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .msr-about-breadcrumb {
        min-height: 300px;
    }

    .msr-about-breadcrumb__container {
        padding: 60px 20px;
    }

    .msr-about-breadcrumb__content h1 {
        font-size: 48px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .msr-about-breadcrumb {
        min-height: 270px;
    }

    .msr-about-breadcrumb__container {
        padding: 50px 18px;
    }

    .msr-about-breadcrumb__nav {
        margin-bottom: 22px;
        font-size: 13px;
        gap: 8px;
    }

    .msr-about-breadcrumb__eyebrow {
        font-size: 10px;
        letter-spacing: 1.6px;
        margin-bottom: 12px;
    }

    .msr-about-breadcrumb__content h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .msr-about-breadcrumb__content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .msr-about-breadcrumb::before {
        width: 280px;
        height: 280px;
        right: -140px;
        top: -130px;
    }

    .msr-about-breadcrumb::after {
        width: 180px;
        height: 180px;
        left: -100px;
        bottom: -110px;
    }
}


/* =========================================
   VERY SMALL MOBILE
   ========================================= */

@media (max-width: 380px) {

    .msr-about-breadcrumb__container {
        padding: 45px 15px;
    }

    .msr-about-breadcrumb__content h1 {
        font-size: 36px;
    }

    .msr-about-breadcrumb__content p {
        font-size: 13px;
    }
}

/* =========================================
   CONTACT DETAILS SECTION
   ========================================= */

.msr-contact-simple,
.msr-contact-simple * {
    box-sizing: border-box;
}

.msr-contact-simple {
    width: 100%;
    padding: 90px 20px;

    background: #F7F3ED;
    overflow: hidden;
}

.msr-contact-simple__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* HEADING */

.msr-contact-simple__heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.msr-contact-simple__heading > span {
    display: block;
    margin-bottom: 12px;

    color: #8B5E3C;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.msr-contact-simple__heading h1 {
    margin: 0 0 15px;

    color: #3B2723;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.15;
}

.msr-contact-simple__heading p {
    margin: 0;

    color: #666;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}


/* GRID */

.msr-contact-simple__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* CARD */

.msr-contact-simple__card {
    position: relative;

    min-width: 0;
    min-height: 180px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 30px 28px;

    background: #ffffff;

    border: 1px solid rgba(59,39,35,0.10);
    border-radius: 18px;

    text-decoration: none;

    box-shadow: 0 8px 30px rgba(59,39,35,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.msr-contact-simple__card:hover {
    transform: translateY(-7px);

    border-color: rgba(201,166,107,0.55);

    box-shadow: 0 18px 40px rgba(59,39,35,0.12);
}


/* ICON */

.msr-contact-simple__icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #3B2723;
    color: #C9A66B;
}

.msr-contact-simple__icon svg {
    width: 26px;
    height: 26px;

    display: block;
    fill: currentColor;
}


/* WHATSAPP ICON */

.msr-contact-simple__card--whatsapp .msr-contact-simple__icon {
    background: #25D366;
    color: #ffffff;
}


/* TEXT */

.msr-contact-simple__card small {
    display: block;

    margin-bottom: 5px;

    color: #8B5E3C;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.msr-contact-simple__card h2 {
    margin: 0 0 5px;

    color: #3B2723;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}

.msr-contact-simple__card p {
    margin: 0;

    color: #777;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}


/* ARROW */

.msr-contact-simple__arrow {
    position: absolute;

    right: 20px;
    top: 20px;

    color: #C9A66B;

    font-size: 20px;

    transition: transform 0.3s ease;
}

.msr-contact-simple__card:hover .msr-contact-simple__arrow {
    transform: translateX(5px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .msr-contact-simple__grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .msr-contact-simple__card {
        min-height: 145px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .msr-contact-simple {
        padding: 65px 15px;
    }

    .msr-contact-simple__heading {
        margin-bottom: 35px;
    }

    .msr-contact-simple__heading h1 {
        font-size: 35px;
    }

    .msr-contact-simple__heading p {
        font-size: 14px;
    }

    .msr-contact-simple__grid {
        gap: 14px;
    }

    .msr-contact-simple__card {
        min-height: 125px;
        padding: 22px 20px;
        gap: 15px;

        border-radius: 15px;
    }

    .msr-contact-simple__icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .msr-contact-simple__icon svg {
        width: 23px;
        height: 23px;
    }

    .msr-contact-simple__card h2 {
        font-size: 18px;
    }

    .msr-contact-simple__card p {
        font-size: 12px;
    }

    .msr-contact-simple__arrow {
        right: 15px;
        top: 15px;
    }
}

/* =========================================
   MS SOFA REPAIRING
   SERVICE AREAS SECTION
   ========================================= */

.msr-service-areas,
.msr-service-areas * {
    box-sizing: border-box;
}

.msr-service-areas {
    width: 100%;
    padding: 90px 20px;

    background: #ffffff;

    overflow: hidden;
}

.msr-service-areas__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADING
   ========================================= */

.msr-service-areas__heading {
    max-width: 720px;
    margin: 0 auto 50px;

    text-align: center;
}

.msr-service-areas__eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #8B5E3C;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.msr-service-areas__heading h2 {
    margin: 0 0 16px;

    color: #3B2723;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;

    line-height: 1.15;
}

.msr-service-areas__heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #6f6f6f;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   AREAS GRID
   ========================================= */

.msr-service-areas__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;

    width: 100%;
}


/* AREA CARD */

.msr-service-areas__area {
    min-width: 0;

    min-height: 72px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 18px 20px;

    background: #F7F3ED;

    border: 1px solid rgba(59,39,35,0.08);
    border-radius: 12px;

    color: #3B2723;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.msr-service-areas__area:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: rgba(201,166,107,0.55);

    box-shadow: 0 10px 28px rgba(59,39,35,0.08);
}


/* PIN */

.msr-service-areas__pin {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #3B2723;
    color: #C9A66B;

    font-size: 19px;
    line-height: 1;
}


/* =========================================
   BOTTOM CTA
   ========================================= */

.msr-service-areas__bottom {
    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 24px 28px;

    background: #3B2723;

    border-radius: 15px;
}

.msr-service-areas__bottom strong {
    display: block;

    margin-bottom: 5px;

    color: #F7F3ED;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
}

.msr-service-areas__bottom p {
    margin: 0;

    color: rgba(247,243,237,0.68);

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.msr-service-areas__bottom a {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 21px;

    background: #C9A66B;
    color: #3B2723;

    border-radius: 8px;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.msr-service-areas__bottom a:hover {
    background: #F7F3ED;
    transform: translateY(-2px);
}

.msr-service-areas__bottom a span {
    font-size: 18px;
    line-height: 1;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .msr-service-areas {
        padding: 75px 20px;
    }

    .msr-service-areas__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .msr-service-areas {
        padding: 60px 15px;
    }

    .msr-service-areas__heading {
        margin-bottom: 32px;
    }

    .msr-service-areas__heading h2 {
        font-size: 34px;
    }

    .msr-service-areas__heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .msr-service-areas__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .msr-service-areas__area {
        min-height: 64px;
        padding: 15px 16px;
    }

    .msr-service-areas__bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 25px;
        padding: 22px 20px;

        gap: 18px;
    }

    .msr-service-areas__bottom strong {
        font-size: 18px;
    }

    .msr-service-areas__bottom a {
        width: 100%;
        justify-content: center;
    }
}