/*==========================================
WEAR CLEAN - PREMIUM FOUNDATION
==========================================*/

:root {

    --primary: #6B8E23;
    --primary-dark: #405810;
    --primary-light: #EEF4E3;

    --secondary: #D8CBA8;

    --ivory: #FAF8F2;

    --white: #ffffff;

    --heading: #2D3227;

    --text: #646464;

    --border: #ECE8DA;

    --radius: 18px;

    --radius-lg: 28px;

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, .05);

    --shadow-md: 0 20px 50px rgba(0, 0, 0, .08);

    --shadow-lg: 0 30px 80px rgba(0, 0, 0, .12);

    --transition: .35s cubic-bezier(.4, 0, .2, 1);

}


/*==========================================

RESET

==========================================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Lato', sans-serif;

    color: var(--text);

    background: #fff;

    line-height: 1.75;

    

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;
    padding: 0;

}

.container {

    max-width: 1360px;

}

.section-padding {

    padding: 50px 0;

}


/*==========================================

TYPOGRAPHY

==========================================*/


p {

    font-size: 17px;

    color: var(--text);

}


/*==========================================

SECTION HEADING

==========================================*/

.wc-section-heading {

    max-width: 720px;

    margin: auto auto 60px;

}

.wc-section-tag {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 40px;

    background: var(--primary-light);

    color: var(--primary);

    font-family: 'Montserrat';

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    margin-bottom: 20px;

}


/*==========================================

BUTTONS

==========================================*/

.wc-btn-primary,
.wc-btn-outline,
.wc-btn-light {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 56px;

    border-radius: 100px;

    transition: var(--transition);

    font-family: 'Montserrat';

    font-weight: 600;

}

.wc-btn-primary {

    background: var(--primary);

    color: #fff;

}

.wc-btn-primary:hover {

    transform: translateY(-4px);

    background: var(--primary-dark);

}

.wc-btn-outline {

    border: 2px solid var(--primary);

    color: var(--primary);

}

.wc-btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

.wc-btn-light {

    background: #fff;

    color: var(--heading);

    box-shadow: var(--shadow-sm);

}

.wc-btn-light:hover {

    transform: translateY(-4px);

}


/*==========================================

HEADER

==========================================*/

.wc-header {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 999;

    padding: 10px 0;

    transition: .35s;

    border-bottom: 1px solid rgba(175, 175, 175, 0.351);
    background-color: white;
    

}

.wc-header.scrolled {

    padding: 8px 0;

    background: var(--ivory);

    backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);

    border-bottom: 1px solid rgba(175, 175, 175, 0.351);

}

.wc-header.scrolled .wc-logo img{
    height: 72px;
}

.wc-navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}

.wc-logo {

    flex-shrink: 0;

}

.wc-nav {

    flex: 1;

    display: flex;

    justify-content: center;

    padding-left: 40px;

}

.wc-nav ul {

    display: flex;

    gap: 40px;

    margin: 0;

    padding: 0;

}

.wc-header-actions {

    flex-shrink: 0;

    display: flex;

    gap: 12px;

}

.wc-header-actions i {
    padding: 0 5px;
}

.wc-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}

.wc-logo img {

    height: 72px;
    object-fit: cover;

    width: auto;

    display: block;

    transition: 0.3s ease;

}

.wc-logo:hover img {

    transform: scale(1.05);

}

.wc-nav ul {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 38px;

}

.wc-nav a {

    position: relative;

    font-family: 'Montserrat';

    font-size: 15px;

    font-weight: 600;

    color: var(--heading);

}

.wc-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}



.wc-nav a:hover::after {

    width: 100%;

}

.wc-mobile-toggle{
    display: none;
}

@media (max-width:576px) {

    .wc-header{
        max-width: 410px;
    }

    .wc-navbar {
        position: relative;
    }

    .wc-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: none;
        background: transparent;
        cursor: pointer;
        font-size: 22px;
        color: var(--heading);
    }

    .wc-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s;
    }

    .wc-nav ul {
        flex-direction: column;
        gap: 18px;
    }

    .wc-header.menu-open .wc-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .wc-header-actions .wc-btn-outline {
        display: none;
    }

    .wc-header-actions .wc-btn-primary {
        padding: 10px 14px;
        font-size: 14px;
    }

        /* Hover */
        .wc-mobile-toggle:hover {
            background: var(--primary);
            color: #fff;
        }
    
        /* Menu Open */
        .wc-header.menu-open .wc-mobile-toggle {
            background: var(--primary);
            color: #fff;
        }

      .wc-nav a {
                    display: block;
                    padding: 12px 16px;
                    border-radius: 8px;
                    transition: 0.3s ease;
                }
        
                .wc-nav a:hover {
                    background: var(--primary);
                    color: #fff;
                }

               

}


/*==========================================

HERO

==========================================*/

.wc-hero {

    padding: 90px 0 0px;

    background: var(--primary-dark);

    position: relative;

    overflow: hidden;

}

.wc-hero-content {
    padding: 60px 0 0;
}

.wc-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: #fff;

    border-radius: 50px;

    box-shadow: var(--shadow-sm);

    margin-bottom: 28px;

    color: #122e1f;

}

h2.hero-title {
    font-family: 'Playfair Display';
    color: var(--ivory);
    font-size: 60px;
    font-weight: 900px;
    letter-spacing: 0.5px;

    margin-bottom: 25px;

}

.wc-hero h2 span {

    display: block;
    font-size: 60px;
    font-weight: 800;

    color: #e7b96f;

}

.wc-hero p {

    max-width: 540px;

    margin-bottom: 38px;

    color: rgb(221, 218, 218);

}

.wc-hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    color: white;

}

.wc-hero-buttons i {
    font-size: 18px;
    padding: 0 8px;
}

.wc-trust {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 60px;

}

.wc-trust-item {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    padding: 24px;

    border-radius: 18px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.wc-trust-item:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}

.wc-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 22px;

}

/*==================================
HERO STATS
==================================*/

/* ===========================
   HERO STATS
=========================== */

.wc-hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.wc-hero-stats>div {
    position: relative;
    padding-right: 20px;
}

.wc-hero-stats>div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: rgba(0, 0, 0, 0.12);
}

.wc-hero-stats h3 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    color: #fec76f;
    /* Olive Green */
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.wc-hero-stats span {
    display: block;
    font-size: 0.95rem;
    color: var(--ivory);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .wc-hero{
        padding: 110px 0 90px;
    }
    
    .wc-hero-content{
        padding: 30px 0;
    }

    span.wc-badge{
        font-size: 12px;
        font-weight: 600;
    }

    h2.hero-title{
        font-size: 42px;
    }

        .wc-hero h2 span{
            font-size: 42px;
        }

        .wc-hero-buttons> .wc-btn-primary{
            font-size: 14px;
            padding: 10px;
        }



    .wc-hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        margin-top: 35px;
    }

    .wc-hero-stats>div {
        
        padding-right: 0;
    }

    .wc-hero-stats>div::after {
        display: none;
    }

    .wc-hero-stats h3 {
        font-size: 1.6rem;
    }

    .wc-hero-stats span {
        font-size: 0.85rem;
    }

    .stat1 .stat2 .stat3{
       width: 30px;
    }

}

