
.fmw-strip-wrapper {
    overflow: hidden;
    position: relative;
    padding: 14px 0;
    border-radius: 18px;
    margin: 25px 0;
}

/* Track */

.fmw-strip-track {
    display: flex;
    width: max-content;
    animation: fmwStripMove 28s linear infinite;
}

/* Hover Pause */

.fmw-strip-track:hover {
    animation-play-state: paused;
}

/* Item */

.fmw-strip-item {
    min-width: max-content;
    margin-right: 18px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
    cursor: pointer;
}

.fmw-strip-item:hover {
    transform: translateY(-4px) scale(1.03);
}

.fmw-strip-item i {
    font-size: 18px;
}

/* Animation */

@keyframes fmwStripMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* Dark Strip */

.fmw-dark-strip {
    background: linear-gradient(135deg, #111, #1f1f1f);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.fmw-dark-strip .fmw-strip-item {
    background: #fff;
    color: #111;
}

/* Light Strip */

.fmw-light-strip {
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border: 1px solid #e5e5e5;
}

.fmw-light-strip .fmw-strip-item {
    background: #111;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */

@media(max-width:768px) {

    .fmw-strip-item {
        font-size: 14px;
        padding: 12px 18px;
        margin-right: 14px;
    }

}

@media(max-width:480px) {

    .fmw-strip-item {
        font-size: 13px;
        padding: 10px 16px;
        border-radius: 12px;
    }

    .fmw-strip-item i {
        font-size: 15px;
    }

}




/* =========================
      UNIQUE CSS START
========================== */

.fmw-loop-section {
    padding: 40px 0;
    /* background: #0f0f0f; */
    overflow: hidden;
    position: relative;
}

/* Glow */

.fmw-loop-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    filter: blur(40px);
}

.fmw-loop-wrap {
    width: 100%;
    overflow: hidden;
}

/* Track */

.fmw-loop-track {
    display: flex;
    align-items: center;
    width: calc(320px * 10);
    animation: fmwInfinite 25s linear infinite;
}

/* Pause */

.fmw-loop-track:hover {
    animation-play-state: paused;
}

/* Card */

.fmw-loop-card {
    width: 300px;
    margin-right: 20px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #262626);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hover */

.fmw-loop-card:hover {
    transform: translateY(-10px);
    border-color: #c9a14a;
}

/* Image */

.fmw-loop-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.fmw-loop-card:hover img {
    transform: scale(1.08);
}

/* Content */

.fmw-loop-content {
    padding: 22px;
}

.fmw-loop-content span {
    display: inline-block;
    background: #c9a14a;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.fmw-loop-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fmw-loop-content p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Infinite Animation */

@keyframes fmwInfinite {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 5));
    }

}

/* =========================
        RESPONSIVE
========================== */

@media(max-width:992px) {

    .fmw-loop-track {
        animation-duration: 18s;
    }

    .fmw-loop-card {
        width: 240px;
    }

    .fmw-loop-card img {
        height: 180px;
    }

}

@media(max-width:768px) {

    .fmw-loop-section {
        padding: 25px 0;
    }

    .fmw-loop-track {
        animation-duration: 15s;
    }

    .fmw-loop-card {
        width: 190px;
        margin-right: 14px;
        border-radius: 16px;
    }

    .fmw-loop-card img {
        height: 140px;
    }

    .fmw-loop-content {
        padding: 14px;
    }

    .fmw-loop-content span {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .fmw-loop-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .fmw-loop-content p {
        font-size: 12px;
        line-height: 1.5;
    }

}

@media(max-width:480px) {

    .fmw-loop-card {
        width: 165px;
    }

    .fmw-loop-card img {
        height: 120px;
    }

    .fmw-loop-content {
        padding: 12px;
    }

    .fmw-loop-content h3 {
        font-size: 14px;
    }

    .fmw-loop-content p {
        font-size: 11px;
    }

}

/* Track */

.fmw-loop-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: fmwInfinite 20s linear infinite;
    gap: 20px;
}

/* Infinite Animation */

@keyframes fmwInfinite {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }

}

/* =========================
      UNIQUE CSS END
========================== */


/* =========================
      UNIQUE CSS START
========================== */

.fmw-grid-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Glow */

.fmw-grid-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -180px;
    left: -120px;
    filter: blur(70px);
}

/* Title */

.fmw-grid-title {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
}

.fmw-grid-title h2 {
    color: #484646;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 14px;
}

