* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --teal: #1a5f5f;
            --teal-light: #2a7f7f;
            --green: #a8d735;
            --orange: #ff6b35;
            --orange-light: #ff8c61;
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border-light: #e8e8e8;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'General Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        body.dark-theme {
            --white: #0f0f15;
            --off-white: #1a1a20;
            --light-gray: #252530;
            --text-dark: #ffffff;
            --text-gray: #a0a0b0;
            --border-light: rgba(255, 255, 255, 0.1);
            --glass-bg: rgba(26, 26, 32, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        /* Main Content */
        .reviews-page {
            padding-top: 100px;
            min-height: 100vh;
        }

        /* Hero Section */
        .reviews-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .reviews-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .reviews-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .reviews-hero h1 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .reviews-hero p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        /* Animated Stats */
        .stats-container {
            max-width: 1200px;
            margin: -60px auto 80px;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .stat-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .stat-number {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--orange);
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Filters & Actions */
        .reviews-controls {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .filter-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid var(--border-light);
            background: transparent;
            color: var(--text-gray);
            border-radius: 50px;
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--orange);
            background: var(--orange);
            color: white;
        }

        .write-review-btn {
            padding: 12px 28px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'General Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .write-review-btn:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        /* Reviews Grid */
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 40px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        /* Review Card */
        .review-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--orange);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 700;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
        }

        .review-date {
            font-size: 13px;
            color: var(--text-gray);
        }

        .review-stars {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--orange);
        }

        .review-rating-number {
            display: inline-block;
            margin-left: 8px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
        }

        .review-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .review-project {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(168, 215, 53, 0.1);
            color: var(--green);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .review-helpful {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }

        .helpful-btn {
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }

        .helpful-btn:hover {
            color: var(--green);
        }

        .helpful-btn.active {
            color: var(--green);
        }

        /* Review Modal */
        .review-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            padding: 20px;
            overflow-y: auto;
        }

        .review-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-modal-content {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 32px;
            color: var(--text-gray);
            cursor: pointer;
            line-height: 1;
            transition: all 0.3s;
        }

        .modal-close:hover {
            color: var(--text-dark);
            transform: rotate(90deg);
        }

        .review-modal h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .review-modal p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .google-login-btn {
            width: 100%;
            padding: 16px;
            background: white;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-family: 'General Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .google-login-btn:hover {
            border-color: #4285f4;
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
        }

        .google-icon {
            width: 24px;
            height: 24px;
        }

        .review-form {
            display: none;
        }

        .review-form.show {
            display: block;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 32px;
            cursor: pointer;
        }

        .star-rating span {
            color: #ddd;
            transition: all 0.2s;
        }

        .star-rating span:hover,
        .star-rating span.active {
            color: var(--orange);
            transform: scale(1.1);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-family: 'General Sans', sans-serif;
            font-size: 15px;
            background: var(--white);
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--orange);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-review-btn {
            width: 100%;
            padding: 16px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'General Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-review-btn:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            background: var(--white);
            border-top: 1px solid var(--border-light);
        }

        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 60px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--orange);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--border-light);
            color: var(--text-gray);
            font-size: 14px;
            max-width: 1500px;
            margin: 0 auto;
            padding-left: 60px;
            padding-right: 60px;
        }

        .footer-logo-img {
            height: 50px;
            width: auto;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 15px 25px;
            }

            .nav-links {
                display: none;
            }

            .reviews-hero h1 {
                font-size: 38px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .reviews-controls {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-buttons {
                justify-content: center;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .review-modal-content {
                padding: 35px 25px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 25px;
            }

            .footer-bottom {
                padding-left: 25px;
                padding-right: 25px;
            }
        }