/* style.css - Consolidated CSS for all pages */

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #2ecc71;
    --warning: #f39c12;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --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: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow);
}

header.scrolled {
    background-color: var(--primary);
    box-shadow: var(--shadow);
    padding: 0.7rem 0;
}

header.hidden {
    transform: translateY(-100%);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.2rem;
    font-weight: bold;
}

.logo i {
    color: var(--secondary);
}

/* Main Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.2rem;
}

nav a:hover {
    color: var(--secondary);
}

nav a.active {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-header {
    margin-bottom: 15px;
    text-align: center;
}

.btn-full-catalog {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-full-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    color: white;
}

.btn-full-catalog i {
    font-size: 1.2rem;
}

.dropdown-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.dropdown-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dropdown-category:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.2);
}

.dropdown-category i {
    font-size: 28px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.dropdown-category:hover i {
    transform: scale(1.1);
}

.dropdown-category span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile Dropdown Styles */
.mobile-dropdown .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown .dropdown-header {
    padding: 15px;
}

.mobile-dropdown .dropdown-categories {
    padding: 0 15px 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mobile-dropdown .dropdown-category {
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
}

.mobile-dropdown .dropdown-category:hover {
    background: var(--secondary);
}

.mobile-dropdown .dropdown-category i {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.mobile-dropdown .dropdown-category span {
    font-size: 1.2rem;
}

.mobile-dropdown .btn-full-catalog {
    background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
    border-radius: 8px;
    padding: 16px;
    font-size: 1.2rem;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    width: 100%;
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: white;
}

.btn-reset {
    background-color: #95a5a6;
    color: white;
}

.btn-reset:hover {
    background-color: #7f8c8d;
}

.btn-submit {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.btn-view-more {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-view-more:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    z-index: 999;
    transition: var(--transition);
    padding: 80px 2rem 2rem;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav ul {
    flex-direction: column;
    gap: 0;
}

.mobile-menu nav li {
    margin-bottom: 1rem;
}

.mobile-menu nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav a::after {
    display: none;
}

.mobile-auth-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Overlay pentru meniul mobil */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Sections */
.about-hero, .catalog-hero, .page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
}

.catalog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    padding: 5rem 0;
}

.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    padding: 180px 0 100px;
}

.about-hero h1, .catalog-hero h1, .page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.about-hero p, .catalog-hero p, .page-header p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.catalog-hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
}

.breadcrumb a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb i {
    font-size: 0.9rem;
    color: var(--light);
}

/* Hero Slider */
.hero-slider {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s ease;
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.slide-content {
    max-width: 90%;
    padding: 2rem;
    z-index: 2;
}

.slide h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.search-bar {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-bar input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    outline: none;
    font-size: 1.3rem;
}

.search-bar button {
    padding: 1.5rem 2.5rem;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 600;
}

.search-bar button:hover {
    background: var(--primary);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-line {
    width: 80px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
}

.slider-line.active {
    background-color: white;
    transform: scaleX(1.1);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.arrow i {
    font-size: 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title p {
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
}

/* About Content Sections */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

/* Stats Section */
.stats-section {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.4rem;
    color: #ecf0f1;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card, .team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover, .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-image, .member-img {
    height: 300px;
    overflow: hidden;
}

.team-image img, .member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img, .team-member:hover .member-img {
    transform: scale(1.1);
}

.team-info, .member-info {
    padding: 2rem;
}

.team-name, .member-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-position, .member-info p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-bio {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-social, .member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a, .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.team-social a:hover, .social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.value-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Catalog Layout */
.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

/* Filters Section */
.filters {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.filters-sidebar {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.filter-header:hover {
    color: var(--secondary);
}

.filter-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.filter-arrow {
    transition: var(--transition);
    color: var(--secondary);
}

.filter-group.active .filter-arrow {
    transform: rotate(180deg);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-group.active .filter-content {
    max-height: 1000px;
    padding-bottom: 1.5rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 5px;
}

.filter-option:hover {
    background: var(--light);
}

.filter-option.active {
    background: var(--light);
    color: var(--secondary);
    font-weight: 600;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary);
}

.price-range, .year-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.range-inputs {
    display: flex;
    gap: 1rem;
}

.range-inputs input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.range-slider {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    position: relative;
    margin: 1rem 0;
}

.range-slider .progress {
    height: 100%;
    background: var(--secondary);
    border-radius: 3px;
    position: absolute;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    top: -6px;
    height: 6px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary);
    pointer-events: auto;
    -webkit-appearance: none;
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary);
    pointer-events: auto;
    border: none;
}

.filter-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.filter-actions .btn {
    flex: 1;
    padding: 1rem;
}

/* Catalog Content */
.catalog-content {
    display: flex;
    flex-direction: column;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.catalog-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-options select {
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.results-count {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vehicle-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
}

.vehicle-badge.reduced {
    background: #e74c3c;
}

.vehicle-badge.promotion {
    background: #2ecc71;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-title, .vehicle-title-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.vehicle-title h3, .vehicle-title-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1.3;
}

.vehicle-price, .vehicle-price-card {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.4rem;
    white-space: nowrap;
}

.vehicle-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-size: 1rem;
}

.vehicle-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-detail i {
    font-size: 1rem;
}

.vehicle-actions, .vehicle-actions-card {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

/* Stiluri pentru paginare */
.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--secondary);
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-arrow:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination-arrow:first-child {
    margin-right: 20px;
}

.pagination-arrow:last-child {
    margin-left: 20px;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination-number.active {
    background-color: var(--secondary);
    border-color: #007bff;
    color: white;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #6c757d;
}

/* Categories Section */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 80vh;
    gap: 0;
    overflow: hidden;
    margin-bottom: -80px;
}

.categorie .container {
    width: 100%; 
}

.category-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.category-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-content {
    opacity: 1;
}

.category-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    color: white;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--secondary);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-detail i {
    margin-right: 1rem;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px var(--secondary);
}

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

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    background-color: var(--light);
    padding: 5rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.faq-question h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #7f8c8d;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== VEHICLE DETAIL PAGE - SPECIFIC STYLES ===== */

/* Vehicle Detail Section */
.vehicle-detail-section {
    padding: 3rem 0;
}

.vehicle-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Vehicle Gallery - FIXED LAYOUT */
.vehicle-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.main-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    cursor: pointer;
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    width: 100%;
}

.thumbnail {
    min-width: 100px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid var(--secondary);
}

/* Vehicle Info */
.vehicle-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.vehicle-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.vehicle-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
}

.vehicle-price {
    color: var(--secondary);
    font-weight: bold;
    font-size: 2rem;
    white-space: nowrap;
}

.vehicle-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.meta-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.meta-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.3rem;
}

.meta-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.vehicle-actions {
    margin-top: 2rem;
}

/* Description and Specifications Cards */
.vehicle-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.detail-card .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.detail-card .section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.spec-item:nth-child(odd) {
    background: #f1f3f4;
}

.spec-item:hover {
    background: #e9ecef;
    border-left-color: var(--secondary);
}

.spec-label {
    font-weight: 600;
    color: var(--primary);
}

.spec-value {
    color: var(--secondary);
    font-weight: 500;
}

.description-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.description-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.description-content li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.description-content li:before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
}

/* Similar Vehicles Section */
.similar-vehicles {
    padding: 3rem 0;
    background: var(--light);
}

.similar-vehicles .section-title {
    margin-bottom: 2rem;
}

.similar-vehicles .vehicles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Contact Section - Single Vehicle Page */
#contact-section .contact-card {
    height: 100%;
}