.fmw-grid-title p {
    color: #565353;
    font-size: 16px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* Grid */

.fmw-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Card */

.fmw-grid-card {
    position: relative;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
    background: #1b1b1b;
}

.fmw-grid-card:hover {
    transform: translateY(-12px);
}

/* Image */

.fmw-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
    display: block;
}

.fmw-grid-card:hover img {
    transform: scale(1.12);
}

/* Overlay */

.fmw-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Number */

.fmw-grid-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 55px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.73);
}

/* Badge */

.fmw-grid-overlay span {
    display: inline-block;
    width: max-content;
    background: #d4a54c;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

/* Heading */

.fmw-grid-overlay h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Text */

.fmw-grid-overlay p {
    color: #d4d4d4;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Button */

.fmw-grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.fmw-grid-btn:hover {
    color: #d4a54c;
    transform: translateX(6px);
}

/* =========================
        RESPONSIVE
========================== */

@media(max-width:991px) {

    .fmw-grid-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .fmw-grid-card {
        height: 420px;
    }

}

@media(max-width:768px) {

    .fmw-grid-section {
        padding: 60px 0;
    }

    .fmw-grid-title h2 {
        font-size: 34px;
    }

    .fmw-grid-title p {
        font-size: 14px;
    }

    .fmw-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fmw-grid-card {
        height: 380px;
        border-radius: 20px;
    }

    .fmw-grid-overlay {
        padding: 25px;
    }

    .fmw-grid-overlay h3 {
        font-size: 26px;
    }

    .fmw-grid-overlay p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .fmw-grid-number {
        font-size: 40px;
    }

}

/* =========================
      UNIQUE CSS END
========================== */


/* =========================
      UNIQUE CSS START
========================== */

.fmw-showcase-section {
    padding: 90px 0;
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */

.fmw-showcase-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212, 165, 76, 0.08);
    border-radius: 50%;
    top: -220px;
    left: -150px;
    filter: blur(90px);
}

.fmw-showcase-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -180px;
    right: -120px;
    filter: blur(80px);
}

/* Heading */

.fmw-showcase-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.fmw-showcase-heading span {
    color: #d4a54c;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}

.fmw-showcase-heading h2 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 16px;
}

.fmw-showcase-heading p {
    color: #bdbdbd;
    max-width: 720px;
    margin: auto;
    line-height: 1.9;
    font-size: 16px;
}

/* Layout */

.fmw-showcase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Big Card */

.fmw-main-card {
    position: relative;
    height: 620px;
    border-radius: 34px;
    overflow: hidden;
}

.fmw-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
    display: block;
}

.fmw-main-card:hover img {
    transform: scale(1.08);
}

/* Overlay */

.fmw-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

/* Glass Box */

.fmw-glass-box {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    max-width: 480px;
}

/* Text */

.fmw-glass-box span {
    display: inline-block;
    background: #d4a54c;
    color: #111;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fmw-glass-box h3 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.fmw-glass-box p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Button */

.fmw-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.fmw-showcase-btn:hover {
    color: #d4a54c;
    transform: translateX(6px);
}

/* Right Side */

.fmw-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Small Card */

.fmw-small-card {
    position: relative;
    height: 295px;
    border-radius: 30px;
    overflow: hidden;
}

.fmw-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
    display: block;
}

.fmw-small-card:hover img {
    transform: scale(1.1);
}

/* Small Overlay */

.fmw-small-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.12));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.fmw-small-overlay h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.fmw-small-overlay p {
    color: #d7d7d7;
    line-height: 1.7;
    margin: 0;
}

/* =========================
        RESPONSIVE
========================== */

@media(max-width:991px) {

    .fmw-showcase-wrapper {
        grid-template-columns: 1fr;
    }

    .fmw-main-card {
        height: 520px;
    }

}

@media(max-width:768px) {

    .fmw-showcase-section {
        padding: 60px 0;
    }

    .fmw-showcase-heading h2 {
        font-size: 36px;
    }

    .fmw-showcase-heading p {
        font-size: 14px;
    }

    .fmw-main-card {
        height: 450px;
        border-radius: 24px;
    }

    .fmw-small-card {
        height: 240px;
        border-radius: 22px;
    }

    .fmw-main-overlay {
        padding: 24px;
    }

    .fmw-glass-box {
        padding: 22px;
    }

    .fmw-glass-box h3 {
        font-size: 28px;
    }

    .fmw-small-overlay {
        padding: 20px;
    }

    .fmw-small-overlay h4 {
        font-size: 22px;
    }

}

