        :root {
            --primary-blue: #0E4F75;
            --primary-blue-dark: #0A3A56;
            --primary-blue-light: #1A6A9C;
            --primary-green: #9DC530;
            --primary-green-dark: #7FA427;
            --primary-green-light: #B4D650;
            --dark: #0F172A;
            --gray-800: #334155;
            --gray-700: #475569;
            --gray-600: #64748B;
            --gray-500: #94A3B8;
            --gray-400: #CBD5E1;
            --gray-300: #E2E8F0;
            --gray-200: #F1F5F9;
            --gray-100: #F8FAFC;
            --gray-50: #FAFAFA;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #0E4F75 0%, #1A6A9C 100%);
            --gradient-secondary: linear-gradient(135deg, #9DC530 0%, #B4D650 100%);
            --gradient-mixed: linear-gradient(135deg, #0E4F75 0%, #9DC530 100%);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
            min-height: 100vh;
         /*   padding: 40px 20px;*/
        }

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

        /* Header Section */
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .testimonials-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .testimonials-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-secondary);
            color: var(--primary-blue);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(157, 197, 48, 0.3);
            cursor: pointer;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(157, 197, 48, 0.4);
        }

        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
            position: relative;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: var(--transition);
            animation: fadeInUp 0.8s ease;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--primary-green);
        }

        .testimonial-card.featured {
            background: var(--gradient-primary);
            color: white;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: none;
        }

        .testimonial-card.featured:hover {
            border-color: transparent;
            box-shadow: 0 25px 70px rgba(14, 79, 117, 0.3);
        }

        .testimonial-card.featured .testimonial-text,
        .testimonial-card.featured .customer-name,
        .testimonial-card.featured .customer-detail,
        .testimonial-card.featured .purchase-date {
            color: white;
        }

        .testimonial-card.featured .customer-name {
            font-size: 1.5rem;
        }

        /* Customer Header */
        .customer-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .customer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-md);
        }

        .testimonial-card.featured .customer-avatar {
            width: 80px;
            height: 80px;
            font-size: 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .customer-info {
            flex: 1;
        }

        .customer-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 4px;
            font-family: 'Poppins', sans-serif;
        }

        .customer-detail {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.4;
        }

        /* Rating Stars */
        .rating-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }

        .star {
            color: var(--primary-green);
            font-size: 1.1rem;
        }

        .testimonial-card.featured .star {
            color: var(--primary-green-light);
        }

        /* Testimonial Content */
        .testimonial-text {
            font-size: 0.95rem;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-card.featured .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Vehicle Image */
        .vehicle-showcase {
            width: 100%;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
        }

        .vehicle-showcase img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .vehicle-showcase img {
            transform: scale(1.05);
        }

        .vehicle-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--gradient-secondary);
            color: var(--primary-blue);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        /* Purchase Date */
        .purchase-date {
            font-size: 0.85rem;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .testimonial-card.featured .purchase-date {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Central Featured Section */
        .central-featured {
            background: var(--gradient-mixed);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .central-featured::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(157, 197, 48, 0.2) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .featured-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .featured-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .central-featured .cta-button {
            background: white;
            color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
        }

        .central-featured .cta-button:hover {
            background: var(--gray-100);
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        /* Social Proof Section */
        .social-proof {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-top: 60px;
            text-align: center;
            box-shadow: var(--shadow-xl);
            border: 2px solid var(--gray-200);
        }

        .social-proof-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            padding: 20px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(157, 197, 48, 0.05) 0%, rgba(14, 79, 117, 0.05) 100%);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-green);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--gray-600);
        }

        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: var(--dark);
            padding: 20px;
            border-radius: 16px;
            margin: 40px 0;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            animation: pulse 2s infinite;
            box-shadow: var(--shadow-lg);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        /* Logo Footer */
        .logo-footer {
            text-align: center;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: var(--gray-600);
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .social-links a:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: var(--shadow-xl);
            cursor: pointer;
            transition: var(--transition);
            z-index: 100;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-2xl);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-card.featured {
                grid-row: span 1;
            }
        }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .testimonials-title {
                font-size: 2rem;
            }

            .central-featured {
                padding: 30px 20px;
            }

            .featured-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .testimonial-card {
                padding: 20px;
            }

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

            .social-proof {
                padding: 30px 20px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }