    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        overflow-x: hidden;
        background: #F7F5F2;
        color: #2B2B2B;
    }
    /* Header Styles */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #111111 !important;
        color: #F7F5F2;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

    /* UPDATED LOGO STYLES - NO BORDERS */
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    .logo-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: visible;
    }
    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        background: transparent;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    nav a {
        text-decoration: none;
        color: #F7F5F2;
        font-weight: 500;
        font-size: 16px;
        padding: 8px 16px;
        border-radius: 6px;
        transition: all 0.3s;
    }
    nav a:hover {
        background:#C9A24D;
    }
    nav a.active {
        background: #C9A24D;
        color: #111111;
    }
    .cta-button {
        background: #C9A24D !important;
        color: #2B2B2B;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
    }
    .cta-button:hover {
        background: #C9A24D !important; /* Match nav active color */
        color: #111111;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(201,162,77,0.3);
    }
    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        background: none;
        padding-top: 80px;
        overflow: hidden;
    }

    
    .hero-section::before {
        content: '';
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../img/home/banner1.jpeg') center center/cover no-repeat;
        background-attachment: fixed;
        opacity: 0.7;
        z-index: 0;
        filter: none;
    }
    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
        width: 100vw;
    }
    .hero-content h2 {
        font-size: 72px;
        font-weight: 900;
        color: white;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: -2px;
    }
    .hero-subtitle {
        font-size: 28px;
        color: white;
        margin-bottom: 50px;
        font-weight: 300;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    .stat-item h3 {
        font-size: 14px;
        color: rgba(255,255,255,0.8);
        font-weight: 600;
        margin-bottom: 5px;
    }
    .stat-item .stat-value {
        font-size: 24px;
        color: #FF4444;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .stat-item p {
        font-size: 16px;
        color: white;
        font-weight: 500;
    }
    .hero-button {
        display: inline-block;
        background: black;
        color: white;
        padding: 20px 50px;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 0;
        transition: all 0.3s;
    }
    .hero-button:hover {
        background: #333;
        transform: translateX(10px);
    }
    /* Quote Form */
    .quote-form {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .quote-form h3 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 30px;
        color: #000;
        border-left: 4px solid #FF4444;
        padding-left: 20px;
    }
    .form-group {
        margin-bottom: 25px;
    }
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }
    .form-group label .required {
        color: #FF4444;
    }
    .form-group input,
    .form-group select {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s;
    }
    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #FF4444;
    }
    .submit-button {
        width: 100%;
        background: #FF4444;
        color: white;
        padding: 18px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }
    .submit-button:hover {
        background: #E63939;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255,68,68,0.4);
    }
    .form-footer {
        margin-top: 20px;
        font-size: 13px;
        color: #666;
        text-align: center;
    }
    .form-footer a {
        color: #FF4444;
        text-decoration: none;
    }
    /* Content Sections */
    .content-section {
        padding: 100px 20px;
        max-width: 1400px;
        margin: 0 auto;
        background: #F7F5F2;
        position: relative;
        z-index: 2;
    }
    .content-section h2 {
        font-size: 42px;
        margin-bottom: 30px;
        color: #000;
    }
    .content-section h3 {
        font-size: 28px;
        margin: 40px 0 20px 0;
        color: #000;
        font-weight: 600;
    }
    .content-section p {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 20px;
    }
    /* Footer */
    footer {
        background: #111111;
        color: #F7F5F2;
        padding: 80px 20px 20px 20px;
    }
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }
    .footer-column h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .footer-column ul {
        list-style: none;
    }
    .footer-column ul li {
        margin-bottom: 15px;
    }
    .footer-column ul li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s;
    }
    .footer-column ul li a:hover {
        color: #FF4444;
        padding-left: 5px;
    }
    .footer-column ul li a.red-link {
        color: #FF4444;
    }
    .contact-info {
        margin-bottom: 30px;
    }
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }
    .contact-icon {
        color: #FF4444;
        font-size: 20px;
        margin-top: 3px;
    }
    .contact-details h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .contact-details p,
    .contact-details a {
        color: rgba(255,255,255,0.8);
        font-size: 15px;
        line-height: 1.6;
        text-decoration: none;
    }
    .contact-details a:hover {
        color: #FF4444;
    }
    .footer-form {
        margin-top: 30px;
    }
    .footer-form h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .footer-form .required {
        color: #FF4444;
    }
    .footer-form input {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        border-radius: 4px;
    }
    .footer-form input::placeholder {
        color: rgba(255,255,255,0.5);
    }
    .footer-form button {
        width: 100%;
        background: transparent;
        color: white;
        padding: 15px;
        border: 2px solid white;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .footer-form button:hover {
        background: #FF4444;
        border-color: #FF4444;
    }
    .footer-disclaimer {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        margin-top: 15px;
        line-height: 1.6;
    }
    .footer-services {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 60px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .service-category h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    .service-category ul {
        list-style: none;
    }
    .service-category ul li {
        margin-bottom: 12px;
    }
    .service-category ul li a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s;
    }
    .service-category ul li a:hover {
        color: #FF4444;
    }
    .footer-bottom {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 14px;
        color: rgba(255,255,255,0.6);
    }
    /* WhatsApp Button */
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 5px 20px rgba(37,211,102,0.4);
        cursor: pointer;
        z-index: 999;
        transition: all 0.3s;
    }
    .whatsapp-button:hover {
        transform: scale(1.1);
    }
    .chat-popup {
        position: fixed;
        bottom: 100px;
        right: 30px;
        background: white;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #333;
        font-weight: 500;
        z-index: 999;
    }
    /* Mobile Menu */
    .mobile-menu-button {
        display: none;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #F7F5F2;
        padding: 5px;
        transition: all 0.3s;
    }

    .mobile-menu-button:hover {
        color: #C9A24D;
    }

    /* Mobile menu styles */
    nav.mobile-menu-active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111111;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    nav.mobile-menu-active a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav.mobile-menu-active a:last-child {
        border-bottom: none;
    }