@media (max-width: 480px) {

    .wc-hero-stats {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
    }

    .wc-hero-stats>div {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .wc-hero-stats>div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

}

.wc-btn-hero{
    display: inline-flex;
    
        align-items: center;
    
        justify-content: center;
    
        min-width: 180px;
    
        height: 56px;
    
        border-radius: 100px;
    
        transition: var(--transition);
    
        font-family: 'Montserrat';
    
        font-weight: 600;

        color: var(--ivory);
        border: 2px solid var(--ivory);
        
}

.wc-btn-hero:hover {

    background: var(--primary);

    color: #fff;

}

/*==========================================

HERO IMAGE

==========================================*/

.wc-hero-image {

    position: relative;
    
    width: 100%;
    height: 100%;

    margin-left: auto;
   
}

.wc-circle {

    position: absolute;

    width: 380px;

    height: 380px;

    left: 50%;

    top: 60px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #c8c9c5;

   
}

.wc-hero-image img {

    position: relative;

    z-index: 2;

    
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* ===============================
   Floating Luxury Card
================================= */

.wc-floating-card {
    position: absolute;
    bottom: 45px;
    left: -50px;
    /* Adjust according to your layout */
    width: 320px;
    padding: 26px 30px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(107, 142, 35, 0.12);
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10),
        0 6px 18px rgba(107, 142, 35, 0.08);
    z-index: 10;
    transition: all 0.35s ease;
}

.wc-floating-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.14),
        0 8px 25px rgba(107, 142, 35, 0.12);
}

/* Small Badge */

.wc-floating-card span {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(107, 142, 35, 0.10);
    color: #6B8E23;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 14px;
}

/* Heading */

.wc-floating-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #232323;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Description */

.wc-floating-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {

    .wc-floating-card {
        position: absolute;
        left: 20px;
        width: 80%;
        margin-top: 45px;
        padding: 12px;
        border-radius: 20px;
    }

    .wc-floating-card h4{
        font-size: 14px;
    }

    .wc-floating-card p{
        font-size: 12px;
        margin: 0;
    }

    .wc-hero-image img {
        border-radius: 10px;
    }
    .wc-floating-badge{
        top: 10px
    }

}

@media (max-width: 576px) {

    .wc-floating-card {
        padding: 20px;
    }

    .wc-floating-card h4 {
        font-size: 1.2rem;
    }

    .wc-floating-card p {
        font-size: 0.9rem;
    }

    .wc-floating-card span {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

}

.wc-floating-badge {

    position: absolute;

    top: 50px;

    right: 0;

    background: var(--primary);

    color: #fff;

    padding: 12px 20px;

    border-radius: 40px;

    z-index: 4;

}

@keyframes heroFloat {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}

/*=========================================================
STATISTICS
=========================================================*/

.wc-stats {

    background: #fff;

    position: relative;

    z-index: 2;

}

.wc-stat-card {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 24px;

    padding: 20px 15px;

    text-align: center;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

    height: 100%;

}

.wc-stat-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-md);

}

.wc-stat-number {

    font-family: 'Montserrat', sans-serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--primary);

    line-height: 1.5;

    margin-bottom: 15px;

}

.wc-stat-card h5 {

    font-size: 16px;

    margin-bottom: 10px;

}

.wc-stat-card p {

    margin: 0;

}



/*=========================================================
WHY CHOOSE US
=========================================================*/

.wc-why {

    background: var(--ivory);

}

/*=========================================================
WHY WEAR CLEAN
=========================================================*/

.wc-why {

    background: var(--ivory);

    position: relative;

    overflow: hidden;

}

.wc-why::before {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(107, 142, 35, .05);

    border-radius: 50%;

    top: -180px;

    right: -150px;

}

.wc-why::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(216, 203, 168, .18);

    border-radius: 50%;

    bottom: -180px;

    left: -150px;

}


/*=========================================================
GRID
=========================================================*/

.wc-bento-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-template-areas:

        "fabric pickup pickup"

        "quality customer stain"

        "wedding wedding wedding";

    gap: 28px;

    position: relative;

    z-index: 2;

}


/*=========================================================
GRID AREAS
=========================================================*/

#fabric {

    grid-area: fabric;

}

#pickup {

    grid-area: pickup;

}

#quality {

    grid-area: quality;

}

#customer {

    grid-area: customer;

}

#stain {

    grid-area: stain;

}

#wedding {

    grid-area: wedding;

}


/*=========================================================
DEFAULT CARD
=========================================================*/

.wc-bento-card {

    background: #fff;

    border-radius: 24px;

    padding: 38px;

    border: 1px solid var(--border);

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    position: relative;

    overflow: hidden;

    transition: all .35s ease;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    min-height: 270px;

}

.wc-bento-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.wc-bento-card::before {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background: rgba(107, 142, 35, .05);

    right: -55px;

    top: -55px;

    transition: .4s;

}

.wc-bento-card:hover::before {

    transform: scale(1.2);

}


/*=========================================================
ICON
=========================================================*/

.wc-bento-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: var(--primary-light);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    font-size: 28px;

    margin-bottom: 25px;

    transition: .35s;

}

.wc-bento-card:hover .wc-bento-icon {

    transform: rotate(-8deg) scale(1.08);

}


/*=========================================================
TYPOGRAPHY
=========================================================*/

.wc-bento-card h3 {

    font-family: 'Montserrat', sans-serif;

    font-size: 34px;

    color: #fff;

    line-height: 1.25;

    margin-bottom: 18px;

}

.wc-bento-card h4 {

    font-family: 'Montserrat', sans-serif;

    font-size: 24px;

    color: var(--heading);

    margin-bottom: 16px;

}

.wc-bento-card p {

    color: var(--text);

    margin-bottom: 0;

    line-height: 1.8;

}


/*=========================================================
IMAGE CARDS
=========================================================*/

.wc-image-card {

    position: relative;

    color: #fff;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    min-height: 320px;

}

#pickup {

    background: url("../images/free-pickup.webp") center center;

    background-size: cover;

}

#wedding {

    background: url("../images/wedding-gown.webp") center center;

    background-size: cover;

    min-height: 380px;

}


/*=========================================================
OVERLAY
=========================================================*/

.wc-card-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,

            rgba(0, 0, 0, .15),

            rgba(0, 0, 0, 0.773));

}

.wc-card-content {

    position: relative;

    z-index: 2;

    width: 100%;

}

.wc-image-card p {

    color: rgba(255, 255, 255, .92);
    width: 60%;

}

.wc-image-card .wc-bento-icon {

    background: rgba(255, 255, 255, .18);

    color: #fff;

    backdrop-filter: blur(12px);

}


/*=========================================================
BUTTON
=========================================================*/

.wc-small-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 14px 26px;

    border-radius: 50px;

    background: #fff;

    color: var(--primary);

    font-family: 'Montserrat', sans-serif;

    font-weight: 600;

    transition: .35s;

}

.wc-small-btn:hover {

    background: var(--primary);

    color: #fff;

    transform: translateY(-3px);

}

.wc-small-btn i {

    transition: .3s;

}

.wc-small-btn:hover i {

    transform: translateX(4px);

}


/*=========================================================
HOVER ZOOM
=========================================================*/

.wc-image-card {

    transition: .5s;

}

.wc-image-card:hover {

    background-size: 110%;

}




/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .wc-bento-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-areas:

            "pickup pickup"

            "fabric quality"

            "customer stain"

            "wedding wedding";

    }

    .wc-image-card p{
        width: 100%;
    }

}

@media(max-width:767px) {

    .wc-bento-grid {

        grid-template-columns: 1fr;

        grid-template-areas:

            "pickup"

            "fabric"

            "quality"

            "customer"

            "stain"

            "wedding";

    }


    .wc-bento-card {

        min-height: auto;

        padding: 20px;

    }

    #pickup,

    #wedding {

        min-height: 300px;
        background-position: right ; 

    }

    

    .wc-bento-card h3 {

        font-size: 28px;

    }

}


/*=========================================================
PROCESS SECTION
=========================================================*/

.wc-process {

    background: #fff;

    position: relative;

    overflow: hidden;

}

.wc-process::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: rgba(107, 142, 35, .05);

    top: -180px;

    right: -180px;

}

.wc-process::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(216, 203, 168, .15);

    bottom: -150px;

    left: -120px;

}


/*=========================================================
TIMELINE
=========================================================*/

.wc-process-timeline {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 25px;

    margin-top: 70px;

    z-index: 2;

}


