/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: #2563eb;
    transition: all 0.3s ease;
}

a:hover {
    color: #1e40af;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #1e40af;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #f0f7ff;
}

.btn-cta {
    background-color: #f97316;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    padding: 14px 28px;
}

.btn-cta:hover {
    background-color: #ea580c;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #1e293b;
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: #2563eb;
}

.main-nav li.active a {
    color: #2563eb;
}

.main-nav li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2563eb;
    border-radius: 3px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.search-box button {
    background-color: #f97316;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 0 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Featured Review */
.featured-review {
    padding: 60px 0;
    background-color: #fff;
}

.featured-review-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.featured-review-image {
    flex: 0 0 40%;
    position: relative;
}

.featured-review-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f97316;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-review-info {
    flex: 1;
}

.featured-review-info .category {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.featured-review-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e293b;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #f97316;
    font-size: 1.1rem;
    margin-right: 10px;
}

.reviews-count {
    color: #64748b;
    font-size: 0.9rem;
}

.price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.old-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount {
    background-color: #22c55e;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.highlight {
    background-color: #fff;
    border-left: 4px solid #f97316;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 6px 6px 0;
}

.highlight p {
    color: #1e293b;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.highlight p:last-child {
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Review Categories */
.review-categories {
    padding: 60px 0 30px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-tab {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.category-tab.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* Review List */
.review-list {
    padding: 30px 0 60px;
}

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

.review-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.review-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f97316;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-content {
    padding: 20px;
}

.review-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 5px;
}

.review-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #1e293b;
}

.review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-rating .stars {
    color: #f97316;
    font-size: 0.9rem;
    margin-right: 5px;
}

.review-rating span {
    color: #64748b;
    font-size: 0.9rem;
}

.review-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-price .current {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.review-price .old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 10px;
}

.review-price .discount {
    background-color: #22c55e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.review-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.review-date {
    color: #94a3b8;
}

.review-read-more {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.review-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.review-read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #fff;
    color: #64748b;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: #2563eb;
    color: #fff;
}

.pagination a:hover {
    background-color: #e2e8f0;
}

.pagination a.active:hover {
    background-color: #1e40af;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: #f0f7ff;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1e293b;
}

.author-info p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Why Trust Us */
.why-trust-us {
    padding: 60px 0;
    background-color: #fff;
}

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

.trust-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.trust-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 80px;
    text-align: center;
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.newsletter p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 6px 6px 0;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-about {
    max-width: 300px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .review-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .featured-review-content {
        flex-direction: column;
    }
    
    .featured-review-image {
        flex: 0 0 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .review-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 6px;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .search-box button {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
