/* =============================================
   SINGLE DESIGN BOX
   ============================================= */

.sdbox-container {
    height: 420px;
    position: relative;
}

.sdbox-img {
    width: 800px;
    height: 100%;
    object-fit: cover;
}

.sdbox-overlay {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 35%;
    background: linear-gradient(135deg, #7b4a6b, #5a2f50);
    display: flex;
    align-items: center;
    padding: 25px;
}

.sdbox-form-card {
    width: 100%;
    color: #fff;
}

.sdbox-form-control {
    height: 46px;
    border-radius: 6px;
    border: none;
}

.sdbox-form-control:focus {
    box-shadow: none;
    border: 1px solid #ccc;
}

.sdbox-btn-danger {
    background: #ff5a5f;
    border: none;
    height: 48px;
}

@media (max-width: 768px) {
    .sdbox-overlay {
        position: static;
        width: 100%;
    }
    .sdbox-container {
        height: auto;
    }
}


/* =============================================
   CONSULTATION BTN / MODAL
   ============================================= */

.consult-btn {
    background: #d92d3a;
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.consult-btn:hover {
    background: #b91f2c;
}

.consult-modal {
    border-radius: 10px;
    border: none;
    padding: 10px;
    position: relative;
}

.consult-modal .modal-content {
    width: 80%;
}

.consult-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c35;
    max-width: 320px;
}

.consult-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 12px;
}

.consult-input,
.consult-textarea {
    height: 45px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    box-shadow: none !important;
}

.consult-textarea {
    min-height: 120px;
    resize: none;
}

.consult-input:focus,
.consult-textarea:focus {
    border-color: #d92d3a;
}

.consult-submit-btn {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 40px;
    background: #ea5b63;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.consult-submit-btn:hover {
    background: #d92d3a;
}

.consult-terms {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.consult-terms a {
    color: #d92d3a;
    text-decoration: none;
}

@media (max-width: 768px) {
    .consult-title {
        font-size: 30px;
        max-width: 240px;
    }
    .consult-modal {
        padding: 5px;
    }
    .consult-submit-btn {
        font-size: 16px;
    }
}


/* =============================================
   HIGHLIGHT CARD
   ============================================= */

.highlight-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.highlight-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s;
}

.highlight-card:hover img {
    transform: scale(1.05);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.highlight-overlay h5 {
    margin: 0;
    font-weight: 600;
}

.highlight-overlay p {
    margin: 0;
    font-size: 14px;
}


/* =============================================
   SLIDER
   ============================================= */

.slider-wrapper {
    position: relative;
}

.slider-track {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-card {
    min-width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.slider-nav-btn.left {
    left: -20px;
}

.slider-nav-btn.right {
    right: -20px;
}


/* =============================================
   LIVING ROOM
   ============================================= */

.living-room-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.living-room-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.living-room-item {
    flex: 1;
}

.living-room-content {
    padding: 15px;
}

.living-room-content h6 {
    font-size: 11px;
}

.living-room-pad {
    padding-bottom: 4rem;
    padding-top: 3rem;
}

.living-room-link {
    text-decoration: none;
    font-weight: 700;
}


/* =============================================
   DESIGN GALLERY SECTION
   ============================================= */

.dgallery-section {
    background: #1e3a4c;
    color: #fff;
}

.dgallery-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dgallery-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    color: #000;
}

.dgallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


/* =============================================
   INSPIRATION SECTION
   ============================================= */

.insp-section {
    margin-top: 70px;
}

.insp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.insp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


/* =============================================
   CITIES -> DESIGN PROCESS
   ============================================= */

.process-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}

.process-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


/* =============================================
   HOME PROCESS / HERO SECTION
   ============================================= */

.hero-section {
    position: relative;
    height: 550px;
    background: url('{{ asset('public/uploads/banner/interior.avif') }}') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-form-box input,
.hero-form-box textarea {
    width: 100%;
    margin-bottom: 12px;
}


/* =============================================
   LIVSPACE TV
   ============================================= */

.tv-section {
    background: #5a2f50;
    padding: 60px 0;
}

.tv-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tv-left {
    width: 25%;
    color: #fff;
}

.tv-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.tv-cards {
    width: 75%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.tv-card {
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    overflow: hidden;
    transition: 0.3s;
}

.tv-card:hover {
    transform: translateY(-5px);
}

.tv-thumb {
    position: relative;
}

.tv-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.tv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff5a5f;
    color: #fff;
    border-radius: 50%;
    padding: 10px 14px;
}

.tv-content {
    padding: 12px;
}


/* =============================================
   MAGAZINE FEATURED
   ============================================= */

.mag-feat-editor-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.mag-feat-editor-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.mag-feat-editor-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.mag-feat-recent-scroll {
    max-height: 450px;
    overflow-y: auto;
}

.mag-feat-recent-card {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    gap: 10px;
}

.mag-feat-recent-img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}


/* =============================================
   HOME GALLERY (MASONRY)
   ============================================= */

.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 15px;
}