/*=========================================================
CENTER LINE
=========================================================*/

.wc-process-progress {

    position: absolute;

    top: 70px;

    left: 10%;

    width: 80%;

    height: 3px;

    background: var(--border);

    z-index: 0;

}

.wc-process-progress::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background: linear-gradient(90deg, var(--primary), var(--secondary));

}


/*=========================================================
STEP
=========================================================*/

.wc-process-step {

    position: relative;

    flex: 1;

    text-align: center;

    z-index: 2;

}


/*=========================================================
NUMBER CIRCLE
=========================================================*/

.wc-process-circle {

    width: 130px;

    height: 130px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    border: 4px solid var(--primary-light);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

    transition: .35s;

}

.wc-process-circle span {

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 700;

    color: var(--primary);

    margin-bottom: 8px;

}

.wc-process-circle i {

    font-size: 34px;

    color: var(--primary);

}

.wc-process-step:hover .wc-process-circle {

    transform: translateY(-10px);

    border-color: var(--primary);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}


/*=========================================================
CARD
=========================================================*/

.wc-process-card {

    margin-top: 35px;

    background: #fff;

    border-radius: 22px;

    padding: 30px;

    border: 1px solid var(--border);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    transition: .35s;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}

.wc-process-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.wc-process-card h4 {

    font-family: 'Montserrat', sans-serif;

    font-size: 22px;

    color: var(--heading);

    margin-bottom: 15px;

}

.wc-process-card p {

    color: var(--text);

    line-height: 1.8;

    margin-bottom: 0;

}


/*=========================================================
HOVER
=========================================================*/

.wc-process-step:hover h4 {

    color: var(--primary);

}

.wc-process-step:hover .wc-process-circle i {

    transform: scale(1.15);

    transition: .35s;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .wc-process-timeline {

        flex-direction: column;

        gap: 50px;

        padding-left: 50px;

    }

    .wc-process-progress {

        width: 3px;

        height: 100%;

        left: 64px;

        top: 0;

    }

    .wc-process-progress::after {

        width: 100%;

        height: 100%;

    }

    .wc-process-step {

        display: flex;

        align-items: flex-start;

        gap: 30px;

        text-align: left;

    }

    .wc-process-circle {

        width: 95px;

        height: 95px;

        flex-shrink: 0;

    }

    .wc-process-circle span {

        font-size: 14px;

    }

    .wc-process-circle i {

        font-size: 24px;

    }

    .wc-process-card {

        margin-top: 0;

        width: 100%;

        min-height: auto;

    }

}

@media(max-width:576px) {

    .wc-process-timeline {

        padding-left: 0;

    }

    .wc-process-progress {

        display: none;

    }

    .wc-process-step {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .wc-process-card {

        margin-top: 20px;

    }

}

/*=========================================================
HOVER EFFECTS
=========================================================*/

.wc-stat-card,
.wc-bento-card,
.wc-process-card {

    transition: all .35s ease;

}

.wc-process-card:hover .wc-process-number {

    transform: scale(1.08);

    background: var(--primary-dark);

}

.wc-bento-card:hover .wc-bento-icon {

    transform: rotate(-8deg) scale(1.08);

}



/*=========================================================
SECTION BACKGROUNDS
=========================================================*/

.wc-stats {

    padding: 70px 0;

}

.wc-why {

    padding: 100px 0;

}

.wc-process {

    padding: 100px 0;

}



/*=========================================================
SCROLL ANIMATION
=========================================================*/

.fade-up {

    opacity: 0;

    transform: translateY(40px);

    transition: all .8s ease;

}

.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}



/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px) {

    .wc-bento-grid {

        grid-template-columns: 1fr;

    }

    .wc-bento-large,
    .wc-bento-small {

        grid-column: span 1;

    }

    .wc-process-row::before {

        display: none;

    }

    .wc-process-card {

        margin-bottom: 40px;

    }

}

@media(max-width:768px) {

    .wc-stat-number {

        font-size: 40px;

    }

    .wc-bento-card {

        padding: 30px;

    }

}

/* ===========================
   SPECIALIZATION SECTION
=========================== */

.wc-specialization {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

/* Decorative Shape */

.wc-specialization::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-light);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: .7;
}

.wc-special-left {
    position: relative;
    z-index: 2;
}

.wc-special-left h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--heading);
    margin: 18px 0 20px;
    font-weight: 700;
}

.wc-special-left p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 460px;
}

/* Section Tag */

.wc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
}

.wc-section-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===========================
   SPECIALIZATION CARDS
=========================== */

.wc-special-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wc-special-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.wc-special-card:hover::before {
    transform: scaleX(1);
}

.wc-special-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.wc-special-card i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.wc-special-card:hover i {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-8deg) scale(1.08);
}

.wc-special-card h5 {
    font-size: 21px;
    color: var(--heading);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* ===========================
   BUTTON
=========================== */

.wc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.wc-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:991px) {

    .wc-special-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .wc-special-left p {
        margin: 0 auto 30px;
    }

    .wc-special-left h2 {
        font-size: 38px;
    }

    .wc-btn-primary{
        padding: 20px;
        min-width: 100px;
        height: auto;
    }

}

@media (max-width:767px) {

    .wc-special-left h2 {
        font-size: 30px;
    }

    .wc-special-left p {
        font-size: 16px;
    }

    .wc-special-card {
        padding: 30px 20px;
    }

    .wc-special-card i {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .wc-special-card h5 {
        font-size: 18px;
    }

}

/*=========================================
    GARMENTS SECTION
=========================================*/

.wc-garments {
    background: rgba(128, 128, 128, 0.222);
    position: relative;
    overflow: hidden;
}

.wc-garments::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: var(--primary-light);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    opacity: .7;
}

.wc-garments .container {
    position: relative;
    z-index: 2;
}

/*=========================================
    SECTION HEADING
=========================================*/

.wc-section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

.wc-section-heading h2 {
    font-family: 'Playfair Display';
    font-size: 48px;
    font-weight: 800;
    color: var(--heading);
    margin: 20px 0;
    line-height: 1.2;
}

.wc-section-heading p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    max-width: 620px;
    margin: auto;
}

/*=========================================
    GARMENT CARD
=========================================*/

.wc-garment-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}

.wc-garment-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/*=========================================
    IMAGE
=========================================*/

.wc-category-image {
    height: 260px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.wc-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.wc-garment-category:hover img {
    transform: scale(1.08);
}

/*=========================================
    FLOATING ICON
=========================================*/

.wc-category-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 215px;

    border: 8px solid var(--white);

    transition: .4s;
    z-index: 5;
}

.wc-garment-category:hover .wc-category-icon {
    transform: translateX(-50%) rotate(-8deg) scale(1.08);
}

/*=========================================
    CONTENT
=========================================*/

.wc-category-content {
    padding: 70px 20px 35px;
}

.wc-category-content h4 {
    text-align: center;
    color: var(--heading);
    margin-bottom: 30px;
    font-size: 28px;
    position: relative;
}

.wc-category-content h4::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    border-radius: 20px;
}

/*=========================================
    LIST
=========================================*/

/*==============================
Garment Grid
==============================*/

.wc-garment-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
}

/*==============================
Garment Item
==============================*/

.wc-garment-item {

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px;

    background: #fff;

    border: 1px solid rgba(107, 142, 35, .12);

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);

    transition: .35s ease;

}

.wc-garment-item:hover {

    transform: translateY(-4px);

    border-color: var(--primary);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);

}

/*==============================
Icon
==============================*/

.wc-garment-item i {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 12px;

    transition: .35s;

}

.wc-garment-item:hover i {

    background: var(--primary);

    color: #fff;

    transform: rotate(12deg);

}

/*==============================
Text
==============================*/

.wc-garment-item span {

    font-size: 12px;

    font-weight: 600;

    color: var(--heading);

}

/*==============================
Mobile
==============================*/