/* =========================
      UNIQUE CSS END
========================== */


/* =========================
    COMPACT HOVER PANEL
========================== */

.fmw-hover-panel-section{
    padding:60px 0;
    /* background:#0d0d0d; */
    overflow:hidden;
    position:relative;
}

/* Glow */

.fmw-hover-panel-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(212,165,76,0.05);
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(80px);
}

/* Heading */

.fmw-hover-heading{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.fmw-hover-heading span{
    color:#d4a54c;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.fmw-hover-heading h2{
    color:#1a1919;
    font-size:38px;
    font-weight:800;
    margin:10px 0;
}

.fmw-hover-heading p{
    color:#bdbdbd;
    max-width:620px;
    margin:auto;
    line-height:1.7;
    font-size:14px;
}

/* Wrapper */

.fmw-hover-wrapper{
    display:flex;
    gap:16px;
    height:420px;
    position:relative;
    z-index:2;
}

/* Card */

.fmw-hover-card{
    flex:1;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:0.5s ease;
}

/* Hover Expand */

.fmw-hover-card:hover{
    flex:1.5;
}

/* Image */

.fmw-hover-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s ease;
    display:block;
}

.fmw-hover-card:hover img{
    transform:scale(1.06);
}

/* Overlay */

.fmw-hover-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.92),rgba(0,0,0,0.2));
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

/* Number */

.fmw-hover-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:42px;
    font-weight:800;
    color:rgba(255,255,255,0.14);
}

/* Badge */

.fmw-hover-overlay span{
    display:inline-block;
    width:max-content;
    background:#d4a54c;
    color:#111;
    font-size:10px;
    font-weight:700;
    padding:5px 12px;
    border-radius:30px;
    margin-bottom:10px;
}

/* Title */

.fmw-hover-overlay h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.3;
}

/* Text */

.fmw-hover-overlay p{
    color:#ddd;
    font-size:13px;
    line-height:1.6;
    margin-bottom:14px;
    max-width:260px;
}

/* Button */

.fmw-hover-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
}

.fmw-hover-btn:hover{
    color:#d4a54c;
    transform:translateX(4px);
}

/* =========================
        RESPONSIVE
========================== */

@media(max-width:991px){

    .fmw-hover-wrapper{
        flex-direction:column;
        height:auto;
    }

    .fmw-hover-card{
        height:300px;
    }

    .fmw-hover-card:hover{
        flex:1;
    }

}

@media(max-width:768px){

    .fmw-hover-panel-section{
        padding:45px 0;
    }

    .fmw-hover-heading h2{
        font-size:28px;
    }

    .fmw-hover-heading p{
        font-size:13px;
    }

    .fmw-hover-card{
        height:250px;
        border-radius:18px;
    }

    .fmw-hover-overlay{
        padding:18px;
    }

    .fmw-hover-overlay h3{
        font-size:18px;
    }

    .fmw-hover-overlay p{
        font-size:12px;
        margin-bottom:10px;
    }

    .fmw-hover-number{
        font-size:30px;
    }

}
/* =========================
   CONTENT ALIGN FIX
========================== */

/* CARD */

.fmw-hover-card{
    flex:1;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    transition:0.5s ease;
    min-width:0;
}

/* Overlay */

.fmw-hover-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.92),rgba(0,0,0,0.2));
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
}

/* Heading */

.fmw-hover-overlay h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.3;
    width:100%;
    word-break:break-word;
}

/* Text */

.fmw-hover-overlay p{
    color:#ddd;
    font-size:13px;
    line-height:1.6;
    margin-bottom:14px;
    width:100%;
    max-width:100%;
}

/* Button */

.fmw-hover-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:0.3s ease;
    margin-top:auto;
}

/* Number */

.fmw-hover-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:42px;
    font-weight:800;
    color:rgba(255,255,255,0.14);
    line-height:1;
}

/* MOBILE FIX */

@media(max-width:768px){

    .fmw-hover-overlay{
        padding:16px;
    }

    .fmw-hover-overlay h3{
        font-size:18px;
    }

    .fmw-hover-overlay p{
        font-size:12px;
        line-height:1.5;
    }

}






/* =========================
      BODY
========================= */

body{
    overflow-x:hidden;
    background:#f7f3ed;
}

/* =========================
      HERO SECTION
========================= */

.fmw-repair-hero{
    padding:110px 0 90px;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,0.62),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');
    background-size:cover;
    background-position:center;
}

.fmw-repair-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,165,76,0.12);
    border-radius:50%;
    top:-220px;
    right:-150px;
    filter:blur(100px);
}

/* Grid */

.fmw-repair-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* Left Content */

.fmw-repair-content span{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:24px;
}

.fmw-repair-content h1{
    font-size:70px;
    line-height:1.05;
    color:#fff;
    font-weight:800;
    margin-bottom:24px;
}

.fmw-repair-content p{
    color:#e8e8e8;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:650px;
}

/* Buttons */

.fmw-repair-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.fmw-repair-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
}

.fmw-repair-btn.primary{
    background:#d4a54c;
    color:#111;
}

.fmw-repair-btn.primary:hover{
    background:#fff;
    transform:translateY(-4px);
}

.fmw-repair-btn.secondary{
    border:2px solid rgba(255,255,255,0.4);
    color:#fff;
    background:rgba(255,255,255,0.08);
}

.fmw-repair-btn.secondary:hover{
    background:#fff;
    color:#111;
}

/* Right Box */

.fmw-repair-floating{
    background:#fff;
    border-radius:32px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18);
}

.fmw-repair-floating h3{
    font-size:32px;
    color:#111;
    margin-bottom:18px;
    font-weight:800;
}

.fmw-repair-floating p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* Stats */

.fmw-repair-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.fmw-repair-stat-box{
    background:#f8f8f8;
    border-radius:20px;
    padding:20px;
    text-align:center;
}

.fmw-repair-stat-box h4{
    font-size:34px;
    color:#d4a54c;
    margin-bottom:8px;
    font-weight:800;
}

.fmw-repair-stat-box span{
    color:#555;
    font-size:14px;
    font-weight:600;
}

/* =========================
      SERVICES SECTION
========================= */

.fmw-repair-services{
    padding:100px 0;
}

/* Heading */

.fmw-repair-heading{
    text-align:center;
    margin-bottom:70px;
}

.fmw-repair-heading span{
    display:inline-block;
    color:#b88a2f;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:18px;
}

.fmw-repair-heading h2{
    font-size:58px;
    color:#111;
    font-weight:800;
    margin-bottom:18px;
}

.fmw-repair-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Grid */

.fmw-repair-service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Card */

.fmw-repair-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    transition:0.5s ease;
    box-shadow:0 12px 45px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.04);
    display:flex;
    flex-direction:column;
    height:100%;
}

.fmw-repair-card:hover{
    transform:translateY(-12px);
}

/* Image */

.fmw-repair-card-img{
    height:260px;
    overflow:hidden;
    position:relative;
}

.fmw-repair-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;
}

.fmw-repair-card:hover img{
    transform:scale(1.08);
}

/* Overlay */

.fmw-repair-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.68),
        rgba(0,0,0,0.08)
    );
}

/* Content */

.fmw-repair-card-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.fmw-repair-card-content h3{
    font-size:30px;
    color:#111;
    margin-bottom:14px;
    font-weight:800;
}

.fmw-repair-card-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:24px;
    flex:1;
}

/* List */

.fmw-repair-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:25px;
}

.fmw-repair-list-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f8f8;
    padding:14px 16px;
    border-radius:18px;
    transition:0.3s ease;
}

.fmw-repair-list-item:hover{
    background:#111;
}

.fmw-repair-list-item:hover span{
    color:#fff;
}

.fmw-repair-list-item i{
    width:36px;
    height:36px;
    background:#d4a54c;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.fmw-repair-list-item span{
    font-size:14px;
    color:#222;
    font-weight:600;
}

/* Button */

.fmw-repair-btn-card{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:54px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s ease;
}

.fmw-repair-btn-card:hover{
    background:#d4a54c;
    color:#111;
}

/* CTA */

.fmw-repair-cta{
    padding:0 0 100px;
}

.fmw-repair-cta-box{
    background:#111;
    border-radius:40px;
    padding:70px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.fmw-repair-cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    top:-120px;
    right:-80px;
    filter:blur(50px);
}