.masonry-left,
.masonry-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.masonry-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.masonry-img.small {
    height: 150px;
}

.masonry-img.big {
    height: 315px;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    .masonry-img.big {
        height: 200px;
    }
}


/* =============================================
   PRICE ESTIMATOR
   ============================================= */

.estimator-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.estimator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.estimator-fill {
    width: -webkit-fill-available;
}

.estimator-radius {
    border-radius: 1.3rem;
}

.estimator-card-body {
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.estimator-card-body:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.estimator-bg {
    background: #F5F4F5;
}


/* =============================================
   REASON SECTION
   ============================================= */

.reason-section {
    margin-top: 70px;
    margin-bottom: 60px;
}

.reason-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


/* =============================================
   REVIEW SECTION
   ============================================= */

.review-rating-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #6c757d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}


/* =============================================
   WHY CHOOSE US
   ============================================= */

.why-custom-gap {
    gap: 50px;
}


/* =============================================
   DREAM HOME
   ============================================= */

.dreamhome-bg {
    background: #764d6f;
    margin-top: 6rem;
    padding: 1.5rem 8rem;
}


/* =============================================
   TALKING
   ============================================= */

.talking-white {
    background-color: #ffffff;
}

.talking-mt {
    margin-top: 6rem;
    justify-content: space-between;
    align-items: center;
}

.talking-custom-btn {
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    background: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

.talking-bg {
    background: #f5f4f5;
    padding: 1.5rem;
}

.talking-text {
    text-align: center;
}


/* =============================================
   MAGAZINE SECTION -> KIDS ROOM
   ============================================= */


.kr-section {
    background: #19334C;
    padding: 4rem 0;
}

.kr-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ── Left Info Panel ── */

.kr-info {
    width: 260px;
    flex-shrink: 0;
    color: #fff;
}

.kr-icon-wrap {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.kr-icon-wrap img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.kr-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.kr-desc {
    font-size: 15px;
    color: #ccd9e3;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Slider Wrapper ── */

.kr-slider-wrap {
    flex: 1;
    position: relative;
    min-width: 0;           /* prevents flex overflow */
}

.kr-swiper {
    width: 100%;
    overflow: hidden;
}

.kr-swiper .swiper-slide {
    height: auto;
}

/* ── Card ── */

.kr-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.kr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.kr-card-img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
}

.kr-card-body {
    padding: 16px 18px 20px;
}

.kr-category {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.kr-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
}

/* ── Navigation Buttons ── */

.kr-prev,
.kr-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.kr-prev:hover,
.kr-next:hover {
    background: #2b1d29;
    color: #fff;
}

.kr-prev {
    left: -18px;
}

.kr-next {
    right: -18px;
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .kr-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .kr-info {
        width: 100%;
    }
    .kr-slider-wrap {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .kr-title {
        font-size: 26px;
    }
    .kr-card-img {
        height: 165px;
    }
}




/* =============================================
   KITCHEN SECTION
   ============================================= */

.kitchen-section {
    background: #fff;
}

.kitchen-info {
    width: 280px;
    flex-shrink: 0;
}

.kitchen-info h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.kitchen-info p {
    color: #666;
    line-height: 1.7;
    font-size: 20px;
}

.kitchen-room-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
}

.kitchen-room-card img {
    height: 400px;
    object-fit: cover;
    object-position: left top;
}

.kitchen-room-content {
    padding: 18px;
}

.kitchen-room-content h6 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.kitchen-room-content p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 0;
}

.kitchen-explore-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.kitchen-explore-prev,
.kitchen-explore-next {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.kitchen-explore-prev:hover,
.kitchen-explore-next:hover {
    background: #2b1d29;
    color: #fff;
}

.kitchen-swiper {
    width: 100%;
}

.kitchen-wrapper {
    display: flex;
    gap: 1.5rem;
}

.kitchen-dark-bg {
    padding-top: 4rem;
    background: #19334C;
    margin-bottom: 4rem;
}

.kitchen-pad-bottom {
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .kitchen-wrapper {
        flex-direction: column;
    }
    .kitchen-info {
        width: 100%;
    }
}


/* =============================================
   AFTER BEFORE
   ============================================= */

.ab-img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 0 0 20px;
}

.ab-quote-section {
    display: flex;
    align-items: center;
}

.ab-left {
    width: 60%;
}

.ab-right {
    background: #6C4765;
    border-radius: 0px 20px 20px 0px;
    text-align: center;
    width: 40%;
}

.ab-form-control {
    padding-top: 20px;
}

.ab-btn {
    margin-top: 26px;
    padding: 1rem 4rem;
    border-radius: 3rem;
}

.ab-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ab-fm {
    width: 55%;
}

.ab-p {
    padding-bottom: 1rem;
}

.ab-text {
    width: 60%;
}

.ab-px {
    padding-top: 4rem;
}


/* =============================================
   EXPLORE ROOMS
   ============================================= */

.explore-room-section {
    background: #fff;
}

.explore-room {
    margin-bottom: 4.5rem;
    background: #F5F4F5;
}

.explore-room .explore-title {
    font-size: 25px;
    font-weight: 700;
    color: #2b1d29;
}

.explore-room .explore-room-prev,
.explore-room .explore-room-next {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.explore-room .explore-room-prev:hover,
.explore-room .explore-room-next:hover {
    background: #2b1d29;
    color: #fff;
}

.explore-room-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.explore-room-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.4s ease;
}

.explore-room-card:hover img {
    transform: scale(1.05);
}

.explore-room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.explore-room-card h3 {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}


/* =============================================
   KITCHEN DESIGN
   ============================================= */

.kitdes-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.kitdes-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.kitdes-item {
    flex: 1;
}

.kitdes-content {
    padding: 15px;
}

.kitdes-content h6 {
    font-size: 11px;
}

.kitdes-content p {
    font-weight: 600;
}

.kitdes-pad {
    padding-bottom: 4rem;
}

.kitdes-link {
    text-decoration: none;
    font-weight: 700;
}


/* =============================================
   MAGAZINE HEADER
   ============================================= */

.mag-header {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mag-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mag-tabs a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    position: relative;
}

.mag-tabs a.active {
    color: #e74c3c;
}

.mag-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

.mag-title {
    font-size: 42px;
}

.mag-share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mag-share-btn:hover {
    background: #f5f5f5;
}


/* =============================================
   MAGAZINE SECTION
   ============================================= */

.mag-section {
    margin-top: 80px;
}

.mag-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.mag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


/* =============================================
   POPULAR STORY
   ============================================= */

.popular-story-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.popular-story-card:hover {
    transform: translateY(-5px);
}

.popular-story-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


/* =============================================
   NEW HOME
   ============================================= */

.newhome-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.newhome-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.newhome-item {
    flex: 1;
}

.newhome-content {
    padding: 15px;
}

.newhome-content h6 {
    font-size: 11px;
}

.newhome-pad {
    padding-bottom: 4rem;
}

.newhome-link {
    text-decoration: none;
    font-weight: 700;
}


/* =============================================
   RECENT STORIES
   ============================================= */

.story-section {
    overflow: hidden;
}

.story-nav-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #e7e7e7;
    font-size: 18px;
    transition: 0.3s;
}

.story-nav-btn:hover {
    background: #7c5177;
    color: #fff;
}

.story-swiper {
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.story-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
}

.story-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.story-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.story-quote-box {
    background: linear-gradient(180deg, #7c5177, #593954);
    padding: 112px 35px;
    border-radius: 24px;
    color: #fff;
}

.story-quote-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.story-quote-text {
    text-align: center;
    color: #f1f1f1;
    margin-bottom: 30px;
}

.story-custom-input {
    height: 55px;
    border: none;
    border-radius: 10px;
    margin-bottom: 18px;
    padding-left: 15px;
}

.story-custom-input:focus {
    box-shadow: none;
}

.story-quote-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: #ff5f6d;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
}

.story-quote-btn:hover {
    background: #ff4254;
}

@media (max-width: 991px) {
    .story-quote-box {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .story-title {
        font-size: 16px;
    }
    .story-quote-title {
        font-size: 28px;
    }
    .story-img {
        height: 220px;
    }
}


/* =============================================
   HOUMZY HOMES -> BUDGET HOMES
   ============================================= */

.budget-section {
    background: #fff;
}

.budget-info {
    width: 280px;
    flex-shrink: 0;
}

.budget-info h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.budget-info p {
    color: #666;
    line-height: 1.7;
    font-size: 20px;
}

.budget-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
}

.budget-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left top;
}

