.kitchen-section {
    padding: 70px 15px;
    background: #f7f7f7;
}

.kitchen-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.kitchen-content {
    flex: 1;
}

.kitchen-content h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 8px;
}

.kitchen-tagline {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #b68c5a;
    margin-bottom: 18px;
}

.kitchen-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.kitchen-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.kitchen-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.kitchen-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
}

.kitchen-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #b68c5a;
    font-weight: bold;
}

.kitchen-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #b68c5a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.kitchen-btn:hover {
    background: #9c7546;
}

/* IMAGE */
.kitchen-image {
    flex: 1;
}

.kitchen-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .kitchen-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .kitchen-content ul li {
        padding-left: 0;
    }

    .kitchen-content ul li::before {
        position: static;
        margin-right: 6px;
    }
}


.kitchen-why {
    padding: 80px 15px;
    background: #ffffff;
}

.kitchen-why-container {
    max-width: 1200px;
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 8px;
}

.why-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #b68c5a;
}

/* Cards Grid */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #f8f8f8;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 26px;
    }
}

.kitchen-experts {
    padding: 90px 15px;
    background: #f6f6f6;
}

.experts-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.experts-image {
    flex: 1;
}

.experts-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experts-content {
    flex: 1;
}

.experts-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    margin-bottom: 10px;
}

.experts-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #222;
}

.experts-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.experts-highlight {
    background: #ffffff;
    padding: 18px 20px;
    border-left: 4px solid #b68c5a;
    border-radius: 8px;
    font-size: 16px;
}

.experts-points {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.experts-points .point {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .experts-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .experts-points {
        justify-content: center;
    }

    .experts-highlight {
        text-align: left;
    }

    .experts-content h2 {
        font-size: 26px;
    }
}


.custom-kitchen {
    padding: 90px 15px;
    background: linear-gradient(135deg, #fafafa, #f1f1f1);
}

.custom-container {
    max-width: 1200px;
    margin: auto;
}

.custom-header {
    max-width: 750px;
    margin-bottom: -50px;
}

.custom-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    display: inline-block;
    margin-bottom: 8px;
}

.custom-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 12px;
}

.custom-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* GRID */
.custom-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.custom-content {
    flex: 1;
}

.custom-content h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.custom-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 34px;
    position: relative;
    color: #444;
}

.custom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b68c5a;
    font-size: 20px;
    font-weight: bold;
}

.custom-note {
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.custom-image {
    flex: 1;
}

.custom-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .custom-grid {
        flex-direction: column-reverse;
        text-align: center;
    }

    .custom-header {
        text-align: center;
        margin: auto auto 40px;
    }

    .custom-list li {
        padding-left: 0;
    }

    .custom-list li::before {
        position: static;
        margin-right: 6px;
    }
}

@media (max-width: 576px) {
    .custom-header h2 {
        font-size: 26px;
    }
}


.kitchen-types {
    padding: 90px 15px;
    background: #ffffff;
}

.types-container {
    max-width: 1200px;
    margin: auto;
}

.types-header {
    text-align: center;
    margin-bottom: 50px;
}

.types-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    display: inline-block;
    margin-bottom: 8px;
}

.types-header h2 {
    font-size: 34px;
    color: #222;
}

/* GRID */
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.type-card {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.type-content {
    padding: 20px;
}

.type-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.type-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .types-grid {
        grid-template-columns: 1fr;
    }

    .types-header h2 {
        font-size: 26px;
    }
}

.kitchen-quality {
    padding: 90px 15px;
    background: #f7f7f7;
}

.quality-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.quality-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.quality-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    display: inline-block;
    margin-bottom: 8px;
}

.quality-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 12px;
}

.quality-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* BOX */
.quality-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.quality-box h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #222;
}

/* LIST */
.quality-list {
    list-style: none;
    padding: 0;
}

.quality-list li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 34px;
    position: relative;
    color: #444;
}

.quality-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #b68c5a;
    font-size: 18px;
    font-weight: bold;
}

/* HIGHLIGHT BOX */
.quality-box.highlight {
    background: linear-gradient(135deg, #ffffff, #fdf8f3);
}

/* STORAGE TAGS */
.storage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.storage-tags span {
    background: #f1f1f1;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-header {
        text-align: center;
        margin: auto auto 40px;
    }

    .quality-header h2 {
        font-size: 26px;
    }
}
.work-process-step {
    padding: 90px 15px;
    background: #ffffff;
}

.process-step-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.process-step-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.process-step-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    display: inline-block;
    margin-bottom: 8px;
}

.process-step-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 12px;
}

.process-step-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.process-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.process-step-card {
    background: #f8f8f8;
    padding: 45px 30px 35px;
    border-radius: 18px;
    position: relative;
    transition: 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* STEP BADGE */
.step-badge {
    position: absolute;
    top: -16px;
    left: 30px;
    background: #b68c5a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.process-step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.process-step-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .process-step-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .process-step-grid {
        grid-template-columns: 1fr;
    }

    .process-step-header h2 {
        font-size: 26px;
    }
}

.why-wedecor {
    padding: 90px 15px;
    background: #f7f7f7;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.why-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.why-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b68c5a;
    display: inline-block;
    margin-bottom: 8px;
}

.why-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 12px;
}

.why-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.why-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #222;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 26px;
    }
}



.kitchen-final-cta {
    position: relative;
    padding: 110px 15px;
   background: url("https://www.wedecorggn.com/files/gallery/resent.jpg") center/cover no-repeat;

    color: #ffffff;
}


.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.cta-container {
    position: relative;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.kitchen-final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.kitchen-final-cta p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #f1f1f1;
}

.cta-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn.primary {
    background: #b68c5a;
    color: #ffffff;
}

.cta-btn.primary:hover {
    background: #9c7546;
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #222;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .kitchen-final-cta h2 {
        font-size: 28px;
    }

    .kitchen-final-cta p {
        font-size: 16px;
    }
}
