
        /* Base Styles */
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #df6939;
            --accent-light: #ff8e8e;
            --light: #f8f9fa;
            --text: #2d3436;
            --text-light: #636e72;
            --gold: #e6b325;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0 50px 0;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--accent);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: var(--accent);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
        }

        .btn-outline::before {
            background: var(--accent);
        }

        .btn-outline:hover {
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            display: inline-block;
            position: relative;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary);
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1002;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 25px;
            display: inline-flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 8px;
            color: var(--accent);
        }

        .social-top a {
            color: white;
            margin-left: 15px;
            transition: var(--transition);
        }

        .social-top a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1001;
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            height: 65px;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .logo img {
            height: 100%;
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.8) 100%), url('https://brighthomeinteriors.com/wp-content/uploads/2025/08/BHI-banner-img3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-content {
            max-width: 800px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            animation: fadeInUp 1s 0.5s forwards;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0;
            animation: fadeInUp 1s 0.8s forwards;
        }

        .hero .btn {
            opacity: 0;
            animation: fadeInUp 1s 1.1s forwards;
        }

        .hero-shape {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent) 0%, var(--gold) 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            opacity: 0.1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        .services {
            background: var(--light);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%231a1a2e" opacity="0.02"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');*/
            /*background-size: cover;*/
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-content p {
            margin-bottom: 20px;
            color: var(--text-light);
            flex-grow: 1;
        }

        .service-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .service-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--primary);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        .text-center {
            text-align: center;
            margin-top: 50px;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.05;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            background: white;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--accent);
            transition: var(--transition);
            position: relative;
        }

        .feature-card:hover .feature-icon {
            background: var(--accent);
            color: white;
            transform: rotateY(180deg);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .feature-card p {
            color: var(--text-light);
        }

        /* Inspiration Section */
        .inspiration {
            background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
            position: relative;
        }

        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .inspiration-card {
            position: relative;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

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

        .inspiration-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .inspiration-card:hover img {
            transform: scale(1.1);
        }

        .inspiration-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 20px 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .inspiration-card:hover .inspiration-overlay {
            transform: translateY(0);
        }

        .inspiration-overlay h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .inspiration-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* About Section */
        .about {
            background: white;
            position: relative;
           
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background: var(--accent);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-img::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: var(--gold);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

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

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 20px;
            position: relative;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo img {
            max-width: 200px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }

        .footer-logo p {
            color: #b2bec3;
            margin-bottom: 25px;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            font-size: 1.3rem;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #b2bec3;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .footer-links ul li a i {
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .footer-links ul li a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b2bec3;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright .powered-by {
            font-size: 0.85rem;
        }

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            background: var(--accent);
            opacity: 0.05;
            border-radius: 50%;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 5%;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation: float 20s infinite linear reverse;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            bottom: 20%;
            left: 15%;
            animation: float 12s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        
        
             /* Hide WP Social Chat button only on post ID 2189 */
.postid-2316 #qlwapp {
    display: none !important;
}

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid, .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .inspiration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-img {
                order: 2;
            }
            
            .about-content {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .services-grid, .features-grid, .inspiration-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .copyright {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
  