/* Tablet Styles */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 15px;
        height: 75px;
    }
    .logo-icon {
        width: 55px !important;
        height: 55px !important;
    }
    nav a {
        font-size: 15px;
        padding: 6px 14px;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-content h2 {
        font-size: 60px;
    }
    .hero-subtitle {
        font-size: 24px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

    @media (max-width: 968px) {
        nav {
            display: none;
        }
        .mobile-menu-button {
            display: block;
        }
        .hero-container {
            grid-template-columns: 1fr;
            padding: 40px 20px;
        }
        .hero-content h2 {
            font-size: 48px;
        }
        .hero-subtitle {
            font-size: 20px;
        }
        .stats-grid {
            grid-template-columns: 1fr;
        }
        .footer-top {
            grid-template-columns: 1fr;
        }
        .footer-services {
            grid-template-columns: 1fr;
        }
        .logo-icon {
            width: 50px;
            height: 50px;
        }
        .cta-button {
            padding: 10px 20px;
            font-size: 14px;
        }
        .content-section h2 {
            font-size: 36px;
        }
        .content-section h3 {
            font-size: 24px;
        }
        .content-section p {
            font-size: 16px;
        }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .header-container {
            height: 70px;
            padding: 0 15px;
        }
        .hero-section {
            padding-top: 70px;
        }
        .hero-content h2 {
            font-size: 32px;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
        }
        .hero-button {
            padding: 15px 30px;
            font-size: 16px;
        }
        .quote-form {
            padding: 30px;
        }
        .quote-form h3 {
            font-size: 28px;
        }
        .turnkey-section {
            padding: 40px 15px;
        }
        .turnkey-left h2 {
            font-size: 22px;
        }
        .turnkey-left h3 {
            font-size: 20px;
        }
        .turnkey-left p {
            font-size: 14px;
        }
        .card h4 {
            font-size: 16px;
        }
        .card p {
            font-size: 13px;
        }
        .steps-section {
            padding: 60px 15px;
        }
        .steps-container h2 {
            font-size: 32px;
        }
        .step-circle {
            width: 100px;
            height: 100px;
        }
        .step-circle img {
            width: 50px;
            height: 50px;
        }
        .step-number {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }
        .work-showcase-section {
            padding: 60px 15px;
        }
        .work-showcase-container {
            gap: 40px;
        }
        .work-content h2 {
            font-size: 28px;
        }
        .work-preview img {
            min-height: 300px;
        }
        .work-stats {
            flex-direction: column;
            gap: 15px;
        }
        .interior-ideas-section {
            padding: 60px 15px;
        }
        .interior-header h2 {
            font-size: 28px;
        }
        .why-scroll-section {
            padding: 60px 0;
        }
        .why-header h2 {
            font-size: 28px;
        }
        .tour360-section {
            padding: 60px 15px;
        }
        .tour360-header h2 {
            font-size: 28px;
        }
        .contact-section {
            padding: 80px 15px;
        }
        .contact-form-box {
            padding: 40px 20px;
        }
        .contact-form-box h2 {
            font-size: 28px;
        }
        .compare-section {
            padding: 80px 15px;
        }
        .compare-header h2 {
            font-size: 28px;
        }
        .clients-section {
            padding: 80px 0;
        }
        .clients-header h2 {
            font-size: 28px;
        }
        .team-section {
            padding: 80px 15px;
        }
        .team-header h2 {
            font-size: 28px;
        }
        .team-cards {
            gap: 30px;
        }
        .footer-container {
            padding: 60px 15px 20px;
        }
        .whatsapp-button {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
        .chat-popup {
            bottom: 80px;
            right: 20px;
            padding: 12px 15px;
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .header-container {
            height: 60px;
            padding: 0 10px;
        }
        .logo-icon {
            width: 45px !important;
            height: 45px !important;
        }
        .mobile-menu-button {
            font-size: 24px;
        }
        .cta-button {
            padding: 8px 16px;
            font-size: 12px;
        }
        .hero-section {
            padding-top: 60px;
        }
        .hero-content h2 {
            font-size: 24px;
        }
        .hero-subtitle {
            font-size: 16px;
        }
        .hero-button {
            padding: 12px 24px;
            font-size: 14px;
        }
        .quote-form {
            padding: 20px;
        }
        .quote-form h3 {
            font-size: 24px;
        }
        .turnkey-left h2 {
            font-size: 20px;
        }
        .turnkey-left h3 {
            font-size: 18px;
        }
        .steps-container h2 {
            font-size: 24px;
        }
        .step-item {
            width: 120px;
        }
        .step-circle {
            width: 80px;
            height: 80px;
        }
        .step-circle img {
            width: 40px;
            height: 40px;
        }
        .work-content h2 {
            font-size: 24px;
        }
        .work-preview img {
            min-height: 250px;
        }
        .interior-header h2 {
            font-size: 24px;
        }
        .why-header h2 {
            font-size: 24px;
        }
        .tour360-header h2 {
            font-size: 24px;
        }
        .tour360-cta h3 {
            font-size: 20px;
        }
        .contact-form-box h2 {
            font-size: 24px;
        }
        .compare-header h2 {
            font-size: 24px;
        }
        .clients-header h2 {
            font-size: 24px;
        }
        .team-header h2 {
            font-size: 24px;
        }
        .team-card {
            padding: 30px 20px;
        }
        .footer-column h4 {
            font-size: 16px;
        }
        .footer-column ul li a {
            font-size: 14px;
        }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
        .header-container {
            height: 55px;
            padding: 0 8px;
        }
        .logo-icon {
            width: 40px !important;
            height: 40px !important;
        }
        .mobile-menu-button {
            font-size: 20px;
        }
        .cta-button {
            display: none; /* Hide CTA button on very small screens */
        }
        .mobile-menu-active a {
            padding: 10px 15px;
            font-size: 14px;
        }
    }



    /* ==============================
   TURNKEY SECTION – HALF HEIGHT VERSION
   ============================== */

.turnkey-section {
    padding: 60px 20px;
    background: #FFF5F5;
    position: relative;
}

.turnkey-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT CONTENT - ADJUSTED TO MATCH CARD SIZE */
.turnkey-left {
    flex: 1;
    min-width: 250px;
}

.turnkey-left h2 {
    font-size: 28px;              /* Reduced from 48px */
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    margin-bottom: 12px;          /* Reduced from 20px */
}

.turnkey-left .brand-name {
    color: #FF4444;
    font-size: 16px;              /* Reduced from 24px */
    font-weight: bold;
    margin: 15px 0;               /* Reduced from 30px */
}

.turnkey-left h3 {
    font-size: 22px;              /* Reduced from 36px */
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 12px;          /* Reduced from 20px */
}

.turnkey-left p {
    font-size: 13px;              /* Reduced from 18px */
    line-height: 1.6;             /* Reduced from 1.8 */
    color: #333;
}

/* ==============================
   CARDS CONTAINER - HALF HEIGHT
   ============================== */

.turnkey-cards {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

/* CARD - HALF HEIGHT VERSION */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    flex: 1;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Card gradient hover */
.card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 68, 68, 0.03)
    );
    transition: all 0.4s ease;
}

.card:hover::before {
    top: 0;
}

/* Icon Wrapper - Half Size */
.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Card image */
.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.card:hover .icon-wrapper {
    transform: scale(1.1) translateY(-8px);
}

/* Card title - Half Size */
.card h4 {
    font-size: 16px;
    color: #FF4444;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: -0.3px;
}

/* Card text - Half Size */
.card p {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

/* Card hover lift */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.12);
}

/* ==============================
   MOBILE RESPONSIVE
   ============================== */

@media (max-width: 1200px) {
    .turnkey-cards {
        gap: 12px;
    }
    
    .card {
        padding: 18px 12px;
    }
    
    .turnkey-left h2 {
        font-size: 24px;
    }
    
    .turnkey-left h3 {
        font-size: 20px;
    }
}

@media (max-width: 968px) {
    .turnkey-container {
        flex-direction: column;
        text-align: center;
    }

    .turnkey-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .card {
        width: 100%;
        max-width: 300px;
        padding: 25px 20px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 13px;
    }

    .turnkey-left h2 {
        font-size: 26px;
    }

    .turnkey-left h3 {
        font-size: 22px;
    }
    
    .turnkey-left p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .turnkey-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }
}


   /* ==============================
   DREAM HOME STEPS SECTION
   ============================== */