.budget-content {
    padding: 18px;
}

.budget-content h6 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.budget-content p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 0;
}

.budget-explore-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.budget-explore-prev,
.budget-explore-next {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.budget-explore-prev:hover,
.budget-explore-next:hover {
    background: #2b1d29;
    color: #fff;
}

.budget-swiper {
    width: 100%;
}

.budget-dark-bg {
    padding-top: 4rem;
    background: #19334C;
    margin-bottom: 4rem;
}

.budget-pad-bottom {
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .budget-wrapper {
        flex-direction: column;
    }
    .budget-info {
        width: 100%;
    }
}


/* =============================================
   MASTER BEDROOM
   ============================================= */

.mbr-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.mbr-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.mbr-item {
    flex: 1;
}

.mbr-content {
    padding: 15px;
}

.mbr-content h6 {
    font-size: 11px;
}

.mbr-section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #F5F4F5;
}


/* =============================================
   RENOVATIONS
   ============================================= */

.renov-section {
    background: #fff;
}

.renov-info {
    width: 280px;
    flex-shrink: 0;
}

.renov-info h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.renov-info p {
    color: #666;
    line-height: 1.7;
    font-size: 20px;
}

.renov-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
}

.renov-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left top;
}

.renov-content {
    padding: 18px;
}

.renov-content h6 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.renov-content p {
    font-size: 17px;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    margin-bottom: 0;
}