.fmw-repair-cta-box h2{
    font-size:56px;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.fmw-repair-cta-box p{
    color:#d9d9d9;
    max-width:760px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.fmw-repair-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d4a54c;
    color:#111;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s ease;
    position:relative;
    z-index:2;
}

.fmw-repair-cta-btn:hover{
    background:#fff;
}

/* Responsive */

@media(max-width:1200px){

    .fmw-repair-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .fmw-repair-hero{
        padding:80px 0 70px;
    }

    .fmw-repair-content h1{
        font-size:42px;
    }

    .fmw-repair-content p{
        font-size:14px;
    }

    .fmw-repair-btn{
        width:100%;
    }

    .fmw-repair-floating{
        padding:24px;
    }

    .fmw-repair-stats{
        grid-template-columns:1fr;
    }

    .fmw-repair-services{
        padding:70px 0;
    }

    .fmw-repair-heading h2{
        font-size:38px;
    }

    .fmw-repair-service-grid{
        grid-template-columns:1fr;
    }

    .fmw-repair-card-content{
        padding:22px;
    }

    .fmw-repair-card-content h3{
        font-size:24px;
    }

    .fmw-repair-cta{
        padding-bottom:70px;
    }

    .fmw-repair-cta-box{
        padding:45px 24px;
        border-radius:28px;
    }

    .fmw-repair-cta-box h2{
        font-size:34px;
    }

}



/* =========================
      BODY FIX
========================= */

body{
    overflow-x:hidden;
    background:#f7f3ed;
}

/* =========================
      HERO SECTION
========================= */

.fmw-room-hero{
    padding:110px 0 90px;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600');
    background-size:cover;
    background-position:center;
}

.fmw-room-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(212,165,76,0.12);
    border-radius:50%;
    top:-200px;
    right:-120px;
    filter:blur(100px);
}

/* Grid */

.fmw-room-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* Left Content */

.fmw-room-content span{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:24px;
}

.fmw-room-content h1{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    font-weight:800;
    margin-bottom:24px;
}

.fmw-room-content p{
    color:#e8e8e8;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:650px;
}

/* Buttons */

.fmw-room-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.fmw-room-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
}

.fmw-room-btn.primary{
    background:#d4a54c;
    color:#111;
}

.fmw-room-btn.primary:hover{
    background:#fff;
    transform:translateY(-4px);
}

.fmw-room-btn.secondary{
    border:2px solid rgba(255,255,255,0.4);
    color:#fff;
    background:rgba(255,255,255,0.08);
}

.fmw-room-btn.secondary:hover{
    background:#fff;
    color:#111;
}

/* Floating Stats */

.fmw-room-floating{
    background:#fff;
    border-radius:32px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18);
}

.fmw-room-floating h3{
    font-size:32px;
    color:#111;
    margin-bottom:18px;
    font-weight:800;
}

.fmw-room-floating p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

/* Stats */

.fmw-room-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.fmw-room-stat-box{
    background:#f8f8f8;
    border-radius:20px;
    padding:20px;
    text-align:center;
}

.fmw-room-stat-box h4{
    font-size:34px;
    color:#d4a54c;
    margin-bottom:8px;
    font-weight:800;
}

.fmw-room-stat-box span{
    color:#555;
    font-size:14px;
    font-weight:600;
}

/* =========================
      SERVICES SECTION
========================= */

.fmw-room-services{
    padding:100px 0;
    background:#f7f3ed;
}

/* Heading */

.fmw-room-heading{
    text-align:center;
    margin-bottom:70px;
}

.fmw-room-heading span{
    display:inline-block;
    color:#b88a2f;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:18px;
}

.fmw-room-heading h2{
    font-size:58px;
    color:#111;
    font-weight:800;
    margin-bottom:18px;
}

.fmw-room-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Grid */

.fmw-room-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.fmw-room-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    transition:0.5s ease;
    box-shadow:0 12px 45px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.04);
    display:flex;
    flex-direction:column;
    height:100%;
}

.fmw-room-card:hover{
    transform:translateY(-12px);
}

/* Image */

.fmw-room-card-img{
    height:250px;
    overflow:hidden;
    position:relative;
}

.fmw-room-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;
}

.fmw-room-card:hover img{
    transform:scale(1.08);
}

/* Overlay */

.fmw-room-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.68),
        rgba(0,0,0,0.08)
    );
}

/* Card Content */

.fmw-room-card-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.fmw-room-card-content h3{
    font-size:28px;
    color:#111;
    margin-bottom:14px;
    font-weight:800;
    line-height:1.3;
}

.fmw-room-card-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:24px;
    flex:1;
}

/* Button */

.fmw-service-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:54px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s ease;
}

.fmw-service-btn:hover{
    background:#d4a54c;
    color:#111;
    transform:translateY(-3px);
}

/* =========================
      CTA SECTION
========================= */

.fmw-room-cta{
    padding:0 0 100px;
    background:#f7f3ed;
}

.fmw-room-cta-box{
    background:#111;
    border-radius:40px;
    padding:70px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.fmw-room-cta-box::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    top:-120px;
    right:-80px;
    filter:blur(50px);
}