@media(max-width:576px) {

    .wc-garment-grid {

        gap: 10px;

    }

    .wc-garment-item {

        padding: 14px;

    }

    .wc-garment-item span {

        font-size: 15px;

    }

    .wc-garment-item i {

        width: 30px;

        height: 30px;

        font-size: 13px;

    }

}

/*=========================================
    PREMIUM QUOTE
=========================================*/

.wc-premium-quote {

    margin-top: 80px;

    background: linear-gradient(135deg,
            #fffdf8,
            var(--primary-light));

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 60px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.wc-premium-quote::before {

    content: "❦";

    position: absolute;

    left: 40px;

    top: 40px;

    font-size: 70px;

    color: rgba(107, 142, 35, .12);
}

.wc-premium-quote::after {

    content: "❦";

    position: absolute;

    right: 40px;

    bottom: 20px;

    font-size: 70px;

    color: rgba(107, 142, 35, .12);

    transform: rotate(180deg);
}

.wc-premium-quote h3 {

    color: var(--heading);

    font-size: 38px;

    margin-bottom: 20px;
}

.wc-premium-quote p {

    max-width: 700px;

    margin: auto;

    line-height: 1.9;

    color: var(--text);

    font-size: 17px;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-section-heading {
        margin-bottom: 50px;
    }

    .wc-section-heading h2 {
        font-size: 38px;
    }

    .wc-category-image {
        height: 240px;
    }

    .wc-category-icon {
        top: 195px;
    }

    .wc-premium-quote {
        padding: 45px 30px;
    }

}

@media(max-width:767px) {

    .wc-section-heading h2 {
        font-size: 30px;
    }

    .wc-section-heading p {
        font-size: 16px;
    }

    .wc-category-content {
        padding: 65px 25px 30px;
    }

    .wc-category-content h4 {
        font-size: 24px;
    }

    .wc-garment-list {
        grid-template-columns: 1fr;
    }

    .wc-category-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
        top: 200px;
    }

    .wc-premium-quote h3 {
        font-size: 28px;
    }

    .wc-premium-quote {
        padding: 40px 25px;
    }

}

/*=================================================
            SERVICES SECTION
=================================================*/

.wc-services {
    background: white;
    position: relative;
}
.wc-services .container {
    position: relative;
    z-index: 2;
}

/*=================================================
            LEFT SERVICE LIST
=================================================*/

.wc-service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wc-service-item {

    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 28px;

    border-radius: 18px;

    border: 1px solid var(--border);

    background: var(--white);

    transition: var(--transition);

    cursor: pointer;

}

.wc-service-item:hover {

    transform: translateX(12px);

    border-color: var(--primary);

    box-shadow: var(--shadow-md);

}

.wc-service-item.active {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

    box-shadow: var(--shadow-lg);

}

.wc-service-item span {

    font-size: 42px;

    font-weight: 700;

    color: var(--primary);

    min-width: 70px;

    transition: .3s;

}

.wc-service-item.active span {

    color: #fff;

}

.wc-service-item h4 {

    font-size: 24px;

    margin-bottom: 8px;

    color: var(--heading);

    transition: .3s;

}

.wc-service-item.active h4 {

    color: #fff;

}

.wc-service-item p {

    margin: 0;

    line-height: 1.7;

    color: var(--text);

    transition: .3s;

}

.wc-service-item.active p {

    color: rgba(255, 255, 255, .85);

}

/*=================================================
            RIGHT PREVIEW
=================================================*/

.col-lg-7 {
    position: relative;
}


.wc-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.wc-service-preview {

    position: sticky;

    top: 100px;

    height: 82vh;

    border-radius: 30px;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    box-shadow: var(--shadow-lg);

    transition: background-image .5s ease;

}

.wc-service-preview {

    position: relative;

}

.wc-preview-bg {

    position: absolute;

    inset: 0;

    background-image: url("../images/service1.webp");

    background-size: cover;

    background-position: center;

    transition: .5s;

}

.wc-preview-content {

    position: relative;

    z-index: 5;

    width: 100%;

    padding: 20px 40px;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .92),

            rgba(0, 0, 0, .55),

            rgba(0, 0, 0, .1));

}

.wc-preview-content h3 {

    color: #fff;

    font-size: 42px;

    margin-bottom: 8px;

}

.wc-preview-content p {

    color: rgba(255, 255, 255, .85);

    line-height: 1.8;

    margin-bottom: 12px;

}

.wc-preview-content ul {

    list-style: none;

    padding: 0;

    margin: 0 0 10px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.wc-preview-content li {

    position: relative;

    padding-left: 30px;

    color: #fff;

}

.wc-preview-content li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: #fff;

    font-weight: 700;

}



/*=================================================
            RESPONSIVE
=================================================*/

@media(max-width:991px) {

.wc-service-preview {

        height: 520px;

    }
    .wc-preview-content {

        padding: 35px;

    }

    .wc-preview-content h3 {

        font-size: 30px;

    }

}

@media(max-width:767px) {

    .wc-service-item {

        padding: 20px;

        gap: 18px;

    }

    .wc-service-item span {

        font-size: 28px;

        min-width: 40px;

    }

    .wc-service-item h4 {

        font-size: 20px;

    }

    .wc-preview-content {

        padding: 25px;

    }

    .wc-preview-content h3 {

        font-size: 26px;

    }

    .wc-preview-content ul {

        grid-template-columns: 1fr;

    }

    .wc-service-preview img {

        height: 260px;

    }

}
.wc-service-preview {
    position: sticky;
    top: 100px;
   
    z-index: 1000;
}

/*=================================================
            SERVICE CTA
=================================================*/

.wc-service-cta {
    padding: 0 0 100px;
    background: var(--ivory);
}

.wc-service-cta .container {

    background: linear-gradient(135deg, var(--primary), var(--primary-dark));

    border-radius: var(--radius-lg);

    padding: 70px 60px;

    overflow: hidden;

    position: relative;

    box-shadow: var(--shadow-lg);

}

/* Decorative Circles */

.wc-service-cta .container::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -120px;

    right: -80px;

}

.wc-service-cta .container::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    bottom: -80px;

    left: -60px;

}

/* Content */

.wc-service-cta .row {

    position: relative;

    z-index: 2;

}

.wc-service-cta h2 {

    color: var(--white);

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-weight: 700;

}

.wc-service-cta p {

    color: rgba(255, 255, 255, .9);

    font-size: 18px;

    line-height: 1.8;

    max-width: 580px;

    margin-bottom: 0;

}

/* Buttons */

.wc-cta-buttons {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

.wc-cta-buttons a {

    min-width: 190px;

    text-align: center;

}

/* Primary Button */

.wc-cta-buttons .wc-btn-primary {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 34px;

    border-radius: 50px;

    background: var(--white);

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

}

.wc-cta-buttons .wc-btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

}

/* Outline Button */

.wc-cta-buttons .wc-btn-outline {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 16px 34px;

    border-radius: 50px;

    border: 2px solid rgba(255, 255, 255, .4);

    color: var(--white);

    text-decoration: none;

    font-weight: 600;

    transition: var(--transition);

    backdrop-filter: blur(8px);

}

.wc-cta-buttons .wc-btn-outline:hover {

    background: rgba(255, 255, 255, .12);

    border-color: var(--white);

    transform: translateY(-4px);

}

/*=================================================
            RESPONSIVE
=================================================*/

@media(max-width:991px) {

    .wc-service-cta .container {

        padding: 50px 35px;

        text-align: center;

    }

    .wc-service-cta h2 {

        font-size: 36px;

    }

    .wc-service-cta p {

        max-width: 100%;

        margin-bottom: 35px;

    }

    .wc-cta-buttons {

        justify-content: center;

    }

}