.renov-explore-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.renov-explore-prev,
.renov-explore-next {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.renov-explore-prev:hover,
.renov-explore-next:hover {
    background: #2b1d29;
    color: #fff;
}

.renov-swiper {
    width: 100%;
}

.renov-dark-bg {
    padding-top: 4rem;
    background: #19334C;
    margin-bottom: 4rem;
}

.renov-pad-bottom {
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .renov-wrapper {
        flex-direction: column;
    }
    .renov-info {
        width: 100%;
    }
}


/* =============================================
   EXPERT ADVICE
   ============================================= */

.advice-section {
    background: #fff;
}

.advice-title {
    font-size: 25px;
    font-weight: 700;
    color: #2b1d29;
}

.advice-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.advice-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: 0.4s;
}

.advice-card:hover img {
    transform: scale(1.05);
}

.advice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.advice-card h3 {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.advice-nav {
    display: flex;
    gap: 10px;
}

.advice-prev,
.advice-next {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.advice-prev:hover,
.advice-next:hover {
    background: #2b1d29;
    color: #fff;
}

.advice-mb {
    margin-bottom: 4.5rem;
    background: #F5F4F5;
}


/* =============================================
   HOME ORGANIZATION
   ============================================= */

.homeorg-section {
    background: #fff;
}

.homeorg-info {
    width: 280px;
    flex-shrink: 0;
}

.homeorg-info h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.homeorg-info p {
    color: #666;
    line-height: 1.7;
    font-size: 20px;
}

.homeorg-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
}

.homeorg-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left top;
}

