  :root {
            --primary-bg: #f8f9fa;
            --secondary-bg: #ffffff;
            --accent-blue: #7f5d70;
            --accent-gold: #7f5d70;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--primary-bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
        }

        p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: #7f5d70;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.5s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-blue);
            color: var(--accent-blue);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: var(--accent-blue);
            color: white;
        }

        section {
            padding: 100px 0;
        }

       

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .hero-content {
            max-width: 650px;
            z-index: 2;
            
        }

        .hero h1 {
            font-size: 2.3rem;
            margin-bottom: 1.5rem;
            color: white;
            text-align: center;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
        }

        /* NEW: Get Quote Button in Hero */
        .hero-quote-btn {
            position: absolute;
            bottom: 50px;
            left: 45%;
            transform: translateX(-50%);
            z-index: 10;
            animation: float 3s ease-in-out infinite;
        }

        /* Stats Section */
        .stats {
            background: var(--secondary-bg);
            text-align: center;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .stat-item {
            padding: 30px;
            flex: 1;
            min-width: 250px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        


        /* About Section */
          .about {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/about.webp');
            background-size: cover;
            background-position: center;
            
        }
        .about {
           
            text-align: center;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-content {
            flex: 1;
            color:#f8f9fa;
        }

        
@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
        min-height: auto;
        background-position: top center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-btn {
        padding: 10px 24px;
    }
}

        /* Services Section */
        .services {
            background: var(--secondary-bg);
            text-align: center;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--primary-bg);
            border-radius: var(--radius);
            padding: 40px 30px;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
        }
        .load-more-btn{
            bottom: 50px;
            animation: float 3s ease-in-out infinite;}

        /* Portfolio Section */
        .portfolio {
            background: var(--primary-bg);
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: none;
            border: none;
            padding: 10px 20px;
            margin: 5px 10px;
            cursor: pointer;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
            border-radius: 50px;
        }

        .filter-btn.active {
            background: var(--accent-blue);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 300px;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* UPDATED: Portfolio Overlay */
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(74, 111, 165, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay h3 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .portfolio-features {
            list-style: none;
            margin-bottom: 20px;
            text-align: left;
        }

        .portfolio-features li {
            color: white;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .portfolio-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        .price-btn {
            background: var(--accent-gold);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .price-btn:hover {
            background: white;
            color: var(--accent-blue);
            transform: translateY(-3px);
        }

        /* Testimonials Section */
           h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
        }

        p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
        }

        /* Testimonials Section */
           .testimonials {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/3d.jpg');
            background-size: cover;
            background-position: center;
            
        }
        .testimonials {
            
            text-align: center;
            position: relative;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            height: 300px; /* Fixed height for consistent layout */
        }

        .testimonial-slide {
            padding: 40px;
            background: var(--primary-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 0 20px;
            position: absolute;
            width: calc(100% - 40px);
            top: 0;
            left: 100%;
            transition: left 0.8s ease, opacity 0.8s ease;
            opacity: 0;
        }

        .testimonial-slide.active {
            left: 0;
            opacity: 1;
        }

        .testimonial-slide.prev {
            left: -100%;
            opacity: 0;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            line-height: 1.8;
        }

        .testimonial-text:before, .testimonial-text:after {
            content: '"';
            font-size: 4rem;
            color: var(--accent-gold);
            position: absolute;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-text:before {
            top: -20px;
            left: -10px;
        }

        .testimonial-text:after {
            bottom: -40px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--accent-gold);
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .author-info p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--accent-blue);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--accent-gold);
            transform: scale(1.2);
        }

        /* Responsive Styles ------------------------------------------------------------------------*/
        @media (max-width: 992px) {
            h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-slide {
                padding: 30px;
            }
            
            .testimonial-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 2rem;
                text-align: center;
                width: 100%;
            }
            
            h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .testimonial-slider {
                height: 350px; /* Increased height for mobile */
            }
            
            .testimonial-slide {
                padding: 25px 20px;
            }
            
            .testimonial-text {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 80px 0;
            }
            
            .testimonial-slider {
                height: 380px; /* More height for small screens */
            }
            
            .testimonial-slide {
                padding: 20px 15px;
            }
            
            .testimonial-text {
                font-size: 0.95rem;
                margin-bottom: 20px;
                line-height: 1.6;
            }
            
            .testimonial-text:before, .testimonial-text:after {
                font-size: 3rem;
            }
            
            .testimonial-text:before {
                top: -15px;
                left: -5px;
            }
            
            .testimonial-text:after {
                bottom: -30px;
                right: -5px;
            }
            
            .author-img {
                width: 50px;
                height: 50px;
            }
            
            .author-info h4 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 400px) {
            .testimonial-slider {
                height: 400px;
            }
            
            .testimonial-text {
                font-size: 0.9rem;
            }
        }
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--accent-blue) 0%, #2c5282 100%);
            color: white;
            text-align: center;
            padding: 120px 0;
        }

        .cta h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta h2:after {
            background: var(--accent-gold);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* Contact Section */
        .contact {
            background: var(--secondary-bg);
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .contact-info {
            flex: 1;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 70px 0 20px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        /* WhatsApp widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .whatsapp-widget:hover {
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                width: 95%;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .about-container, .contact-container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 80px 0;
            }
            
            @media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        margin: 0px;
        align-items: center;
    }
}
            
           /* Only on mobile screens */
@media (max-width: 768px) {
  .hero-quote-btn {
    position: absolute;
    bottom: 50px;              /* distance from bottom */
    left: 20%;                 /* center horizontally */
    transform: translateX(-50%);
    width: 60%;                /* make button container wider */
    text-align: center;        /* center text inside */
  }
  
   .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }


  .hero-quote-btn .btn {
    display: inline-block;
    width: 100%;               /* button fills container width */
    max-width: 400px;          /* optional max width */
    font-size: 0.9rem;         /* slightly smaller text */
    padding: 12px 20px;        /* comfortable padding */
  }
}

            
            .stats-container {
                flex-direction: column;
                 margin-left: 0;
        align-items: center;
            }
            
            .stat-item {
                padding: 20px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-item {
                height: 250px;
            }
            
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-col {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .footer-col h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
                text-align: center;
                width: 100%;
            }
            
            h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                flex: 0 0 50%;     /* each item takes 50% width */
    max-width: 50%;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .portfolio-filters {
                justify-content: center;
            }
            
            .filter-btn {
                margin: 5px;
                padding: 8px 16px;
            }
            
            .contact-container {
                gap: 30px;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .scroll-to-top, .whatsapp-widget {
                bottom: 20px;
                width: 45px;
                height: 45px;
            }
            
            .scroll-to-top {
                right: 20px;
            }
            
            .whatsapp-widget {
                left: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
            }
            
            .portfolio-item {
                height: 330px;
            }
        }
   

       /*------------------Why choose Us---------------------- */
             .why-brightliv-section {
            background: linear-gradient(135deg, var(--primary-bg) 0%, #e9ecef 100%);
            padding: 40px 16px;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
        }

        .why-brightliv-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-tagline {
            color: var(--accent-gold);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.2px;
            margin-bottom: 12px;
            text-transform: uppercase;
            display: block;
        }

        .section-title {
            color: var(--accent-blue);
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
            padding: 0 10px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 16px;
            max-width: 100%;
            margin: 0 auto;
            line-height: 1.5;
            padding: 0 8px;
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .text-content {
            width: 100%;
            animation: slideInLeft 0.8s ease-out;
        }

        .commitment-text {
            color: var(--text-dark);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 24px;
            padding: 20px;
            background: var(--secondary-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--accent-gold);
            position: relative;
        }

        .maintenance-services {
            width: 100%;
            animation: slideInRight 0.8s ease-out;
        }

        .services-title {
            color: var(--accent-blue);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
        }

        .service-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            padding: 18px;
            margin-bottom: 16px;
            background: var(--secondary-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: serviceItemReveal 0.6s ease-out forwards;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-item:nth-child(1) {
            animation-delay: 0.2s;
        }
        .service-item:nth-child(2) {
            animation-delay: 0.4s;
        }
        .service-item:nth-child(3) {
            animation-delay: 0.6s;
        }

        /* Animated border effect - ALWAYS VISIBLE */
        .service-item::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                var(--accent-blue), 
                rgba(237, 155, 45, 0.6), /* Reduced opacity gold */
                var(--accent-blue), 
                rgba(237, 155, 45, 0.6)  /* Reduced opacity gold */
            );
            background-size: 400% 400%;
            border-radius: calc(var(--radius) + 2px);
            z-index: -1;
            animation: borderAnimation 3s linear infinite;
            opacity: 0.8; /* Always visible with reduced opacity */
        }

        .service-item:hover::after,
        .service-item:active::after {
            opacity: 1; /* Slightly brighter on hover */
        }

        .service-item:hover .service-name,
        .service-item:active .service-name {
            color: var(--accent-blue);
        }

        .service-item:hover .service-price,
        .service-item:active .service-price {
            transform: scale(1.05);
            color: #d6851a;
        }

        .service-item:hover .service-icon2,
        .service-item:active .service-icon2 {
            color: rgba(237, 155, 45, 0.15);
            transform: translateY(-50%) scale(1.05);
        }

        .service-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 8px;
            position: relative;
            z-index: 2; /* Ensure text is above the animated border */
        }

        .service-details {
            display: flex;
            flex-direction: column;
            flex: 1;
            position: relative;
            z-index: 2; /* Ensure text is above the animated border */
        }

        .service-name {
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
            z-index: 2; /* Ensure text is above the animated border */
        }

        .service-frequency {
            font-size: 14px;
            color: white;
            position: relative;
            z-index: 2; /* Ensure text is above the animated border */
        }

        .service-price {
            font-weight: 800;
            color: white;
            font-size: 18px;
            transition: var(--transition);
            white-space: nowrap;
            margin-left: 10px;
            position: relative;
            z-index: 2; /* Ensure text is above the animated border */
        }

        .service-icon2 {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(237, 155, 45, 0.1);
            font-size: 32px;
            transition: var(--transition);
            z-index: 1; /* Behind text but above background */
        }

        .total-package {
            background: linear-gradient(135deg, var(--accent-blue) 0%, #2c5282 100%);
            color: white;
            padding: 24px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .total-package:active {
            transform: scale(1.01);
        }

        .total-label {
            font-size: 16px;
            margin-bottom: 8px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .total-price {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .total-note {
            font-size: 14px;
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }

        .luxury-experience {
            margin-top: 40px;
            text-align: center;
            padding: 24px 20px;
            background: var(--secondary-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            animation: fadeIn 1s ease-out 0.5s both;
            position: relative;
            overflow: hidden;
        }

        .luxury-text {
            color: var(--text-dark);
            font-size: 16px;
            line-height: 1.6;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .accent-gold {
            color: var(--accent-gold);
            font-weight: 700;
        }

        .accent-blue {
            color: var(--accent-blue);
            font-weight: 700;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes serviceItemReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes borderAnimation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) {
            .why-brightliv-section {
                padding: 60px 30px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 18px;
                max-width: 700px;
            }
            
            .content-wrapper {
                flex-direction: row;
                gap: 40px;
            }
            
            .text-content, .maintenance-services {
                width: 50%;
            }
            
            .service-item {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .service-row {
                margin-bottom: 0;
            }
            
            .service-details {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
            
            .service-frequency {
                margin-top: 0;
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .why-brightliv-section {
                padding: 80px 40px;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .service-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
            }
            
            .service-item:hover .service-name {
                color: var(--accent-blue);
            }
            
            .service-item:hover .service-price {
                transform: scale(1.1);
                color: #d6851a;
            }
            
            .service-item:hover .service-icon2 {
                color: rgba(237, 155, 45, 0.15);
                transform: translateY(-50%) scale(1.1);
            }
            
            .total-package:hover {
                transform: scale(1.02);
            }
        }

        /* Small Mobile Optimization */
        @media (max-width: 360px) {
            .why-brightliv-section {
                padding: 30px 12px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .section-subtitle {
                font-size: 15px;
            }
            
            .commitment-text {
                padding: 16px;
                font-size: 15px;
            }
            
            .service-item {
                padding: 16px;
            }
            
            .service-name {
                font-size: 15px;
            }
            
            .service-price {
                font-size: 16px;
            }
            
            .service-icon2 {
                font-size: 28px;
            }
            
            .total-package {
                padding: 20px 16px;
            }
            
            .total-price {
                font-size: 24px;
            }
            
            .luxury-experience {
                padding: 20px 16px;
            }
        }
        
        
        /*-----------------------Service More---------------------------------*/
          /* ---------- PAGE TITLE ---------- */
    .page-title {
      text-align: center;
      color: #1E3A8A;
      margin-bottom: 40px;
      font-size: 2.4em;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /* ---------- GRID LAYOUT ---------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ---------- CARD ---------- */
    .service-card {
      background-color: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .service-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .service-content {
      padding: 20px;
      text-align: center;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-content h3 {
      color: #1E3A8A;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .service-content p {
      font-size: 0.95em;
      color: #555;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    /* ---------- BUTTON ---------- */
    .book-btn {
      background-color: #7f5d70;
      color: white;
      padding: 10px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: 0.3s;
    }

    .book-btn:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

    /* ---------- BORDER LINE ---------- */
    .service-card::after {
      content: '';
      display: block;
      height: 5px;
      background: linear-gradient(90deg, #1E3A8A, #FFD700);
    }

    /* ---------- LOAD MORE ---------- */
    .load-more {
      text-align: center;
      margin-top: 40px;
    }

    .load-more button {
      background-color: #1E3A8A;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .load-more button:hover {
      background-color: #FFD700;
      color: #1E3A8A;
      transform: scale(1.05);
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .page-title {
        font-size: 1.8em;
      }
    }