@media(max-width:767px) {

    .wc-service-cta {

        padding: 0 0 70px;

    }

    .wc-service-cta .container {

        padding: 40px 25px;

        border-radius: 22px;

    }

    .wc-service-cta h2 {

        font-size: 28px;

    }

    .wc-service-cta p {

        font-size: 16px;

    }

    .wc-cta-buttons {

        flex-direction: column;

    }

    .wc-cta-buttons a {

        width: 100%;

        min-width: unset;

    }

}

/*=================================================
            SERVICE AREAS
=================================================*/

.wc-service-area {
    background: var(--ivory);
    position: relative;
}

.wc-location-card {

    height: 100%;

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    position: relative;

    overflow: hidden;

    transition: var(--transition);

}

.wc-location-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 5px;

    height: 100%;

    background: var(--primary);

    transition: var(--transition);

}

.wc-location-card::after {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background: var(--primary-light);

    right: -70px;

    bottom: -70px;

    opacity: .6;

    transition: var(--transition);

}

.wc-location-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: var(--primary);

}

.wc-location-card:hover::before {

    width: 100%;

    opacity: .04;

}

.wc-location-card h3 {

    position: relative;

    z-index: 2;

    font-size: 28px;

    color: var(--heading);

    margin-bottom: 20px;

}

.wc-location-card p {

    position: relative;

    z-index: 2;

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 30px;

}

.wc-location-card a {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    font-weight: 600;

    color: var(--primary);

    transition: var(--transition);

}

.wc-location-card a:hover {

    gap: 14px;

    color: var(--primary-dark);

}

/* Optional location icon */

.wc-location-card h3::before {

    content: "📍";

    margin-right: 10px;

    font-size: 20px;

}

/*=================================================
            RESPONSIVE
=================================================*/

@media(max-width:991px) {

    .wc-location-card {

        padding: 35px;

    }

}

@media(max-width:767px) {

    .wc-location-card {

        padding: 28px;

    }

    .wc-location-card h3 {

        font-size: 24px;

    }

    .wc-location-card p {

        font-size: 15px;

        line-height: 1.8;

    }

}

.wc-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.wc-location-tags span {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.wc-location-tags span:hover {
    background: var(--primary);
    color: var(--white);
}

/*=================================================
            TRUST SECTION
=================================================*/

.wc-trust-section {
    background: var(--white);
    position: relative;
}

.wc-trust-card {

    height: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 50px 35px;

    text-align: center;

    transition: var(--transition);

    position: relative;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

.wc-trust-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: var(--primary-light);

    top: -140px;

    right: -120px;

    opacity: .7;

    transition: var(--transition);

}

.wc-trust-card:hover {

    transform: translateY(-10px);

    border-color: var(--primary);

    box-shadow: var(--shadow-lg);

}

.wc-trust-card:hover::before {

    transform: scale(1.3);

}

/*=========================================
                ICON
=========================================*/

.wc-trust-card i {

    width: 90px;

    height: 90px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 34px;

    margin-bottom: 30px;

    transition: var(--transition);

    position: relative;

    z-index: 2;

}

.wc-trust-card:hover i {

    background: var(--primary);

    color: var(--white);

    transform: rotateY(180deg);

}

/*=========================================
                CONTENT
=========================================*/

.wc-trust-card h4 {

    font-size: 28px;

    color: var(--heading);

    margin-bottom: 18px;

    position: relative;

    z-index: 2;

}

.wc-trust-card p {

    color: var(--text);

    line-height: 1.8;

    margin: 0;

    position: relative;

    z-index: 2;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-trust-card {

        padding: 40px 30px;

    }

}

@media(max-width:767px) {

    .wc-trust-card {

        padding: 35px 25px;

    }

    .wc-trust-card i {

        width: 75px;

        height: 75px;

        font-size: 28px;

        margin-bottom: 25px;

    }

    .wc-trust-card h4 {

        font-size: 24px;

    }

}

/*=================================================
                FAQ SECTION
=================================================*/

.wc-faq {
    background: var(--ivory);
    position: relative;
}



.wc-faq .accordion-item {

    border: none;

    border-radius: var(--radius);

    overflow: hidden;

    margin-bottom: 20px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.wc-faq .accordion-item:hover {

    box-shadow: var(--shadow-md);

}

.wc-faq .accordion-button {

    background: var(--white);

    color: var(--heading);

    font-size: 20px;

    font-weight: 600;

    padding: 26px 30px;

    box-shadow: none;

    border: none;

    transition: var(--transition);

}

.wc-faq .accordion-button:not(.collapsed) {

    background: var(--primary);

    color: var(--white);

}

.wc-faq .accordion-button:focus {

    box-shadow: none;

    border: none;

}

/* Custom Icon */

.wc-faq .accordion-button::after {

    width: 40px;

    height: 40px;

    background-image: none;

    content: "+";

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 26px;

    font-weight: 400;

    transition: var(--transition);

}

.wc-faq .accordion-button:not(.collapsed)::after {

    content: "–";

    background: rgba(255, 255, 255, .15);

    align-items: center;

    color: var(--white);

    transform: rotate(180deg);

}

.wc-faq .accordion-body {

    padding: 28px 30px;

    color: var(--text);

    line-height: 1.9;

    background: var(--white);

    border-top: 1px solid var(--border);

}

/* Left Accent Border */

.wc-faq .accordion-item {

    position: relative;

}

.wc-faq .accordion-item::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 5px;

    height: 100%;

    background: var(--primary);

}

/*==================================
FAQ Image
==================================*/

.wc-faq-image {

    position: relative;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.wc-faq-image img {

    width: 100%;

    display: block;

    border-radius: 30px;

}

.wc-faq-floating-card {

    position: absolute;

    top: 40px;

    right: 25px;

    width: 260px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(18px);

    border-radius: 24px;

    padding: 24px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

}

.wc-faq-stat {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

}

.wc-faq-stat:not(:last-child) {

    border-bottom: 1px solid #ececec;

}

.wc-faq-stat i {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;

}

.wc-faq-stat h4 {

    margin: 0;

    font-size: 30px;

}

.wc-faq-stat span {

    color: var(--text);

}

.wc-faq-badge {

    position: absolute;

    left: 30%;

    bottom: 30px;

    transform: translateX(-50%);

    background: #fff;

    padding: 16px 8px;

    border-radius: 60px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}

.wc-faq-badge i {

    color: var(--primary);

}

/*=========================================
            HELP CARD
=========================================*/

.wc-help-card {

    position: relative;

    overflow: hidden;

    margin-top: 30px;

    padding: 42px;

    border-radius: 30px;

    background: linear-gradient(135deg,
            var(--primary),
            #58761B);

    color: #fff;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

/* Decorative Circle */

.wc-help-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    right: -90px;

    top: -90px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

}

.wc-help-card::after {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    left: -50px;

    bottom: -50px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

}

/*=========================================
            TAG
=========================================*/

.wc-help-tag {

    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .5px;

    text-transform: uppercase;

}

/*=========================================
            ICON
=========================================*/

.wc-help-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    font-size: 28px;

}

.wc-help-icon i {

    color: #fff;

}

/*=========================================
            TITLE
=========================================*/

.wc-help-card h3 {

    color: #fff;

    font-size: 40px;

    margin-bottom: 18px;

    line-height: 1.2;

}

/*=========================================
            PARAGRAPH
=========================================*/

.wc-help-card p {

    color: rgba(255, 255, 255, .9);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 30px;

}

/*=========================================
            LIST
=========================================*/

.wc-help-list {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.wc-help-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    font-size: 16px;

    color: rgba(255, 255, 255, .95);

}

.wc-help-list i {

    color: #D8CBA8;

}

/*=========================================
            BUTTONS
=========================================*/

.wc-help-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.wc-btn-light {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 50px;

    background: #fff;

    color: var(--primary);

    font-weight: 700;

    transition: .35s;

}

.wc-btn-light:hover {

    transform: translateY(-3px);

    color: var(--primary);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);

}

.wc-btn-outline-light {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, .25);

    color: #fff;

    transition: .35s;

}

