/* HERO SECTION */
.furniture-hero-section {
    padding: 100px 15px;
    background: linear-gradient(135deg, #f7f6f4, #ffffff);
    overflow: hidden;
}

.furniture-hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* TEXT */
.furniture-hero-text {
    flex: 1;
    animation: fadeSlideLeft 1s ease forwards;
}

.furniture-hero-text h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 10px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #b68c5a;
    margin-bottom: 22px;
}

.furniture-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.hero-highlight {
    background: #ffffff;
    padding: 18px 22px;
    border-left: 4px solid #b68c5a;
    border-radius: 8px;
    font-size: 16px;
}

/* IMAGE */
.furniture-hero-image {
    flex: 1;
    animation: fadeSlideRight 1.1s ease forwards;
}

.furniture-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ANIMATIONS */
@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .furniture-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .furniture-hero-text h1 {
        font-size: 30px;
    }

    .hero-highlight {
        text-align: left;
    }
}


/* SPACE DESIGN SECTION */
.furniture-space-section {
    padding: 100px 15px;
    background: #ffffff;
}

.furniture-space-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* IMAGE */
.furniture-space-image {
    flex: 1;
    animation: fadeUp 1s ease forwards;
}

.furniture-space-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.furniture-space-content {
    flex: 1;
    animation: fadeUp 1.1s ease forwards;
}

.furniture-space-content h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 16px;
}

.furniture-space-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

/* FEATURES */
.space-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 25px;
}

.space-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    padding: 14px 18px;
    border-radius: 10px;
}

.space-feature span {
    font-size: 18px;
    color: #b68c5a;
    font-weight: bold;
}

.space-feature p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

.space-note {
    background: #fdf8f3;
    padding: 16px 20px;
    border-left: 4px solid #b68c5a;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .furniture-space-container {
        flex-direction: column;
        text-align: center;
    }

    .furniture-space-content h2 {
        font-size: 28px;
    }

    .space-feature {
        justify-content: center;
    }

    .space-note {
        text-align: left;
    }
}


/* WHY CHOOSE SECTION */
.furniture-why-section {
    padding: 110px 15px;
    background: #f7f6f4;
}

.furniture-why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
}

/* LEFT INTRO */
.why-intro {
    flex: 1;
    animation: fadeInLeft 1s ease forwards;
}

.why-intro h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 18px;
}

.why-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.why-goal {
    font-weight: 600;
    color: #333;
}

/* RIGHT REASONS */
.why-reasons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: fadeInRight 1s ease forwards;
}

.why-point {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.point-no {
    font-size: 22px;
    font-weight: 700;
    color: #b68c5a;
    min-width: 36px;
}

.why-point h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.why-point p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ANIMATION */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .furniture-why-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-intro h2 {
        font-size: 28px;
    }
}



/* FURNITURE AREAS SECTION */
.furniture-areas-section {
    padding: 100px 15px;
    background: #ffffff;
}

.furniture-areas-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.areas-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.areas-header h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 12px;
}

.areas-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* FLEX TILES */
.areas-flex {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* ITEM */
.area-item {
    width: calc(20% - 20px);
    min-width: 200px;
    background: #f7f7f7;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.area-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.area-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.area-item span {
    display: block;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .area-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 600px) {
    .areas-header h2 {
        font-size: 28px;
    }

    .areas-flex {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .area-item {
        width: 240px;
        flex-shrink: 0;
    }
}

/* CLEAN MATERIALS SECTION */
.furniture-materials-clean {
    padding: 100px 15px;
    background: #ffffff;
}

.materials-clean-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

/* IMAGE */
.materials-image {
    flex: 1;
}

.materials-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.materials-content {
    flex: 1;
}

.materials-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #222;
}

.materials-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* LIST */
.materials-list {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.materials-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.materials-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #b68c5a;
    font-weight: bold;
}

/* NOTE */
.materials-note {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-left: 3px solid #b68c5a;
    padding-left: 15px;
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .materials-clean-container {
        flex-direction: column;
        text-align: center;
    }

    .materials-content h2 {
        font-size: 28px;
    }

    .materials-note {
        text-align: left;
    }
}
/* MODERN WORK PROCESS */
.furniture-process-modern {
    padding: 110px 15px;
    background: #ffffff;
}

.process-modern-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.process-modern-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.process-modern-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #222;
}

.process-modern-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* FLOW */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ROW */
.process-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* STEP CIRCLE */
.process-step {
    min-width: 56px;
    height: 56px;
    background: #b68c5a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INFO */
.process-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.process-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .process-row {
        flex-direction: column;
        gap: 14px;
    }

    .process-step {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .process-modern-header h2 {
        font-size: 28px;
    }
}
/* UNIQUE RIGHT CHOICE SECTION */
.furniture-choice-unique {
    position: relative;
    padding: 120px 15px;
    background: url("https://www.wedecorggn.com/files/gallery/A modern Mumbai home where heirloom furniture take centrestage.webp") center/cover no-repeat;
    color: #ffffff;
}

.choice-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.choice-unique-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.choice-unique-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.choice-unique-header h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

.choice-unique-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #f1f1f1;
}

/* FLOATING GRID */
.choice-floating-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.floating-item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 30px 22px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.floating-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.18);
}

.floating-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 14px;
}

.floating-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.floating-item p {
    font-size: 14px;
    color: #e6e6e6;
    line-height: 1.5;
}

/* FOOTER TEXT */
.choice-unique-footer {
    max-width: 700px;
    font-size: 16px;
    font-weight: 600;
    border-left: 4px solid #b68c5a;
    padding-left: 18px;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
    .choice-floating-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .choice-floating-grid {
        grid-template-columns: 1fr;
    }

    .choice-unique-header h2 {
        font-size: 28px;
    }
}


/* FINAL CTA UNIQUE */
.furniture-final-cta-unique {
    position: relative;
    padding: 120px 15px;
    background: #1f1f1f;
    color: #ffffff;
    overflow: hidden;
}

/* DIAGONAL SHAPE */
.cta-bg-shape {
    position: absolute;
    top: -20%;
    right: -30%;
    width: 80%;
    height: 160%;
    background: url("https://www.wedecorggn.com/files/gallery/Bespoke-living-room-interior-design-scaled.jpeg") center/cover no-repeat;
    transform: rotate(-8deg);
    opacity: 0.35;
}

/* CONTENT */
.cta-unique-container {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.cta-unique-content {
    max-width: 650px;
}

.cta-unique-content h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.cta-unique-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #e6e6e6;
    margin-bottom: 16px;
}

.cta-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}

/* BUTTONS */
.cta-actions {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 14px 32px;
    background: #b68c5a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-btn-primary:hover {
    background: #9c7546;
}

.cta-btn-secondary {
    padding: 14px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #ffffff;
    color: #222;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .cta-unique-content h2 {
        font-size: 28px;
    }

    .cta-unique-content {
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-bg-shape {
        display: none;
    }
}