.steps-section {
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.steps-container h2 span {
    color: #FF4444;
}

.steps-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 80px;
}

/* Steps Layout */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Step Item */
.step-item {
    text-align: center;
    width: 180px;
}

.step-circle {
    width: 140px;
    height: 140px;
    background: #f7f7f7;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Step Number */
.step-number {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4444;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Step Text */
.step-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Dotted Line */
.step-line {
    width: 70px;
    height: 2px;
    border-top: 2px dashed #ccc;
    margin: 0 10px;
}

/* Button */
.steps-button {
    display: inline-block;
    margin-top: 60px;
    background: #FF4444;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.steps-button:hover {
    background: #e63939;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,68,68,0.3);
}

/* ==============================
   MOBILE RESPONSIVE
   ============================== */

@media (max-width: 992px) {
    .steps-wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .step-line {
        display: none;
    }
}


    /* ==============================
   WORK SHOWCASE SECTION
   ============================== */

.work-showcase-section {
    padding: 100px 20px;
    background: #ffffff;
}

.work-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
}

/* LEFT IMAGE */
.work-preview {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.work-preview img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-preview:hover img {
    transform: scale(1.05);
}

/* Badge */
.work-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 14px 18px;
    border-radius: 14px;
}

.work-badge h4 {
    font-size: 16px;
    font-weight: 700;
}

.work-badge p {
    font-size: 12px;
    opacity: 0.8;
}

/* RIGHT CONTENT */
.work-tag {
    color: #FF4444;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.work-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;
}

.work-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* STATS */
.work-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-box {
    background: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    color: #FF4444;
    font-size: 26px;
    font-weight: 800;
}

.stat-box p {
    font-size: 14px;
    margin-top: 5px;
}

/* LINK */
.work-link {
    display: inline-block;
    margin-bottom: 35px;
    color: #FF4444;
    font-weight: 700;
    text-decoration: none;
}

/* THUMBNAILS */
.work-thumbnails {
    display: flex;
    align-items: center;
    gap: 14px;
}

.work-thumbnails img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-thumbnails img:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* VIEW ALL BOX */
.view-all-box {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: #ffb3b3;
    color: #ff0000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-box:hover {
    background: #FF4444;
    color: #fff;
}

/* MOBILE */
@media (max-width: 992px) {
    .work-showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-preview img {
        min-height: 400px;
    }

    .work-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .work-content h2 {
        font-size: 28px;
    }

    .stat-box {
        flex: 1;
        min-width: 120px;
        padding: 15px 20px;
    }

    .work-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .work-thumbnails img {
        width: 70px;
        height: 70px;
    }

    .view-all-box {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .work-showcase-section {
        padding: 60px 15px;
    }

    .work-showcase-container {
        gap: 30px;
    }

    .work-preview img {
        min-height: 300px;
    }

    .work-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .work-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .work-stats {
        justify-content: center;
    }

    .stat-box {
        padding: 12px 16px;
    }

    .stat-box h3 {
        font-size: 22px;
    }

    .stat-box p {
        font-size: 13px;
    }

    .work-thumbnails img {
        width: 60px;
        height: 60px;
    }

    .view-all-box {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
}


   /* ==============================
   INTERIOR IDEAS SECTION
   ============================== */

.interior-ideas-section {
    padding: 100px 20px;
    background: #ffffff;
}

.interior-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interior-header h2 {
    font-size: 34px;
    font-weight: 800;
}

.interior-header p {
    color: #555;
    margin-top: 8px;
}

.view-all-link {
    color: #FF4444;
    font-weight: 700;
    text-decoration: none;
}

/* GRID */
.interior-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

/* BIG CARD */
.interior-card.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* CARD */
.interior-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

.interior-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* HOVER OVERLAY */
.interior-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.interior-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* QUOTE BUTTON */
.quote-btn {
    padding: 12px 28px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #FF4444;
    border-color: #FF4444;
}

/* HOVER EFFECT */
.interior-card:hover img {
    transform: scale(1.08);
}

.interior-card:hover .overlay {
    opacity: 1;
}

/* ==============================
   MOBILE
   ============================== */

@media (max-width: 992px) {
    .interior-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .interior-card.big {
        grid-column: span 1;
        grid-row: span 1;
    }

    .interior-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


   /* ==============================
   WHY CHOOSE US – INFINITE SCROLL
   ============================== */

.why-scroll-section {
    background: #f7f7f7;
    padding: 100px 0;
    overflow: hidden;
}

.why-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.why-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.why-header h2 span {
    color: #FF4444;
}

.why-header p {
    margin-top: 10px;
    color: #555;
    font-size: 17px;
}

/* SCROLL AREA */
.why-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.why-scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
}

.why-scroll-wrapper:hover .why-scroll-track {
    animation-play-state: paused;
}

/* CARD */
.why-card {
    background: #fff;
    width: 300px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,68,68,0.15);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255,68,68,0.12);
    color: #FF4444;
    font-size: 26px;
    font-weight: 700;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* KEYFRAMES */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .why-card {
        width: 260px;
    }
}

    /* ==============================
   360 TOUR SECTION
   ============================== */

.tour360-section {
    padding: 100px 20px;
    background: #ffffff;
}

.tour360-header {
    max-width: 1400px;
    margin: 0 auto 50px;
}

.tour360-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.tour360-header span {
    color: #FF4444;
}

.tour360-header p {
    color: #555;
    margin-top: 10px;
}

/* GRID */
.tour360-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* CARDS */
.tour360-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tour-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover img {
    transform: scale(1.08);
}

/* 360 BADGE */
.badge360 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
}