#contact-section .form-group {
    margin-bottom: 1rem;
}

#contact-section .form-control {
    background: rgba(255, 255, 255, 0.15);
}

#contact-section .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* CF7 Form Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px var(--secondary);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wpcf7-submit {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.wpcf7-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.wpcf7-spinner {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow: hidden;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--secondary);
    background: rgba(0, 0, 0, 0.7);
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 2001;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-nav-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Policies Section */
.policies-section {
    padding: 4rem 0;
}

.policies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policies-header h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.policies-header p {
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
}

.policies-container {
    display: flex;
    gap: 2rem;
}

.policies-sidebar {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.policies-sidebar h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.5rem;
}

.policies-nav {
    list-style: none;
}

.policies-nav li {
    margin-bottom: 1rem;
}

.policies-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
}

.policies-nav a:hover, .policies-nav a.active {
    background-color: var(--secondary);
    color: white;
}

.policies-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-section h2 i {
    color: var(--secondary);
}

.policy-section h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.policy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.policy-section th, .policy-section td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light);
}

.policy-section th {
    background-color: var(--light);
    font-weight: 600;
}

.highlight {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    margin: 1.5rem 0;
}

.last-updated {
    background-color: var(--light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--dark);
    border: 1px solid #ddd;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.pagination-btn:hover, .pagination-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.pagination-dots {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 5rem 0 3rem;
}

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

.footer-column h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--secondary);
}

.footer-column p {
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-card:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .similar-vehicles .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content, .vehicle-detail-container, .vehicle-details-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .filter-options {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .filter-option {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .header-content {
        flex-direction: row;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }
    
    .policies-container {
        flex-direction: column;
    }
    
    .policies-sidebar {
        position: static;
        flex: 1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Mobile dropdown optimization */
    .dropdown-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        width: 90%;
        max-width: 400px;
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .vehicle-meta {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-bar input, .search-bar button {
        width: 100%;
        border-radius: 0;
    }
    
    .about-hero h1, .catalog-hero h1, .page-header h1 {
        font-size: 3rem;
    }
    
    .about-hero p, .catalog-hero p, .page-header p {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
    
    .categories {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .slider-arrows {
        display: none;
    }
    
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .slide p {
        font-size: 1.3rem;
    }
    
    .policies-header h1 {
        font-size: 2.8rem;
    }
    
    .policy-section h2 {
        font-size: 2.2rem;
    }
    
    .policies-content {
        padding: 2rem;
    }
    
    .vehicle-actions {
        flex-direction: column;
    }
    
    .vehicle-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    nav:not(.mobile-menu nav) {
        display: none;
    }
    
    .auth-buttons:not(.mobile-auth-buttons) {
        display: none;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    .mobile-dropdown .mobile-dropdown-menu {
        display: block;
    }
    
    .dropdown-categories {
        grid-template-columns: 1fr;
    }
    
    .vehicle-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vehicle-header h1 {
        font-size: 2rem;
    }
    
    .vehicle-price {
        font-size: 1.8rem;
        align-self: flex-start;
    }
    
    .meta-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero h1, .catalog-hero h1, .page-header h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .vehicles-grid, .categories {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    nav a {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .categories {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    
    .filter-option {
        flex: 0 0 100%;
    }
    
    .policies-header h1 {
        font-size: 2.2rem;
    }

    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .vehicle-title h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-menu {
        width: 100%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        width: 25px;
        height: 18px;
    }
    
    .vehicle-meta {
        grid-template-columns: 1fr;
    }
    
    .vehicle-details-grid {
        gap: 1.5rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        min-width: 80px;
        height: 60px;
    }
    
    .similar-vehicles .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}