.wc-btn-outline-light:hover {

    background: rgba(255, 255, 255, .12);

    color: #fff;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-help-card {

        padding: 35px;

    }

    .wc-help-card h3 {

        font-size: 34px;

    }

}

@media(max-width:767px) {

    .wc-help-card {

        padding: 28px 24px;

        border-radius: 24px;

    }

    .wc-help-card h3 {

        font-size: 28px;

    }

    .wc-help-card p {

        font-size: 15px;

    }

    .wc-help-buttons {

        flex-direction: column;

    }

    .wc-btn-light,
    .wc-btn-outline-light {

        justify-content: center;

        width: 100%;

    }

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-faq .accordion-button {

        font-size: 18px;

        padding: 22px 24px;

    }

    .wc-faq .accordion-body {

        padding: 22px 24px;

    }

}

@media(max-width:767px) {

    .wc-faq .accordion-button {

        font-size: 17px;

        padding: 18px 20px;

    }

    .wc-faq .accordion-body {

        padding: 18px 20px;

        font-size: 15px;

    }

    .wc-faq .accordion-button::after {

        width: 34px;

        height: 34px;

        font-size: 22px;

    }

}

.wc-cta-content {
    position: relative;
    border-radius: 28px;
    padding: 40px 60px;
        background: url("../images/wc-cta.webp") center center/cover no-repeat;
}

.wc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(24, 35, 8, .90),
            rgba(24, 35, 8, .70),
            rgba(24, 35, 8, .40));
}

.wc-cta .container {
    position: relative;
    z-index: 2;
}

.wc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wc-brand {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wc-brand img {
    width: 170px;
}

.wc-divider {
    width: 1px;
    height: 90px;
    background: rgba(233, 202, 123, .45);
}

.wc-brand span {
    color: #EAC979;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 2px;
}

.wc-rating {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 25px 35px;
    text-align: center;
}

.wc-rating .stars {
    color: #EAC979;
    font-size: 24px;
    letter-spacing: 5px;
}

.wc-rating h6 {
    color: #fff;
    font-size: 22px;
    margin: 10px 0 6px;
}

.wc-rating p {
    color: #ddd;
    margin: 0;
}

.wc-text {
    margin-top: 45px;
    max-width: 760px;
}

.wc-text h2 {
    color: #fff;
    font-family: 'Playfair Display';
    font-size: 72px;
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 30px;
}

.wc-text span {
    color: #EAC979;
}

.wc-line {
    width: 180px;
    height: 2px;
    background: #CFAE63;
    margin-bottom: 30px;
}

.wc-text p {
    color: #ececec;
    font-size: 22px;
    line-height: 1.8;
    max-width: 700px;
}

.wc-buttons {
    display: flex;
    gap: 22px;
    margin-top: 45px;
}

.btn-primary,
.btn-outline {
    height: 64px;
    padding: 0 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-primary {
    background: #F3D48A;
    color: #222;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-outline {
    border: 1px solid rgba(234, 201, 121, .6);
    color: #fff;
}

.btn-outline:hover {
    background: #EAC979;
    color: #222;
}

.wc-call {
    margin: 30px 0 60px;
    color: #fff;
    font-size: 18px;
}

.wc-call strong {
    color: #F3D48A;
}

.wc-features {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .15);
    backdrop-filter: blur(10px);
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 35px 22px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.feature:last-child {
    border-right: none;
}

.feature i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #D5B46E;
    color: #D5B46E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.feature span {
    color: #ddd;
    font-size: 15px;
}

@media(max-width:991px) {

    .wc-cta {
        padding: 40px 25px 0;
    }

    .wc-top {
        flex-direction: column;
        gap: 30px;
    }

    .wc-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .wc-divider {
        display: none;
    }

    .wc-text h2 {
        font-size: 46px;
    }

    .wc-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .wc-features {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
}

/*=================================================
                FOOTER
=================================================*/

.wc-footer {

    background: var(--heading);

    color: rgba(255, 255, 255, .75);

    padding: 90px 0 30px;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.wc-footer::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .03);

    top: -180px;

    right: -120px;

}

.wc-footer::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .02);

    bottom: -120px;

    left: -80px;

}

.wc-footer .container {

    position: relative;

    z-index: 2;

}

.lt-foot{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

/*=========================================
                LOGO
=========================================*/

.wc-footer img {

    max-width: 180px;

}

.wc-footer p {

    line-height: 1.9;

    margin-bottom: 30px;

}

/*=========================================
                HEADINGS
=========================================*/

.wc-footer h5 {

    color: var(--white);

    font-size: 22px;

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 12px;

}

.wc-footer h5::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50px;

    height: 3px;

    background: var(--primary);

    border-radius: 10px;

}

/*=========================================
                LISTS
=========================================*/

.wc-footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.wc-footer ul li {

    margin-bottom: 14px;

    color: rgba(255, 255, 255, .75);

}

.wc-footer ul li:last-child {

    margin-bottom: 0;

}

.wc-footer ul li a {

    color: rgba(255, 255, 255, .75);

    text-decoration: none;

    transition: var(--transition);

}

.wc-footer ul li a:hover {

    color: var(--primary);

    padding-left: 8px;

}

/*=========================================
            SOCIAL ICONS
=========================================*/

.wc-social {

    display: flex;

    gap: 14px;

}

.wc-social a {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    color: var(--white);

    text-decoration: none;

    transition: var(--transition);

}

.wc-social a:hover {

    background: var(--primary);

    transform: translateY(-5px);

}

/*=========================================
                DIVIDER
=========================================*/

.wc-footer hr {

    border: none;

    height: 1px;

    background: rgba(255, 255, 255, .08);

    margin: 60px 0 30px;

}

/*=========================================
            FOOTER BOTTOM
=========================================*/

.wc-footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

.wc-footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, .65);

}

.wc-footer-bottom div {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}

.wc-footer-bottom a {

    color: rgba(255, 255, 255, .75);

    text-decoration: none;

    transition: var(--transition);

}

.wc-footer-bottom a:hover {

    color: var(--primary);

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-footer {

        padding: 70px 0 25px;

    }

    .wc-footer h5 {

        margin-top: 10px;

    }
  
    .lt-foot{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

@media(max-width:767px) {

    .wc-footer {

        text-align: center;

        padding: 60px 0 25px;

    }

    .wc-footer h5::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .wc-social {

        justify-content: center;

    }

    .wc-footer-bottom {

        flex-direction: column;

        text-align: center;

    }

    .wc-footer-bottom div {

        justify-content: center;

        gap: 18px;

    }

}

/*============================
ABOUT HERO
============================*/

.about-hero {

    padding: 120px 0;
    background: var(--ivory);

}

.about-grid {

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;

}

.section-tag {

    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;

}

.about-content h1 {

    font-size: 64px;
    line-height: 1.1;
    color: var(--heading);
    margin-bottom: 28px;

}

.lead {

    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    max-width: 650px;

}

.signature {

    margin: 40px 0 55px;
    font-size: 34px;
    color: var(--primary);
    font-family: cursive;

}

.about-features {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}

.feature {

    text-align: center;

}

.feature .icon {

    width: 82px;
    height: 82px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;

}

.feature .icon i {

    font-size: 28px;
    color: var(--primary);

}

.feature h4 {

    margin-bottom: 10px;
    color: var(--heading);

}

.feature p {

    font-size: 14px;
    color: var(--text);
    line-height: 1.7;

}

/*============================
IMAGE
============================*/

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);

}

.floating-card {

    position: absolute;
    left: -40px;
    bottom: 40px;
    width: 250px;
    background: var(--primary);
    color: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);

}

.floating-card span {

    display: block;
    opacity: .8;
    margin-bottom: 10px;

}

.floating-card h4 {

    font-size: 28px;
    line-height: 1.3;
    color: #fff;

}