/* INFO */
.tour-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.tour-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.tour-info p {
    color: #fff;
    opacity: 0.85;
}

/* CTA PANEL */
.tour360-cta {
    background: #FF2D3D;
    border-radius: 30px;
    padding: 60px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tour360-cta h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
}

.tour360-btn {
    background: #fff;
    color: #FF2D3D;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.tour360-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 992px) {
    .tour360-grid {
        grid-template-columns: 1fr;
    }

    .tour360-cards {
        grid-template-columns: 1fr;
    }

    .tour360-cta {
        margin-top: 30px;
    }
}


   /* ==============================
   CONTACT FORM SECTION
   ============================== */

.contact-section {
    padding: 120px 20px;
    background: #f7f7f7;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* IMAGE SIDE */
.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    color: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.image-overlay h3 {
    font-size: 34px;
    font-weight: 800;
}

.image-overlay p {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

/* FORM SIDE */
.contact-form-box {
    padding: 60px;
}

.contact-form-box h2 {
    font-size: 36px;
    font-weight: 800;
}

.contact-form-box span {
    color: #FF4444;
}

.form-subtitle {
    margin: 10px 0 30px;
    color: #555;
}

/* FORM */
.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid #e6e6e6;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF4444;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.15);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #FF4444;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e63a3a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,68,68,0.35);
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 280px;
    }

    .contact-form-box {
        padding: 40px 30px;
    }
}

   /* ==============================
   WHAT SETS US APART
   ============================== */