.fmw-room-cta-box h2{
    font-size:56px;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.fmw-room-cta-box p{
    color:#d9d9d9;
    max-width:760px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.fmw-room-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d4a54c;
    color:#111;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s ease;
    position:relative;
    z-index:2;
}

.fmw-room-cta-btn:hover{
    background:#fff;
    transform:translateY(-4px);
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width:1200px){

    .fmw-room-grid{
        grid-template-columns:1fr;
    }

    .fmw-room-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .fmw-room-hero{
        padding:80px 0 70px;
    }

    .fmw-room-content h1{
        font-size:44px;
    }

    .fmw-room-content p{
        font-size:14px;
    }

    .fmw-room-btn{
        width:100%;
    }

    .fmw-room-floating{
        padding:24px;
    }

    .fmw-room-stats{
        grid-template-columns:1fr;
    }

    .fmw-room-services{
        padding:70px 0;
    }

    .fmw-room-heading h2{
        font-size:38px;
    }

    .fmw-room-service-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .fmw-room-card-content{
        padding:22px;
    }

    .fmw-room-card-content h3{
        font-size:24px;
    }

    .fmw-room-cta{
        padding-bottom:70px;
    }

    .fmw-room-cta-box{
        padding:45px 24px;
        border-radius:28px;
    }

    .fmw-room-cta-box h2{
        font-size:34px;
    }

    .fmw-room-cta-box p{
        font-size:14px;
    }

}








  /* ===================================
  PREMIUM MODERN CARD SLIDER
  ===================================*/

  .modern-card-section{
  padding:80px 0;
  background:#f3f0ea;
  overflow:hidden;
  position:relative;
  }

  .modern-card-wrap{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:20px 0;
  }

  /* SLIDER TRACK */
  .modern-card-track{
  display:flex;
  gap:35px;
  width:max-content;
  animation:modernSlide 35s linear infinite;
  }

  .modern-card-wrap:hover .modern-card-track{
  animation-play-state:paused;
  }

  /* CARD */
  .modern-service-card{
  width:340px;
  min-width:340px;
  background:#1d1d1f;
  border-radius:32px;
  overflow:hidden;
  position:relative;
  transition:.45s ease;
  border:1.5px solid rgba(193,154,107,0.35);
  box-shadow:0 15px 45px rgba(0,0,0,0.12);
  }

  /* HOVER */
  .modern-service-card:hover{
  transform:translateY(-12px);
  border-color:#c19a6b;
  box-shadow:0 28px 65px rgba(0,0,0,0.22);
  }

  /* IMAGE */
  .modern-service-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition:1s ease;
  }

  .modern-service-card:hover img{
  transform:scale(1.08);
  }

  /* CONTENT */
  .modern-card-content{
  padding:30px 28px 32px;
  text-align:center;
  position:relative;
  background:#1d1d1f;
  }

  /* TAG */
  .modern-card-content span{
  display:inline-block;
  background:#c19a6b;
  color:#111;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
  }

  /* TITLE */
  .modern-card-content h3{
  color:#fff;
  font-size:30px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:1px;
  }

  /* DESCRIPTION */
  .modern-card-content p{
  color:#d5d5d5;
  font-size:17px;
  line-height:1.9;
  margin:0;
  }

  /* GOLD BOTTOM LINE */
  .modern-service-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:#c19a6b;
  transform:scaleX(0);
  transition:.10s ease;
  }

  .modern-service-card:hover::after{
  transform:scaleX(1);
  }

  /* SHINE EFFECT */
  .modern-service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,0.2),
  transparent
  );
  transform:skewX(-25deg);
  transition:1s;
  z-index:2;
  }

  .modern-service-card:hover::before{
  left:130%;
  }

  /* ANIMATION */
  @keyframes modernSlide{

  0%{
  transform:translateX(0);
  }

  100%{
  transform:translateX(-50%);
  }

  }

  /* RESPONSIVE */
  @media(max-width:768px){

  .modern-card-section{
  padding:60px 0;
  }

  .modern-card-track{
  gap:22px;
  }

  .modern-service-card{
  width:280px;
  min-width:280px;
  border-radius:24px;
  }

  .modern-service-card img{
  height:220px;
  }

  .modern-card-content{
  padding:24px 20px 28px;
  }

  .modern-card-content h3{
  font-size:24px;
  }

  .modern-card-content p{
  font-size:15px;
  line-height:1.7;
  }

  }