/* =========================================================================
   Reset & Variables
   ========================================================================= */
:root {
    --primary-color: #0d6efd; /* Albastru stil agentie turism */
    --secondary-color: #ff6b00; /* Portocaliu vibrant / HelloHolidays style */
    --text-color: #333333;
    --text-light: #6c757d;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #222;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================================
   Top Bar
   ========================================================================= */
.top-bar {
    background-color: #222;
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    display: inline-block;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--secondary-color);
}

.yt-link {
    color: #ff0000 !important;
}

.yt-link:hover {
    color: #cc0000 !important;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--secondary-color);
    flex-direction: column;
    padding: 10px 0;
    gap: 0 !important;
}

.main-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.hero-category {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================================================
   Main Layout & Posts
   ========================================================================= */
.main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 24px;
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-img-wrapper img {
    transform: scale(1.05);
}

.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-badge.exotic { background-color: #28a745; }
.post-badge.tips { background-color: #17a2b8; }
.post-badge.romania { background-color: #dc3545; }

.post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-content h3 a {
    color: var(--text-color);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 4px;
    font-weight: 600;
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* =========================================================================
   Sidebar & Widgets
   ========================================================================= */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

/* About Widget */
.widget-about {
    text-align: center;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--border-color);
}

.widget-about p {
    font-size: 14px;
    color: #555;
}

/* YouTube Widget */
.widget-youtube {
    text-align: center;
}

.yt-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yt-banner {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.yt-banner img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.yt-banner:hover img {
    transform: scale(1.05);
}

.yt-banner:hover .play-btn {
    background: red;
    transform: translate(-50%, -50%) scale(1.1);
}

.widget-youtube p {
    font-size: 14px;
}

.btn-subscribe {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-subscribe:hover {
    background: #cc0000;
    color: white;
}

/* Categories Widget */
.widget-categories ul li {
    border-bottom: 1px dashed var(--border-color);
}

.widget-categories ul li:last-child {
    border-bottom: none;
}

.widget-categories ul li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #555;
    font-weight: 500;
}

.widget-categories ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.count {
    color: var(--text-light);
    font-size: 13px;
}

/* Newsletter Widget */
.widget-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.widget-newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: var(--font-main);
    outline: none;
}

.widget-newsletter input:focus {
    border-color: var(--primary-color);
}

.widget-newsletter .btn {
    width: 100%;
    border-radius: 4px;
}

/* =========================================================================
   Footer
   ========================================================================= */
.main-footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a0a0a0;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social a {
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a.yt:hover { color: #ff0000; }
.footer-social a.fb:hover { color: #1877f2; }
.footer-social a.ig:hover { color: #e1306c; }

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* =========================================================================
   Responsive Design (Media Queries)
   ========================================================================= */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none; /* Ascuns default */
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Poate fi adaptat cu JS, acum lasam simplu */
        border-top: none;
        background: #f9f9f9;
    }
    
    .main-nav ul li:hover .dropdown {
        display: block;
    }

    /* Alte corecturi */
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        height: 400px;
    }
    
    .top-bar {
        display: none; /* Ascundem top-bar pe mobil pt spatiu */
    }
}

/* =========================================================================
   Internal Pages Header (Bannere pagini secundare)
   ========================================================================= */
.page-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.page-header-content h1 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.breadcrumb {
    font-size: 14px;
    color: #ddd;
}

.breadcrumb a {
    color: var(--secondary-color);
}

/* =========================================================================
   Contact Page Styles
   ========================================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--primary-color);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-detail i {
    font-size: 24px;
    color: var(--secondary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-container {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   Single Article Page Styles
   ========================================================================= */
.single-post-header {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.single-post-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.single-post-header-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.single-post-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.single-post-header h1 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.single-post-meta {
    font-size: 14px;
    color: #ddd;
}

.single-post-meta i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.article-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.article-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: -10px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Casuță specială pentru Sfaturi / Tips */
.tip-box {
    background-color: #eef5ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box p {
    margin-bottom: 0;
}

/* Boxa de Autor la finalul articolului */
.post-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.post-author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.post-author-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.post-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--white);
    background: #333;
    transition: var(--transition);
}

.post-share a.fb { background: #1877f2; }
.post-share a.wa { background: #25d366; }
.post-share a.pin { background: #bd081c; }

.post-share a:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .single-post-header h1 {
        font-size: 28px;
    }
    .article-content {
        padding: 20px;
    }
    .post-author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Stil pentru liste cu iconițe în articole */
.checklist {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
}

.checklist li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 18px;
}

.checklist li strong {
    color: var(--text-color);
    font-size: 17px;
}

/* Stiluri pentru tabele comparative in articole */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table td i {
    color: #28a745; /* Culoare verde pentru bife */
    margin-right: 8px;
}

/* Imagini masive aliniate cu textul pentru articole de Storytelling */
.hero-image-in-post {
    width: 100%;             /* Imaginea ia exact lățimea textului */
    height: 450px;           /* Păstrează înălțimea impresionantă */
    object-fit: cover;       /* Păstrează proporțiile pozei fără să o deformeze */
    border-radius: 8px;      /* Colțuri rotunjite pentru a se asorta cu designul site-ului */
    margin: 30px 0;          /* Spațiu sus și jos față de paragrafe */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* O umbră fină pentru un aspect premium */
}

@media (max-width: 768px) {
    .hero-image-in-post {
        height: 300px;       /* Pe telefon o facem puțin mai scundă pentru a nu ocupa tot ecranul */
    }
}

/* =========================================================================
   Pagina Impresii (Testimoniale)
   ========================================================================= */

/* Statistici */
.stats-section {
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    padding: 40px 20px;
    margin-top: -30px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* Editor's Choice */
.editors-choice {
    background-color: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.editors-choice img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.editors-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.editors-content p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
}

.editors-author {
    font-weight: 600;
    color: #333;
}

/* Wall of Love (Grid Impresii) */
.reviews-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-rating {
    color: #ffc107;
    font-size: 12px;
    margin-bottom: 5px;
}

.review-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.review-tag {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Tips & Tricks */
.tips-tricks-section {
    background-color: #222;
    color: var(--white);
    padding: 60px 20px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
}

.tips-tricks-section h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tip-bubble {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.tip-bubble p {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 10px;
}

.tip-bubble span {
    font-weight: 600;
    font-size: 13px;
    color: #aaa;
}

/* Upload Form */
.upload-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.file-upload-wrapper {
    border: 2px dashed var(--border-color);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: pointer;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .editors-choice {
        flex-direction: column;
    }
    .editors-choice img {
        width: 100%;
        height: auto;
    }
    .reviews-grid, .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        gap: 30px;
    }
    .reviews-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
}