/* ========== Interior Design Service Page Styles ========== */

.page-interior-design {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-interior-design .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.common-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.section-title.left {
    text-align: left;
}

.text-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 1. Hero Section (Split Layout) */
.interior-hero-split {
    padding: 80px 0;
    background: #fff;
    align-items: center;
    display: flex;
}

.hero-two-col {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-col {
    flex: 1;
}

.hero-img-col {
    flex: 1;
}

.hero-img-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Optional rounded corners */
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2c3e50;
    /* Dark blue/grey tone from image */
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.hero-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.hero-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.hero-check-list li:before {
    content: '✔';
    /* Or use FontAwesome if available */
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #f3821a;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

/* Button override for hero */
.hero-cta .btn-orange {
    padding: 12px 35px;
    border-radius: 4px;
    /* Slightly squarer as per image */
}


.btn-orange {
    display: inline-block;
    background: #f3821a;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-orange:hover {
    background: #e07316;
}

/* 1.5. Design Fees Pricing Table Section */
.design-fees-section {
    background: #fff;
}

.pricing-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.design-fees-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

/* Header Styling with Specific Colors */
.design-fees-table thead th {
    padding: 25px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-bottom: none;
    vertical-align: middle;
}

/* Interior Design Options Column - #FF5367 */
.design-fees-table th.col-options {
    background: #FF5367;
    text-align: left;
    padding-left: 30px;
    font-size: 18px;
}

/* Cost-Effective Package Column - #FFA103 */
.design-fees-table th.col-cost-effective {
    background: #FFA103;
}

/* Mid-Tier Package Column - #FF5367 */
.design-fees-table th.col-mid-tier {
    background: #FF5367;
}

/* High-End Package Column - #FFA103 */
.design-fees-table th.col-high-end {
    background: #FFA103;
}

.design-fees-table th .package-name {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.design-fees-table th .price-range {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* Body Styling */
.design-fees-table tbody tr {
    border-bottom: 1px solid #eee;
}

/* Middle row (500-1000sqm) - Gray background */
.design-fees-table tbody tr:nth-child(2) {
    background: #f5f5f5;
}

/* First and Last rows - White background */
.design-fees-table tbody tr:first-child,
.design-fees-table tbody tr:last-child {
    background: #fff;
}

.design-fees-table tbody tr:last-child {
    border-bottom: none;
}

.design-fees-table td {
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #000;
}

.design-fees-table td.row-label {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
    color: #000;
}

.design-fees-table td.price-cell {
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

/* Responsive table */
@media (max-width: 767px) {
    .pricing-table-wrapper {
        font-size: 14px;
    }

    .design-fees-table th,
    .design-fees-table td {
        padding: 15px 10px;
    }

    .design-fees-table th.col-options,
    .design-fees-table td.row-label {
        padding-left: 15px;
        font-size: 14px;
    }

    .design-fees-table td.price-cell {
        font-size: 16px;
    }
}

/* 2. Pricing Accordion Section */
.pricing-section {
    background: #f9f9f9;
}

.pricing-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-summary {
    padding: 25px 30px;
    cursor: pointer;
    list-style: none;
    /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    background: #fff;
    transition: background 0.3s;
}

.pricing-summary::-webkit-details-marker {
    display: none;
}

.pricing-summary:hover {
    background: #fefefe;
}

.pricing-summary:after {
    content: '+';
    font-size: 24px;
    color: #f3821a;
    transition: transform 0.3s;
}

.pricing-item[open] .pricing-summary:after {
    transform: rotate(45deg);
}

.pricing-content {
    padding: 0 30px 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-details {
    flex: 1;
    min-width: 300px;
}

.price-tag {
    font-size: 32px;
    color: #f3821a;
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f3821a;
    font-weight: bold;
}

.pricing-image {
    flex: 1;
    min-width: 300px;
    margin-top: 20px;
}

.pricing-image img {
    width: 100%;
    border-radius: 8px;
}

/* 3. Team Section & 4. Process Section (Split Layouts) */
.split-section {
    background: #fff;
}

.split-section.bg-gray {
    background: #f9f9f9;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    /* Align to top for long text */
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sample Link Styling */
.sample-link-wrapper {
    margin-top: 20px;
}

.sample-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.sample-url {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    word-break: break-all;
}

.sample-url:hover {
    color: #f3821a;
    text-decoration: underline;
}

/* Process Section Specifics */
.process-sub-block {
    margin-bottom: 40px;
}

.process-sub-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* 5. Category Grid Section */
.category-section {
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    group: hover;
}

.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cat-item:hover img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    align-items: flex-end;
    display: flex;
}

.cat-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* 6. Case Study Section (Accordion Style) */
.case-section {
    background: #fff;
    padding-bottom: 100px;
}

.case-accordion {
    display: flex;
    height: 600px;
    /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    gap: 1px;
    /* Tiny gap for separator effect */
}

.case-panel {
    flex: 1;
    position: relative;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth growing effect */
    cursor: pointer;
    overflow: hidden;
}

.case-panel:hover {
    flex: 3;
    /* Grow on hover */
}

.case-panel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: transparent;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    pointer-events: none;
    /* Let clicks pass through */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.case-panel:hover .case-panel-overlay {
    opacity: 1;
}

.case-label {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: auto;
    /* Allow UTE mouse events to pass through */
}

/* View Design Button */
.case-view-btn {
    display: inline-block;
    background: #C07373;
    color: #fff;
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Enable clicks on button */
    align-self: center;
}

.case-view-btn:hover {
    background: #a86060;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 115, 115, 0.4);
}

/* 7. Project Cases Gallery Section */
.project-cases-section {
    background: #eeeae5;
    /* Light warm gray/beige */
}

.case-gallery-block {
    margin-top: 50px;
    margin-bottom: 80px;
}

.case-header-title {
    font-size: 28px;
    font-weight: 700;
    color: #a85d26;
    /* Brownish orange */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.main-view {
    width: 100%;
    height: 500px;
    /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.thumbs-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    /* For scrollbar if needed */
    flex-wrap: nowrap;
    /* Keep all items in one row */
    cursor: grab;
    /* Show grab cursor to indicate draggable */
    user-select: none;
    /* Prevent text selection while dragging */
}

.thumbs-list img {
    box-sizing: border-box;
    /* Fix for layout issues */
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
    /* Default no border */
}

/* Distinct Hover vs Active */
.thumbs-list img:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    /* No border on hover to avoid confusion */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbs-list img.active-thumb {
    opacity: 1;
    border-color: #a85d26;
    /* Strong active border */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* 8. Free Quote Section */
.free-quote-section {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.free-quote-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 40px;
}

.quote-flex-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.quote-left-col {
    flex: 0 0 40%;
    text-align: center;
}

.quote-left-col img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.quote-left-text {
    font-size: 20px;
    font-family: serif;
    /* Matches screenshot serif feel */
    color: #2c3e50;
    font-weight: 500;
}

.quote-right-col {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    /* Minimal border radius */
}

/* Form Styling */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    /* Square inputs based on screenshot */
    background: #fff;
    font-size: 14px;
    color: #555;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #f3821a;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
    width: 30%;
    /* Roughly 3 per row */
    min-width: 140px;
}

.checkbox-item input[type="checkbox"] {
    accent-color: #555;
}

.file-upload-wrapper {
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    background: #6c757d;
    /* Grey button color */
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #5a6268;
}

/* Responsive */
@media (max-width: 991px) {

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .hero-two-col {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-col {
        order: 2;
        /* Text below image on mobile if preferred, or remove to keep text top */
    }

    .hero-desc {
        text-align: center;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-accordion {
        height: 400px;
    }

    .main-view {
        height: 350px;
    }

    .quote-flex-container {
        flex-direction: column;
    }

    .quote-left-col {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .case-accordion {
        flex-direction: column;
        /* Stack vertically on mobile */
        height: 800px;
    }

    .case-panel:hover {
        flex: 2;
    }

    .case-panel-overlay {
        opacity: 1;
        transform: translateY(0);
        bottom: 20px;
        left: 20px;
    }

    .main-view {
        height: 250px;
    }

    .thumbs-list img {
        width: 100px;
        height: 70px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .checkbox-item {
        width: 48%;
        /* 2 per row on mobile */
    }
}