/*============================
STORY
============================*/

.our-story {

    padding: 120px 0;
    background: #fff;

}

.story-grid {

    display: grid;
    grid-template-columns: .9fr 1fr 320px;
    gap: 60px;
    align-items: center;

}

.story-image img {

    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);

}

.story-content h2 {

    font-size: 48px;
    margin: 20px 0 30px;
    color: var(--heading);

}

.story-content p {

    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;

}

/*============================
STATS
============================*/

.story-stats {

    display: flex;
    flex-direction: column;
    gap: 20px;

}

.stat {

    background: var(--ivory);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;

}

.stat-icon {

    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.stat-icon i {

    font-size: 28px;
    color: var(--primary);

}

.stat h3 {

    font-size: 34px;
    color: var(--heading);

}

.stat p {

    margin-top: 5px;
    color: var(--text);

}

/*============================
RESPONSIVE
============================*/

@media(max-width:992px) {

    .about-grid,
    .story-grid {

        grid-template-columns: 1fr;

    }

    .about-features {

        grid-template-columns: repeat(2, 1fr);

    }

    .about-content h1 {

        font-size: 46px;

    }

    .story-content h2 {

        font-size: 38px;

    }

    .floating-card {

        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -60px;
        margin-left: 20px;

    }

}

@media(max-width:576px) {

    .about-features {

        grid-template-columns: 1fr;

    }

    .about-content h1 {

        font-size: 36px;

    }

    .signature {

        font-size: 26px;

    }

}

.wc-popular-searches {
    padding: 50px 0;
    background: #faf8f3;
    border-top: 1px solid #e9e4d8;
}

.wc-popular-searches h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

.wc-search-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wc-search-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid #d8d3c6;
    border-radius: 30px;
    background: #fff;
    color: #555;
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
}

.wc-search-links a:hover {
    background: #6f8f2c;
    color: #fff;
    border-color: #6f8f2c;
}

.wc-legal-page {
    background: #faf9f5;
}

.wc-legal-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.wc-legal-header h1 {
    margin: 15px 0;
}

.wc-legal-content {
    max-width: 900px;
    margin: auto;
}

.wc-legal-item {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.wc-legal-item h2 {
    margin-bottom: 18px;
    color: var(--primary);
}

.wc-legal-item p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.wc-legal-item ul {
    padding-left: 20px;
}

.wc-legal-item li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.wc-legal-item a {
    color: var(--primary);
    text-decoration: none;
}

.wc-legal-item a:hover {
    text-decoration: underline;
}

/*==============================
PAGE BANNER
==============================*/

.wc-page-banner {
    position: relative;
    padding: 120px 0 70px;
    background: #F8F7F2;
    overflow: hidden;
}

.wc-page-banner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(111, 143, 44, .08);
    border-radius: 50%;
}

.wc-page-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: rgba(111, 143, 44, .05);
    border-radius: 50%;
}

.wc-page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.wc-page-banner h1 {
    font-size: 54px;
    margin: 15px 0;
    color: #1f1f1f;
}

.wc-page-banner p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/*==============================
PAGE BANNER
==============================*/

.wc-page-banner {

    position: relative;
    overflow: hidden;

    padding: 120px 0;

    background: var(--primary);

    text-align: center;

}

/* Decorative circles */

.wc-page-banner::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -120px;
    left: -120px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

}

.wc-page-banner::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -100px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

}

.wc-page-banner-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;

}

.wc-page-banner h1 {

    color: #fff;

    font-size: 56px;

    font-weight: 700;

    margin: 20px 0;

}

.wc-page-banner p {

    color: rgba(255, 255, 255, .85);

    font-size: 18px;

    line-height: 1.8;

    max-width: 620px;

    margin: auto;

}

/*==============================
Breadcrumb
==============================*/

.wc-breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 50px 0 0;

    margin: 0;

    list-style: none;

}

.wc-breadcrumb li {

    color: rgba(255, 255, 255, .75);

    font-size: 15px;

}

.wc-breadcrumb li:not(:last-child)::after {

    content: "/";

    margin-left: 10px;

    color: rgba(255, 255, 255, .5);

}

.wc-breadcrumb a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.wc-breadcrumb a:hover {

    color: #F3E8A5;

}

.wc-breadcrumb li:last-child {

    color: #F3E8A5;

}

/*==============================
Stats Section
==============================*/

.wc-stats {
    position: relative;
    overflow: hidden;
}

/*==============================
Stat Card
==============================*/

.wc-stat-card {

    position: relative;

    height: 100%;

    padding: 40px 32px;

    background: #fff;

    border: 1px solid rgba(106, 143, 44, .12);

    border-radius: 24px;

    text-align: center;

    transition: all .35s ease;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);

    overflow: hidden;

}

/* Decorative Circle */

.wc-stat-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -110px;
    right: -110px;

    border-radius: 50%;

    background: rgba(106, 143, 44, .05);

    transition: .4s;

}

/* Hover */

.wc-stat-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .10);

    border-color: rgba(106, 143, 44, .25);

}

.wc-stat-card:hover::before {

    transform: scale(1.2);

}

/*==============================
Icon
==============================*/

.wc-stat-icon {

    width: 72px;

    height: 72px;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: #eef6e6;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    font-size: 30px;

    transition: .35s;

}

.wc-stat-card:hover .wc-stat-icon {

    background: var(--primary);

    color: #fff;

    transform: rotate(8deg) scale(1.08);

}

/*==============================
Counter
==============================*/

.wc-stat-number {

    font-size: 28px;

    font-weight: 600;

    color: var(--heading);

    line-height: 1.5;

    margin-bottom: 12px;

    transition: .3s;
    

}

.wc-stat-card:hover .wc-stat-number {

    color: var(--primary);

}

/*==============================
Heading
==============================*/

.wc-stat-card h3 {

    font-size: 22px;

    color: var(--heading);
    font-weight: bold;

    margin-bottom: 10px;

    line-height: 1.3;

    font-family: 'Playfair Display';

}

/*==============================
Subtitle
==============================*/

.wc-stat-subtitle {

    display: inline-block;

    margin-bottom: 10px;

    padding: 6px 10px;

    background: #f5f8ef;

    color: var(--primary);

    border-radius: 30px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

    text-transform: uppercase;

}

/*==============================
Paragraph
==============================*/

.wc-stat-card p {

    font-size: 14px;

    color: var(--text);
    font-weight: 600;

    line-height: 1.8;

    margin-bottom: 25px;
    letter-spacing: 0.6px;

}

/*==============================
Divider
==============================*/

.wc-stat-divider {

    width: 70px;

    height: 2px;

    margin: auto;

    margin-bottom: 10px;

    background: rgba(106, 143, 44, .18);

}

/*==============================
Footer
==============================*/

.wc-stat-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

}

.wc-stat-footer i {

    font-size: 16px;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px) {

    .wc-stat-card {

        padding: 10px;

    }

    .wc-stat-number {

        font-size: 18px;

    }

    .wc-stat-card h3 {
        margin: 0;

        font-size: 14px;

    }

}

@media(max-width:767px) {

    .wc-stat-card {

        padding: 10px;

    }

    .wc-stat-number {

        font-size: 24px;

    }

    .wc-stat-icon {

        width: 48px;

        height: 48px;

        font-size: 24px;

    }

    .wc-stat-card p{
        margin: 0;
        padding: 8px 0;
        line-height: 20px;
        font-size: 12px;
    }
     
    .wc-stat-subtitle{
        margin: 0;
        font-size: 11px;
        font-weight: 600;
    }
    .wc-stat-footer{
        display: none;
    }

}

/*=============================
    SERVICES HEADER
==============================*/

.wc-services-header {

    padding: 90px 0 60px;

    background: #F8F7F2;

}

.wc-breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    font-size: 15px;

}

.wc-breadcrumb a {

    color: #6A7B1D;

    text-decoration: none;

    transition: .3s;

}