.compare-section {
    padding: 120px 20px;
    background: #ffffff;
}

.compare-header {
    text-align: center;
    margin-bottom: 60px;
}

.compare-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.compare-header span {
    color: #FF4444;
}

.compare-header p {
    margin-top: 10px;
    color: #555;
}

/* TABLE */
.compare-table {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* COLUMNS */
.compare-col {
    border-radius: 18px;
    padding: 30px;
}

.compare-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* LEFT (FEATURED) */
.compare-col.featured {
    border: 2px solid #FF4444;
}

.compare-col.featured h3 {
    color: #FF4444;
}

/* RIGHT */
.compare-col.normal {
    background: #f9f9f9;
}

/* ROWS */
.compare-row {
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.compare-row strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.compare-row p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.compare-col.featured .compare-row:hover {
    background: rgba(255,68,68,0.08);
    transform: translateX(6px);
}

.compare-col.normal .compare-row:hover {
    background: #ffffff;
    transform: translateX(-6px);
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
    .compare-table {
        grid-template-columns: 1fr;
    }
}

    /* ==============================
   CLIENT TESTIMONIALS – INFINITE
   ============================== */

.clients-section {
    padding: 120px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.clients-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.clients-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.clients-header span {
    color: #FF4444;
}

.clients-header p {
    margin-top: 10px;
    color: #555;
}

/* SLIDER */
.clients-slider {
    overflow: hidden;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: clientScroll 45s linear infinite;
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

/* CARD */
.client-card {
    width: 380px;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-10px);
}

/* VIDEO THUMB */
.video-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

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

/* PLAY ICON */
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: rgba(0,0,0,0.35);
}

/* NAME */
.client-name {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* REVIEW */
.review {
    font-size: 15px;
    color: #444;
    margin: 18px 0;
    line-height: 1.6;
}

/* VIEW LINK */
.view-link {
    color: #FF4444;
    font-weight: 700;
    text-decoration: none;
}

/* ANIMATION */
@keyframes clientScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .client-card {
        width: 300px;
    }
}
    /* ==============================
   TEAM & REVIEW SECTION
   ============================== */

.team-section {
    padding: 120px 20px;
    background: #ffffff;
    position: relative;
}

/* Google Review */
.google-review {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-review img {
    width: 42px;
}

.rating {
    font-size: 14px;
    color: #f59e0b;
}

.score {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    margin-right: 6px;
}

/* Header */
.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.team-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.team-header span {
    color: #FF4444;
}

.team-header p {
    margin-top: 12px;
    color: #555;
    font-size: 17px;
}

/* Cards */
.team-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 60px rgba(255,68,68,0.18);
}

/* Avatar */
.avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255,68,68,0.12);
    color: #FF4444;
    font-size: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {

    .google-review {
        position: static;
        justify-content: center;
        margin-bottom: 40px;
    }

    .team-cards {
        grid-template-columns: 1fr;
    }
}