.homeorg-content {
    padding: 18px;
}

.homeorg-content h6 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.homeorg-content p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 0;
}

.homeorg-explore-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.homeorg-explore-prev,
.homeorg-explore-next {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.homeorg-explore-prev:hover,
.homeorg-explore-next:hover {
    background: #2b1d29;
    color: #fff;
}

.homeorg-swiper {
    width: 100%;
}

.homeorg-dark-bg {
    padding-top: 4rem;
    background: #19334C;
    margin-bottom: 4rem;
}

.homeorg-pad-bottom {
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .homeorg-wrapper {
        flex-direction: column;
    }
    .homeorg-info {
        width: 100%;
    }
}


/* =============================================
   VASTU
   ============================================= */

.vastu-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.vastu-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.vastu-item {
    flex: 1;
}

.vastu-content {
    padding: 15px;
}

.vastu-content h6 {
    font-size: 11px;
}

.vastu-pad {
    padding-bottom: 4rem;
}

.vastu-link {
    text-decoration: none;
    font-weight: 700;
}


/* =============================================
   INTERIOR DESIGN
   ============================================= */

.intdes-section {
    background: #fff;
}

.intdes-info {
    width: 280px;
    flex-shrink: 0;
}

.intdes-info h1 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #222;
}

.intdes-info p {
    color: #666;
    line-height: 1.7;
    font-size: 20px;
}

.intdes-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
}

.intdes-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: left top;
}

.intdes-content {
    padding: 18px;
}

.intdes-content h6 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.intdes-content p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 0;
}

.intdes-explore-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.intdes-explore-prev,
.intdes-explore-next {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #000;
    transition: 0.3s;
}

.intdes-explore-prev:hover,
.intdes-explore-next:hover {
    background: #2b1d29;
    color: #fff;
}

.intdes-swiper {
    width: 100%;
}

.intdes-dark-bg {
    padding-top: 4rem;
    background: #19334C;
    margin-bottom: 4rem;
}

.intdes-pad-bottom {
    padding-bottom: 4rem;
}

@media (max-width: 991px) {
    .intdes-wrapper {
        flex-direction: column;
    }
    .intdes-info {
        width: 100%;
    }
}


/* =============================================
   MATERIALS
   ============================================= */

.material-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.material-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.material-item {
    flex: 1;
}

.material-content {
    padding: 15px;
}

.material-content h6 {
    font-size: 11px;
}

.material-pad {
    padding-bottom: 4rem;
}

.material-link {
    text-decoration: none;
    font-weight: 700;
}


/* =============================================
   FINANCE
   ============================================= */

.finance-card {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #eee;
    height: 100%;
    cursor: pointer;
}

.finance-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.finance-item {
    flex: 1;
}

.finance-content {
    padding: 15px;
}

.finance-content h6 {
    font-size: 11px;
}

.finance-pad {
    padding-bottom: 4rem;
}

.finance-link {
    text-decoration: none;
    font-weight: 700;
}