.wc-breadcrumb a:hover {

    color: #42500F;

}

.wc-breadcrumb span {

    color: #888;

}

.wc-breadcrumb .active {

    color: #222;

    font-weight: 600;

}

.wc-services-heading {

    max-width: 760px;

}

.wc-section-tag {

    display: inline-flex;

    align-items: center;

    padding: 10px 20px;

    border-radius: 40px;

    background: #EEF3E1;

    color: #6A7B1D;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 20px;

}

.wc-services-heading h1 {

    font-size: 58px;

    line-height: 1.1;

    color: #1F2A12;

    margin-bottom: 20px;

    font-weight: 300;

}

.wc-services-heading p {

    font-size: 19px;

    line-height: 1.8;

    color: #666;

}


/*=========================
SERVICE SECTION
=========================*/

.wc-service-block {

    padding: 100px 0;

}

.wc-service-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


/*=========================
IMAGE
=========================*/

.wc-service-image {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

}

.wc-service-image img {

    width: 100%;

    height: 650px;

    object-fit: cover;

    transition: .5s;

}

.wc-service-image:hover img {

    transform: scale(1.06);

}

.wc-service-badge {

    position: absolute;

    left: 30px;

    bottom: 30px;

    padding: 14px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .92);

    display: flex;

    align-items: center;

    gap: 10px;

    color: #556f1d;

    font-weight: 600;

    backdrop-filter: blur(15px);

}

.wc-service-badge i {

    color: #d9b35b;

}


/*=========================
CONTENT
=========================*/

.wc-service-subtitle {

    color: #556f1d;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 14px;

    font-weight: 600;

}

.wc-service-content h2 {

    font-size: 52px;

    margin: 18px 0 30px;

    color: #1d2511;

    font-weight: 300;

}

.wc-service-content p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;

}


/*=========================
FEATURES
=========================*/

.wc-service-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.service-feature {

    display: flex;

    gap: 12px;

    align-items: center;

}

.service-feature i {

    color: #6a7b1d;

}

.service-feature span {

    color: #333;

}


/*=========================
INFO BOXES
=========================*/

.wc-service-info {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 40px;

}

.info-box {

    padding: 25px;

    background: #faf9f3;

    border-radius: 18px;

}

.info-box h5 {

    margin-bottom: 8px;

    color: #556f1d;

}

.info-box span {

    color: #666;

}


/*=========================
BUTTON
=========================*/

.wc-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 18px 36px;

    border-radius: 50px;

    background: #556f1d;

    color: #fff;

    text-decoration: none;

    transition: .35s;

}

.wc-btn:hover {

    background: #445916;

    color: #fff;

    transform: translateY(-3px);

}

.wc-btn i {

    transition: .35s;

}

.wc-btn:hover i {

    transform: translateX(5px);

}


/*=========================
REVERSE LAYOUT
=========================*/

.wc-service-block.reverse .wc-service-image {

    order: 2;

}

.wc-service-block.reverse .wc-service-content {

    order: 1;

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px) {

    .wc-service-row {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .wc-service-image img {

        height: 400px;

    }

    .wc-service-content h2 {

        font-size: 38px;

    }

    .wc-service-features {

        grid-template-columns: 1fr;

    }

    .wc-service-info {

        grid-template-columns: 1fr;

    }

}

/*=========================================
    CONTACT PAGE
=========================================*/

.wc-contact {
    background: #F8F7F2;
}

/*=========================================
    HEADING
=========================================*/

.wc-contact .wc-section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
}

.wc-contact .wc-section-heading h1 {
    font-size: 56px;
    font-weight: 300;
    color: #24300F;
    margin: 20px 0;
}

.wc-contact .wc-section-heading p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/*=========================================
    LEFT SIDE
=========================================*/

.wc-contact-info {

    background: linear-gradient(135deg, #556F1D, #3E4F15);

    border-radius: 30px;

    padding: 45px;

    color: #fff;

    height: 100%;

    position: sticky;

    top: 110px;

}

.wc-contact-card {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 35px;

}

.wc-contact-card:last-child {

    margin-bottom: 0;

}

.wc-contact-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .1);

    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.wc-contact-icon i {

    font-size: 22px;

    color: #DDBE73;

}

.wc-contact-card h4 {

    font-size: 20px;

    margin-bottom: 10px;

    color: #fff;

}

.wc-contact-card p {

    margin: 0;

    color: #E5E5E5;

    line-height: 1.8;

}

.wc-contact-card span {

    display: block;

    margin-top: 8px;

    color: #E5E5E5;

    line-height: 1.8;

}

.wc-contact-card a {

    color: #fff;

    text-decoration: none;

    font-weight: 600;

}

.wc-contact-card a:hover {

    color: #DDBE73;

}

/*=========================================
    PICKUP NOTE
=========================================*/

.wc-contact-note {

    margin-top: 45px;

    display: flex;

    gap: 18px;

    align-items: flex-start;

    padding: 25px;

    background: rgba(255, 255, 255, .08);

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, .12);

}

.wc-contact-note i {

    font-size: 28px;

    color: #DDBE73;

}

.wc-contact-note h5 {

    margin-bottom: 8px;

    color: #fff;

}

.wc-contact-note p {

    color: #E5E5E5;

    margin: 0;

}

/*=========================================
    FORM
=========================================*/

.wc-contact-form {

    background: #fff;

    border-radius: 30px;

    padding: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

.wc-form-heading {

    margin-bottom: 35px;

}

.wc-form-heading h3 {

    font-size: 38px;

    font-weight: 300;

    margin: 18px 0;

    color: #24300F;

}

.wc-form-heading p {

    color: #666;

    line-height: 1.8;

}

.wc-contact-form label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

    color: #24300F;

}

/*=========================================
    INPUTS
=========================================*/

.wc-contact-form .form-control,
.wc-contact-form .form-select {

    height: 60px;

    border-radius: 15px;

    border: 1px solid #DDD;

    padding: 0 20px;

    font-size: 15px;

    box-shadow: none;

    transition: .3s;

}

.wc-contact-form textarea.form-control {

    height: auto;

    padding: 18px 20px;

    resize: none;

}

.wc-contact-form .form-control:focus,
.wc-contact-form .form-select:focus {

    border-color: #556F1D;

    box-shadow: 0 0 0 .15rem rgba(85, 111, 29, .15);

}

/*=========================================
    BUTTON
=========================================*/

.wc-contact-form .wc-btn {

    width: 100%;

    height: 60px;

    border: none;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #556F1D;

    color: #fff;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 600;

    transition: .35s;

}

.wc-contact-form .wc-btn:hover {

    background: #445916;

    transform: translateY(-2px);

}

/*=========================================
    FOOTER FEATURES
=========================================*/

.wc-form-footer {

    margin-top: 35px;

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

}

.wc-form-footer div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #555;

    font-size: 15px;

}

.wc-form-footer i {

    color: #556F1D;

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .wc-contact {

        padding: 70px 0;

    }

    .wc-contact-info {

        position: relative;

        top: 0;

        margin-bottom: 35px;

        padding: 35px;

    }

    .wc-contact-form {

        padding: 35px 25px;

    }

    .wc-contact .wc-section-heading h1 {

        font-size: 40px;

    }

    .wc-form-heading h3 {

        font-size: 30px;

    }

    .wc-form-footer {

        flex-direction: column;

        gap: 15px;

    }

}

@media(max-width:576px) {

    .wc-contact-info {

        padding: 30px 25px;

    }

    .wc-contact-card {

        gap: 15px;

    }

    .wc-contact-icon {

        width: 50px;

        height: 50px;

    }

    .wc-contact-icon i {

        font-size: 18px;

    }

    .wc-contact-form {

        padding: 30px 20px;

    }

    .wc-contact-form .form-control,
    .wc-contact-form .form-select {

        height: 55px;

    }

}