:root {
            --primary-color: #c19a5f;
            --secondary-color: #2c3e50;
            --light-color: #f9f9f9;
            --dark-color: #333;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
        }

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

        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            right: 0;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .language-switcher {
            margin-right: 20px;
        }

        .language-switcher button {
            background: none;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }

        .language-switcher button:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../images/img\ \(13\).jpeg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #a8844f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(193, 154, 95, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(193, 154, 95, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(193, 154, 95, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(193, 154, 95, 0.25);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), #d4af77);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(193, 154, 95, 0.3);
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 12px 40px rgba(193, 154, 95, 0.5);
        }

        .service-icon i {
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon i {
            transform: scale(1.2);
        }

        .service-content {
            position: relative;
            z-index: 1;
        }

        .service-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }

        .service-card:hover .service-content h3 {
            color: var(--primary-color);
        }

        .service-content p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Portfolio Section */
        .portfolio-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: none;
            border: none;
            padding: 8px 20px;
            margin: 0 5px 10px;
            cursor: pointer;
            font-weight: 500;
            border-radius: 30px;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
            padding: 20px;
            text-align: center;
            color: white;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

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



        /* Why Choose Us Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(193, 154, 95, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        /* Contact Section */
        .contact {
            background-color: var(--secondary-color);
            color: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info h3, .contact-form h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .contact-info h3::after, .contact-form h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            right: 0;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(193, 154, 95, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .social-link i {
            color: white;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #1a252f;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .footer-links h4, .footer-contact h4 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            right: 0;
        }

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

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

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-right: 5px;
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Sticky Social Media Bar */
        .sticky-social-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            z-index: 1000;
            border-top: 2px solid rgba(193, 154, 95, 0.2);
        }

        .social-item {
            position: relative;
            transition: all 0.3s ease;
        }

        .social-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-item a::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: left 0.5s ease;
        }

        .social-item:hover a::before {
            left: 100%;
        }

        .social-item i {
            font-size: 1.8rem;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }

        .social-text {
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* TikTok Colors */
        .social-item.tiktok a {
            background: linear-gradient(45deg, #ff0050, #00f2ea);
            color: white;
        }

        .social-item.tiktok:hover {
            transform: translateY(-5px) scale(1.1);
            animation: tiktokPulse 1s infinite;
        }

        @keyframes tiktokPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(255, 0, 80, 0); }
        }

        /* Facebook Colors */
        .social-item.facebook a {
            background: #1877f2;
            color: white;
        }

        .social-item.facebook:hover {
            transform: translateY(-5px) scale(1.1);
            animation: facebookPulse 1s infinite;
        }

        @keyframes facebookPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(24, 119, 242, 0); }
        }

        /* WhatsApp Colors */
        .social-item.whatsapp a {
            background: #25d366;
            color: white;
        }

        .social-item.whatsapp:hover {
            transform: translateY(-5px) scale(1.1);
            animation: whatsappPulse 1s infinite;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
        }

        /* Phone Colors */
        .social-item.phone a {
            background: linear-gradient(45deg, var(--primary-color), #d4af77);
            color: white;
        }

        .social-item.phone:hover {
            transform: translateY(-5px) scale(1.1);
            animation: phonePulse 1s infinite;
        }

        @keyframes phonePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(193, 154, 95, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(193, 154, 95, 0); }
        }

        /* Hover Effects */
        .social-item:hover i {
            transform: rotate(360deg) scale(1.2);
        }

        .social-item:hover .social-text {
            transform: scale(1.1);
            font-weight: 700;
        }

        /* Floating Animation */
        .sticky-social-bar {
            animation: floatUp 0.5s ease-out;
        }

        @keyframes floatUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Add bottom padding to body to prevent content overlap */
        body {
            padding-bottom: 80px;
        }

        /* Lightbox (Portfolio Image Popup) */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 95vw;
            max-height: 90vh;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            border-radius: 10px;
            overflow: hidden;
            background: #000;
        }

        .lightbox-img {
            display: block;
            max-width: 95vw;
            max-height: 90vh;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 10px;
            left: 10px; /* RTL friendly */
            background: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            line-height: 40px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .lightbox-close:hover {
            background: rgba(193,154,95,0.9);
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            /* Use JS-driven flex-basis via --visible; avoid overriding width */
            .testimonial-card {
                min-width: auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                text-align: center;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .mobile-menu {
                display: block;
            }

            .language-switcher {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .testimonial-card {
                min-width: auto;
            }

            .testimonial-nav {
                width: 40px;
                height: 40px;
            }

            .testimonial-nav i {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 80vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            /* Improved Mobile Testimonials */
            .testimonials {
                padding: 60px 0;
            }

            .testimonials-wrapper {
                gap: 0;
                padding: 0 10px;
            }

            .testimonial-nav {
                display: none;
            }

            .testimonials-container {
                padding: 0;
                margin: 0;
            }

            .testimonial-card {
                min-width: auto;
                padding: 30px 20px;
                margin: 0; /* keep exact page width for smooth paging */
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }

            .testimonial-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            }

            .quote-icon {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }

            .quote-icon i {
                font-size: 1.2rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .rating {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }

            .client-info {
                gap: 12px;
                padding-top: 15px;
            }

            .client-avatar {
                width: 50px;
                height: 50px;
            }

            .client-avatar i {
                font-size: 1.3rem;
            }

            .client-details h4 {
                font-size: 1rem;
            }

            .client-role {
                font-size: 0.8rem;
            }

            .testimonial-dots {
                margin-top: 30px;
                gap: 8px;
            }

            .testimonial-dots .dot {
                width: 10px;
                height: 10px;
            }

            .testimonial-dots .dot.active {
                width: 25px;
                border-radius: 5px;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-top: 8px;
                padding: 0 20px;
                text-align: center;
            }

            /* Social Media Bar Mobile */
            .social-item i {
                font-size: 1.5rem;
            }

            .social-text {
                font-size: 0.6rem;
            }

            .social-item a {
                padding: 6px 8px;
            }

            .sticky-social-bar {
                padding: 8px 0;
            }
        }





        
        .review-section {
            max-width: 1100px;
            margin: 60px auto;
            text-align: center;
            padding: 20px;
          }
        
          .review-section h2 {
            font-size: 32px;
            color: #A8844F;
            margin-bottom: 40px;
            font-weight: 600;
            letter-spacing: 1px;
          }
        
          .slider-container {
            position: relative;
            overflow: hidden;
          }
        
          .review-slider {
            display: flex;
            transition: transform 0.5s ease;
          }
        
          .review-card {
            flex: 0 0 33.333%;
            padding: 15px;
          }
        
          .review-box {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
          }
        
          .review-box:hover {
            transform: translateY(-6px);
          }
        
          .review-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #A8844F;
            margin-bottom: 15px;
          }

          .review-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #A8844F, #d4af77);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            border: 3px solid #A8844F;
          }

          .review-avatar i {
            color: white;
            font-size: 32px;
          }
        
          .stars {
            color: #A8844F;
            font-size: 18px;
            margin-bottom: 10px;
          }
        
          .review-text {
            font-size: 16px;
            color: #333333;
            line-height: 1.5;
            margin-bottom: 15px;
            font-style: italic;
          }
        
          .review-author {
            font-weight: bold;
            color: #A8844F;
          }
        
          /* Buttons */
          .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #A8844F;
            border: none;
            color: #fff;
            font-size: 22px;
            padding: 10px 14px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
            z-index: 2;
          }
        
          .nav-btn:hover {
            background: #333333;
          }
        
          .prev {
            left: 10px;
          }
        
          .next {
            right: 10px;
          }
        
          /* Pagination Dots */
          .review-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            padding: 0 20px;
          }

          .review-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
          }

          .review-dot:hover {
            background: #999;
          }

          .review-dot.active {
            width: 30px;
            border-radius: 6px;
            background: #A8844F;
          }

          /* Responsive */
          @media (max-width: 992px) {
            .review-card {
              flex: 0 0 50%;
            }
          }
        
          @media (max-width: 600px) {
            .review-card {
              flex: 0 0 100%;
            }
        
            .nav-btn {
              font-size: 18px;
              padding: 8px 12px;
            }
            
            .review-dots {
              margin-top: 20px;
              gap: 8px;
            }
            
            .review-dot {
              width: 10px;
              height: 10px;
            }
            
            .review-dot.active {
              width: 24px;
            }
          }

          /* Grid Layout for All Reviews */
          .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
          }

          .reviews-grid .review-card {
            flex: none;
            width: 100%;
            padding: 0;
          }

          @media (max-width: 768px) {
            .reviews-grid {
              grid-template-columns: 1fr;
              gap: 20px;
              padding: 15px;
            }
          }

          @media (min-width: 769px) and (max-width: 1024px) {
            .reviews-grid {
              grid-template-columns: repeat(2, 1fr);
            }
          }

          @media (min-width: 1025px) {
            .reviews-grid {
              grid-template-columns: repeat(3, 1fr);
            }
          }