/* ===== MODERN RENTAL CAR DESIGN ===== */
/* Paletă de culori modernă și plăcută - cu verde din logo */

/* MINIMAL: Only prevent horizontal scroll, don't break layout */
html, body {
    overflow-x: hidden !important;
}

body {
    max-width: 100vw !important;
}

/* Only fix Bootstrap row negative margins */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Only prevent sections from overflowing */
section {
    overflow-x: hidden !important;
}

:root {
    /* Culori principale - Paletă modernă cu verde din logo */
    --brand-green: #8BC34A;            /* Verde din logo */
    --brand-green-light: #9CCC65;      /* Verde deschis */
    --brand-green-dark: #689F38;       /* Verde închis */
    --primary-blue: #2563eb;           /* Albastru modern */
    --primary-blue-dark: #1d4ed8;      /* Albastru închis */
    --secondary-teal: #0d9488;         /* Teal elegant */
    --accent-orange: #f59e0b;          /* Portocaliu cald */
    --accent-purple: #8b5cf6;          /* Violet modern */

    /* Culori neutre */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradient-uri moderne cu verde din logo */
    --gradient-primary: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    --gradient-secondary: linear-gradient(135deg, #9CCC65 0%, #8BC34A 100%);
    --gradient-accent: linear-gradient(135deg, #8BC34A 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 195, 74, 0.9) 0%, rgba(37, 99, 235, 0.8) 100%);

    /* Umbre moderne */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-green: 0 10px 25px -5px rgba(139, 195, 74, 0.3);

    /* Tranziții */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 0.875rem; }

a {
    color: var(--brand-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-green-dark);
    text-decoration: none;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MODERN NAVBAR ===== */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-green) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand-modern:hover {
    color: var(--brand-green-dark) !important;
    transform: scale(1.05);
}

.nav-link-modern {
    font-weight: 600;
    color: var(--gray-700) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link-modern:hover {
    color: var(--brand-green) !important;
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link-modern:hover::after {
    width: 80%;
}

.contact-phone-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-phone-modern:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.language-switcher-modern {
    display: flex;
    gap: 0.5rem;
}

.language-switcher-modern .lang-btn {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.language-switcher-modern .lang-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-2px);
}

.language-switcher-modern .lang-btn.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-modern {
    background: var(--gradient-hero), url('/images/rentohome2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-modern {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero-primary {
    background: var(--brand-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
    background: var(--brand-green-dark);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== SEARCH SECTION ===== */
.search-section-modern {
    background: var(--white);
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    border-radius: 2rem 2rem 0 0;
    box-shadow: var(--shadow-xl);
}

.search-card-modern {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.search-title-modern {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: 700;
}

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

.form-label-modern {
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-select-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-control-modern:focus,
.form-select-modern:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
    transform: translateY(-2px);
}

.form-control-modern:hover,
.form-select-modern:hover {
    border-color: var(--brand-green);
}

.btn-search-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-search-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== CAR CARDS ===== */
.cars-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

.section-title-modern {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.car-card-modern {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.car-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--brand-green);
}

.car-image-modern {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.car-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.car-card-modern:hover .car-image-modern img {
    transform: scale(1.1);
}

.car-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.car-content-modern {
    padding: 1rem;
}

.car-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.car-title-modern a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.car-title-modern a:hover {
    color: var(--brand-green);
}

.car-specs-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.car-spec-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.car-spec-modern i {
    color: var(--brand-green);
    font-size: 1rem;
}

.car-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.car-price-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-green);
}

.car-price-modern .currency {
    font-size: 1rem;
    color: var(--gray-500);
}

.btn-car-modern {
    background: var(--brand-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-car-modern:hover {
    color: var(--white);
    background: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== STATISTICS SECTION ===== */
.stats-section-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-card-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label-modern {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section-modern {
    padding: 5rem 0;
    background: var(--white);
}

.review-card-modern {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.review-avatar-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--brand-green);
    box-shadow: var(--shadow);
}

.review-name-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.review-rating-modern {
    color: #fde502;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.review-text-modern {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

.feature-card-modern {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
    border-color: var(--brand-green);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.feature-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-text-modern {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SOCIAL MEDIA ===== */
.social-media-modern {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.social-btn-modern:hover {
    color: var(--white);
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.social-facebook { background: linear-gradient(135deg, #1877f2, #42a5f5); }
.social-instagram { background: linear-gradient(135deg, #e4405f, #f77737); }
.social-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.social-telegram { background: linear-gradient(135deg, #0088cc, #229ed9); }
.social-viber { background: linear-gradient(135deg, #665cac, #7b68ee); }
.social-youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-tiktok { background: linear-gradient(135deg, #000000, #333333); }
.social-linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.social-twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.social-scroll-up { background: var(--gradient-primary); }

/* ===== MODERN FOOTER ===== */
.footer-modern {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(139,195,74,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 195, 74, 0.1);
    border: 2px solid rgba(139, 195, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-green);
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-title i {
    color: var(--brand-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.80rem;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-green);
    padding-left: 0.9rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(139, 195, 74, 0.1);
    border-color: rgba(139, 195, 74, 0.3);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item span,
.contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--brand-green);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phone-numbers a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.phone-numbers a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(139, 195, 74, 0.2);
    backdrop-filter: blur(10px);
}

.footer-copyright,
.footer-credits {
    margin: 0;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.credit-link {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.credit-link:hover {
    color: var(--brand-green-light);
    text-decoration: underline;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-info-modern {
    position: relative;
    z-index: 2;
}

.contact-cards {
    margin-bottom: 3rem;
}

.contact-card-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
    border-color: var(--brand-green);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-details h4 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.contact-link-modern {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link-modern:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}

.contact-social-modern {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-social-modern h4 {
    color: var(--gray-900);
    font-weight: 700;
}

.social-links-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link-modern:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-link-modern.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link-modern.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-link-modern.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link-modern.telegram {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.social-link-modern.viber {
    background: linear-gradient(135deg, #665cac, #59519a) !important;
    color: white !important;
}

.social-link-modern.viber i::before {
    content: "\f83f" !important; /* Font Awesome Viber icon code */
}

/* Fallback pentru cazul în care Font Awesome nu se încarcă */
.social-link-modern.viber i {
    font-family: "Font Awesome 5 Brands", "Font Awesome 6 Brands", sans-serif !important;
}

.social-link-modern.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link-modern.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-link-modern.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link-modern.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link-modern i {
    font-size: 1.25rem;
}

.contact-content-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-content-modern h1,
.contact-content-modern h2,
.contact-content-modern h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-content-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== MAP STYLES ===== */
.map-container-modern {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 2rem;
}

.map-title-modern {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 20px 20px 0 20px;
}

.map-wrapper-modern {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.map-wrapper-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.map-wrapper-modern:hover::before {
    opacity: 0.1;
}

.map-wrapper-modern iframe {
    width: 100%;
    height: 500px;
    border: none;
    transition: var(--transition);
}

.map-info-modern {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139, 195, 74, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(139, 195, 74, 0.2);
}

.map-info-modern p {
    margin: 0;
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== QUICK CONTACT CTA ===== */
.quick-contact-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quick-contact-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quickPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23quickPattern)"/></svg>');
    opacity: 0.3;
}

.quick-contact-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.quick-contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.quick-contact-buttons {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 768px) {
    .contact-section-modern {
        padding: 3rem 0;
    }

    .contact-card-modern {
        padding: 1.5rem;
        margin: 0 1rem 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon-modern {
        margin: 0 auto 1rem;
    }

    .social-links-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .social-link-modern {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .social-link-modern i {
        font-size: 1.1rem;
    }

    .map-container-modern {
        position: static;
        margin-top: 2rem;
    }

    .map-wrapper-modern iframe {
        height: 300px;
    }

    .quick-contact-modern {
        padding: 3rem 0;
        text-align: center;
    }

    .quick-contact-buttons {
        margin-top: 2rem;
    }

    .quick-contact-buttons .btn-hero-primary,
    .quick-contact-buttons .btn-hero-secondary {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-credits {
        justify-content: center;
        margin-top: 1rem;
    }

    .contact-item {
        padding: 0.5rem;
    }

    .footer-logo {
        max-width: 150px;
    }
}

/* ===== BRAND INTEGRATION ===== */
.text-brand {
    color: var(--brand-green) !important;
}

.bg-brand {
    background-color: var(--brand-green) !important;
}

.border-brand {
    border-color: var(--brand-green) !important;
}

.btn-brand {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    transition: var(--transition);
}

.btn-brand:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* ===== ENHANCED GRADIENTS ===== */
.gradient-brand {
    background: var(--gradient-primary);
}

.gradient-brand-light {
    background: var(--gradient-secondary);
}

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

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

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title-modern { font-size: 2.125rem; }
    .hero-subtitle-modern { font-size: 1.25rem; }
    .section-title-modern { font-size: 1.75rem; }
    .stat-number-modern { font-size: 2.5rem; }

    .search-card-modern {
        margin: 1.5rem;
    }

    .car-card-modern {
        margin: 0 1rem 2rem 1rem;
    }

    .feature-card-modern,
    .review-card-modern,
    .stat-card-modern {
        margin: 0 1rem 1.5rem 1rem;
    }

    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-media-modern {
        right: 1rem;
        bottom: 1rem;
    }

    .social-btn-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-title-modern { font-size: 1.75rem; }
    .search-card-modern { 
        padding: 1.5rem; 
        margin: 1rem;
    }
    .car-content-modern { 
        padding: 1.5rem; 
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
    .feature-card-modern { 
        padding: 1.5rem; 
        margin: 0 0.5rem 1rem 0.5rem;
    }
    .review-card-modern { 
        padding: 2rem; 
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
}

/* ===== TERMS PAGE STYLES ===== */
.terms-section-modern {
    padding: 30px 0;
    background: var(--gray-50);
}

.terms-content-modern {
    position: relative;
    z-index: 2;
}

.terms-intro-modern {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.terms-intro-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.terms-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.terms-card-modern {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.terms-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
    border-color: var(--brand-green);
}

.terms-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.terms-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.terms-card-header h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.terms-card-content {
    padding: 1.5rem 2rem 2rem;
}

.terms-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.terms-list-modern li:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(5px);
}

.terms-list-modern li:last-child {
    margin-bottom: 0;
}

.terms-list-modern li i {
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.terms-additional-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.terms-additional-modern h1,
.terms-additional-modern h2,
.terms-additional-modern h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.terms-additional-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== TERMS SIDEBAR ===== */
.terms-sidebar-modern {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-contact-card,
.terms-notes-card,
.terms-emergency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.terms-contact-card:hover,
.terms-notes-card:hover,
.terms-emergency-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.terms-contact-card h4,
.terms-notes-card h4,
.terms-emergency-card h4 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-contact-card p,
.terms-notes-card p,
.terms-emergency-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-contact-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-contact-modern:hover {
    color: var(--white);
    background: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-contact-modern.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn-contact-modern.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.note-item:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(3px);
}

.note-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.note-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.emergency-contact:hover {
    color: var(--white);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.emergency-contact i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== TERMS CTA SECTION ===== */
.terms-cta-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.terms-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="termsPattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23termsPattern)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE TERMS ===== */
@media (max-width: 768px) {
    .terms-section-modern {
        padding: 3rem 0;
    }

    .terms-intro-modern {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .terms-card-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .terms-icon-modern {
        margin: 0 auto 1rem;
    }

    .terms-card-content {
        padding: 1.5rem;
    }

    .terms-list-modern li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .terms-sidebar-modern {
        position: static;
        margin-top: 2rem;
    }

    .contact-buttons-modern {
        flex-direction: column;
    }

    .terms-cta-modern {
        padding: 3rem 0;
        text-align: center;
    }

    .cta-buttons {
        margin-top: 2rem;
    }

    .btn-hero-primary {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .terms-intro-modern {
        padding: 1.5rem;
    }

    .terms-card-header {
        padding: 1.5rem;
    }

    .terms-card-content {
        padding: 1rem 1.5rem 1.5rem;
    }

    .terms-contact-card,
    .terms-notes-card,
    .terms-emergency-card {
        padding: 1.5rem;
    }
}
/* ===== ABOUT PAGE STYLES ===== */
.about-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

/* ===== ABOUT STORY ===== */
.about-story-modern {
    margin-bottom: 6rem;
}

.about-image-modern {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
}

.about-image-modern img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-badge-modern {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.about-badge-modern i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.about-badge-modern span {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.about-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2rem 2rem 0 0;
}

.about-text-modern {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text-modern h1,
.about-text-modern h2,
.about-text-modern h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-text-modern p {
    margin-bottom: 1.5rem;
}

/* ===== VALUES SECTION ===== */
.about-values-modern {
    margin-bottom: 6rem;
    padding: 4rem 0;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.value-card-modern {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.value-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    background: var(--white);
    border-color: var(--brand-green);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1);
    box-shadow: var(--shadow-green);
}

.value-card-modern h4 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card-modern p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.about-why-modern {
    margin-bottom: 6rem;
}

.why-image-modern {
    position: relative;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-stats-overlay {
    display: flex;
    gap: 3rem;
    z-index: 2;
    position: relative;
}

.stat-item-modern {
    text-align: center;
    color: var(--white);
}

.stat-item-modern .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item-modern .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.why-list-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.why-item-modern:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-green);
    border-color: var(--brand-green);
}

.why-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.why-content-modern h5 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-content-modern p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===== TEAM SECTION ===== */
.about-team-modern {
    margin-bottom: 6rem;
    padding: 4rem 0;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.team-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro-text p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.team-card-modern {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    background: var(--white);
    border-color: var(--brand-green);
}

.team-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card-modern:hover .team-icon-modern {
    transform: scale(1.1);
    box-shadow: var(--shadow-green);
}

.team-card-modern h5 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card-modern p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===== MISSION SECTION ===== */
.about-mission-modern {
    margin-bottom: 4rem;
}

.mission-card-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mission-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="missionPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23missionPattern)"/></svg>');
    opacity: 0.3;
}

.mission-icon-large {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-icon-large i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mission-card-modern h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-text:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT CTA ===== */
.about-cta-modern {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutCtaPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(139,195,74,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutCtaPattern)"/></svg>');
    opacity: 0.3;
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content-modern h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== RESPONSIVE ABOUT ===== */
@media (max-width: 768px) {
    .about-section-modern {
        padding: 3rem 0;
    }

    .about-story-modern,
    .about-values-modern,
    .about-why-modern,
    .about-team-modern {
        margin-bottom: 4rem;
    }

    .about-content-box {
        padding: 2rem;
        margin-top: 2rem;
    }

    .about-image-modern img {
        height: 300px;
    }

    .about-badge-modern {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .about-values-modern,
    .about-team-modern {
        padding: 3rem 2rem;
    }

    .value-card-modern,
    .team-card-modern {
        padding: 2rem 1.5rem;
        margin: 0 1rem 1.5rem 1rem;
    }

    .why-image-modern {
        height: 300px;
        margin-bottom: 2rem;
    }

    .why-stats-overlay {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item-modern .stat-number {
        font-size: 2.5rem;
    }

    .why-item-modern {
        padding: 1.5rem;
        margin: 0 1rem 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .why-icon-modern {
        margin: 0 auto 1rem;
    }

    .mission-card-modern {
        padding: 3rem 2rem;
    }

    .mission-icon-large i {
        font-size: 5rem;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-content-box {
        padding: 1.5rem;
    }

    .about-values-modern,
    .about-team-modern {
        padding: 2rem 1rem;
    }

    .value-card-modern,
    .team-card-modern {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .why-item-modern {
        padding: 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .mission-card-modern {
        padding: 2rem 1rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .cta-content-modern {
        padding: 0 1rem;
    }
}

/* ===== ROUNDED MODERN CLASS ===== */
.rounded-modern {
    border-radius: 2rem !important;
}
/* ===== CATEGORY PAGE STYLES ===== */
.category-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

/* ===== CATEGORY FILTER ===== */
.category-filter-modern {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

/* ===== CARS GRID ===== */
.cars-grid-modern {
    margin-bottom: 3rem;
}

.cars-header-modern {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.count-highlight {
    color: var(--brand-green);
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0.5rem;
}

/* ===== NO RESULTS ===== */
.no-results-modern h3 {
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-results-modern p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGINATION ===== */
.pagination-modern .pagination {
    margin: 0;
}

.pagination-modern .page-link {
    color: var(--gray-700);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-modern .page-link:hover {
    color: var(--brand-green);
    background-color: var(--gray-100);
    border-color: var(--brand-green);
    transform: translateY(-2px);
}

.pagination-modern .page-item.active .page-link {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.pagination-modern .page-item.disabled .page-link {
    color: var(--gray-400);
    background-color: var(--gray-100);
    border-color: var(--gray-300);
}

/* ===== CATEGORY DESCRIPTION ===== */
.category-description-modern {
    margin-top: 4rem;
}

.description-card-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    position: relative;
}

.description-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 1.5rem 1.5rem 0 0;
}

.description-title-modern {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.description-content-modern {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1rem;
    /* Limit height to ~30% of viewport and add scroll */
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1rem;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) var(--gray-200);
}

/* Webkit scrollbar styling for Chrome/Safari */
.description-content-modern::-webkit-scrollbar {
    width: 8px;
}

.description-content-modern::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.description-content-modern::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 4px;
}

.description-content-modern::-webkit-scrollbar-thumb:hover {
    background: var(--brand-green-dark);
}

.description-content-modern h1,
.description-content-modern h2,
.description-content-modern h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.description-content-modern h1:first-child,
.description-content-modern h2:first-child,
.description-content-modern h3:first-child {
    margin-top: 0;
}

.description-content-modern p {
    margin-bottom: 1.5rem;
}

.description-content-modern ul,
.description-content-modern ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.description-content-modern li {
    margin-bottom: 0.5rem;
}

/* ===== CATEGORY CTA ===== */
.category-cta-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.category-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categoryPattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23categoryPattern)"/></svg>');
    opacity: 0.3;
}

.category-cta-modern .cta-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.category-cta-modern .cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.category-cta-modern .cta-buttons {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE CATEGORY ===== */
@media (max-width: 768px) {
    .category-section-modern {
        padding: 3rem 0;
    }

    .category-filter-modern {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .cars-header-modern {
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .cars-count-modern {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .count-highlight {
        font-size: 1.5rem;
        margin: 0;
    }

    .no-results-modern {
        padding: 3rem 1.5rem;
    }

    .no-results-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .no-results-modern h3 {
        font-size: 1.5rem;
    }

    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }

    .no-results-actions .btn-hero-primary,
    .no-results-actions .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .pagination-modern {
        padding: 1.5rem 1rem;
    }

    .description-card-modern {
        padding: 2rem;
    }

    .category-cta-modern {
        padding: 3rem 0;
        text-align: center;
    }

    .category-cta-modern .cta-buttons {
        margin-top: 2rem;
    }

    .category-cta-modern .btn-hero-primary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .category-filter-modern {
        padding: 1.5rem;
    }

    .cars-header-modern {
        padding: 1rem;
    }

    .no-results-modern {
        padding: 2rem 1rem;
    }

    .description-card-modern {
        padding: 1.5rem;
    }

    .pagination-modern {
        padding: 1rem;
    }

    .pagination-modern .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}
/* ===== FILTER BLOCK STYLES ===== */
.filter-block-modern {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
        margin-bottom: 10px;
}

.filter-header-modern {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.filter-toggle-modern {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    transition: var(--transition);
}

.filter-toggle-modern:hover {
    color: var(--brand-green);
    background: rgba(139, 195, 74, 0.05);
}

.filter-toggle-modern i:first-child {
    color: var(--brand-green);
}

.filter-toggle-modern .fa-chevron-down {
    transition: var(--transition);
}

.filter-toggle-modern[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.filter-content-modern {
    padding: 2rem;
}

.filter-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.filter-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-label-modern {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin: 0;
}

/* filter-select-modern uses the same styles as form-select-modern - no duplicate needed */

.filter-actions-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-filter-apply {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-filter-apply:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn-filter-reset {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-filter-reset:hover {
    color: var(--brand-green);
    background: var(--white);
    border-color: var(--brand-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== RESPONSIVE FILTER ===== */
@media (max-width: 768px) {
    .filter-content-modern {
        padding: 1.5rem;
    }

    .filter-toggle-modern {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .filter-actions-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .filter-content-modern {
        padding: 1rem;
    }

    .filter-toggle-modern {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .form-select-modern {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .btn-filter-apply,
    .btn-filter-reset {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}
/* Duplicate description-card-modern styles removed - keeping the original definition in CATEGORY DESCRIPTION section */

/* ===== CONTACT INFO SECTION STYLES ===== */
.contact-info-section-modern {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-info-card-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-header h3 {
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin: 0;
}

.contact-info-content {
    flex: 1;
    margin-bottom: 2rem;
}

.contact-info-content h1,
.contact-info-content h2,
.contact-info-content h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-info-content a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: auto;
}

.contact-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-action-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-action-btn i {
    font-size: 1.5rem;
}

.contact-action-btn.phone {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.contact-action-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-action-btn.info {
    background: var(--gradient-primary);
}

/* Duplicate map-container-modern styles removed - keeping the original definition in MAP STYLES section */

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .description-section-modern,
    .contact-info-section-modern {
        padding: 3rem 0;
    }

    .description-section-modern .description-card-modern,
    .contact-info-card-modern {
        padding: 2rem;
    }

    .contact-info-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-quick-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-action-btn {
        flex-direction: row;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .contact-action-btn i {
        font-size: 1.25rem;
    }

    .map-header-modern {
        padding: 1.5rem;
        text-align: center;
    }

    .map-header-modern h4 {
        font-size: 1.25rem;
        justify-content: center;
    }

    .map-wrapper-modern {
        min-height: 300px;
    }

    .map-info-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .map-info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .description-section-modern .description-card-modern,
    .contact-info-card-modern {
        padding: 1.5rem;
    }

    .contact-info-header h3 {
        font-size: 1.25rem;
    }

    .contact-action-btn {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .map-header-modern {
        padding: 1rem;
    }

    .map-header-modern h4 {
        font-size: 1.125rem;
    }

    .map-info-modern {
        padding: 1rem;
    }
}
/* ===== CAR DETAILS PAGE STYLES ===== */

/* ===== CAR HERO SECTION ===== */
.car-hero-modern {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.car-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carHeroPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23carHeroPattern)"/></svg>');
    opacity: 0.3;
}

.car-hero-content {
    position: relative;
    z-index: 2;
}

.car-breadcrumb {
    margin-bottom: 1.5rem;
}

.car-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    margin: 0;
    backdrop-filter: blur(10px);
}

.car-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.car-breadcrumb .breadcrumb-item a:hover {
    color: var(--white);
}

.car-breadcrumb .breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.car-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.car-hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.car-badge-hero {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.car-badge-hero.available {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: var(--white);
}

.car-badge-hero.category {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* ===== CAR DETAILS SECTION ===== */
.car-details-modern {
    padding: 2rem 0;
    background: var(--gray-50);
}

/* ===== GALLERY STYLES ===== */
.car-gallery-modern {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
}

.gallery-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.gallery-header h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.gallery-container {
    padding: 2rem;
}

.product-slider-modern {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

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

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

/* ===== CAR INFO STYLES ===== */
.car-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.car-specs-card,
.car-pricing-card,
.car-services-card {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.specs-title,
.pricing-title,
.services-title {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
}

/* ===== SPECIFICATIONS ===== */
.specs-grid {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.spec-item:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(5px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.spec-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== PRICING ===== */
.pricing-grid {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.price-item:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(5px);
}

.price-item.deposit {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
    border-color: rgba(139, 195, 74, 0.3);
}

.price-period {
    color: var(--gray-700);
    font-weight: 600;
}

.price-value {
    color: var(--brand-green);
    font-size: 1.25rem;
    font-weight: 800;
}

.price-item.deposit .price-value {
    color: var(--brand-green-dark);
}

/* ===== SERVICES ===== */
.services-grid {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(5px);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.service-label {
    color: var(--gray-700);
    font-weight: 600;
    flex: 1;
}

.service-status.available {
    color: #22c55e;
    font-size: 1.25rem;
}

/* ===== RESERVATION SECTION ===== */
.reservation-section-modern {
    padding: 5rem 0;
    background: var(--white);
}

.reservation-card-modern {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.reservation-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2rem 2rem 0 0;
}

.reservation-title {
    color: var(--gray-900);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RESPONSIVE CAR DETAILS ===== */
@media (max-width: 768px) {
    .car-hero-modern {
        padding: 2rem 0 1.5rem;
    }

    .car-hero-title {
        font-size: 1.75rem;
    }

    .car-hero-badges {
        justify-content: center;
    }

    .car-details-modern {
        padding: 3rem 0;
    }

    .gallery-header,
    .specs-title,
    .pricing-title,
    .services-title {
        padding: 1.5rem;
        text-align: center;
    }

    .gallery-container,
    .specs-grid,
    .pricing-grid,
    .services-grid {
        padding: 1.5rem;
    }

    .spec-item,
    .price-item,
    .service-item {
        padding: 1rem;
    }

    .spec-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .spec-content {
        align-items: center;
    }

    .reservation-card-modern {
        padding: 2rem;
    }

    .reservation-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .car-hero-title {
        font-size: 1.75rem;
    }

    .car-badge-hero {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .gallery-header,
    .specs-title,
    .pricing-title,
    .services-title {
        padding: 1rem;
        font-size: 1.125rem;
    }

    .gallery-container,
    .specs-grid,
    .pricing-grid,
    .services-grid {
        padding: 1rem;
    }

    .spec-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.125rem;
    }

    .reservation-card-modern {
        padding: 1.5rem;
    }

    .reservation-title {
        font-size: 1.25rem;
    }
}
/* ===== RESERVATION FORM STYLES ===== */
.reservation-form-modern {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.form-header-modern {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.form-header-modern h3 {
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header-modern p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
}

.reservation-form {
    padding: 2rem;
}

.form-section-modern {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.form-section-title {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-green);
}

/* ===== CONTACT PREFERENCES ===== */
.contact-method-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-group-title {
    color: var(--gray-900);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
}

.form-check-input-modern {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-400);
    border-radius: 0.25rem;
    transition: var(--transition);
}

.form-check-input-modern:checked {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
}

.form-check-input-modern[type="radio"] {
    border-radius: 50%;
}

.form-check-label-modern {
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex: 1;
}

/* ===== INSURANCE OPTIONS ===== */
.insurance-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insurance-option {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.insurance-option:hover {
    border-color: var(--brand-green);
    background: rgba(139, 195, 74, 0.05);
}

.insurance-option.selected {
    border-color: var(--brand-green);
    background: rgba(139, 195, 74, 0.1);
}

.insurance-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.insurance-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.insurance-content h6 {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.insurance-content p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== SUBMIT SECTION ===== */
.form-submit-modern {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.btn-reservation-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.btn-reservation-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.form-note {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* ===== RESPONSIVE RESERVATION FORM ===== */
@media (max-width: 768px) {
    .form-header-modern {
        padding: 1.5rem;
    }

    .form-header-modern h3 {
        font-size: 1.5rem;
    }

    .reservation-form {
        padding: 1.5rem;
    }

    .form-section-modern {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-section-title {
        font-size: 1.125rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-method-group {
        padding: 1rem;
    }

    .insurance-option {
        padding: 1rem;
    }

    .insurance-label {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .form-submit-modern {
        padding: 1.5rem;
    }

    .btn-reservation-submit {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .form-header-modern {
        padding: 1rem;
    }

    .reservation-form {
        padding: 1rem;
    }

    .form-section-modern {
        padding: 1rem;
    }

    .form-control-modern,
    .form-select-modern {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .contact-method-group {
        padding: 0.75rem;
    }

    .insurance-option {
        padding: 0.75rem;
    }

    .btn-reservation-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
/* ===== UNIFIED CAR INFO STYLES ===== */
.car-info-unified-modern {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-info-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.car-info-header h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.car-info-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===== INFO SECTIONS ===== */
.info-section {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.info-section-title {
    color: var(--gray-900);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-green);
}

/* ===== COMPACT SPECIFICATIONS ===== */
.specs-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.spec-item-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.spec-item-compact:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(3px);
}

.spec-icon-compact {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.spec-content-compact {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.spec-label-compact {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
}

.spec-value-compact {
    color: var(--gray-900);
    font-size: 0.9rem;
    font-weight: 700;
    word-break: break-word;
}

/* ===== COMPACT PRICING ===== */
.pricing-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.price-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.price-item-compact:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(3px);
}

.price-item-compact.deposit {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(139, 195, 74, 0.05) 100%);
    border-color: rgba(139, 195, 74, 0.3);
}

.price-period-compact {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.85rem;
}

.price-value-compact {
    color: var(--brand-green);
    font-size: 1rem;
    font-weight: 800;
}

.price-item-compact.deposit .price-value-compact {
    color: var(--brand-green-dark);
}

/* ===== COMPACT SERVICES ===== */
.services-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-item-compact:hover {
    background: rgba(139, 195, 74, 0.05);
    border-color: rgba(139, 195, 74, 0.2);
    transform: translateX(3px);
}

.service-icon-compact {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.service-label-compact {
    color: var(--gray-700);
    font-weight: 600;
    flex: 1;
    font-size: 0.9rem;
}

.service-status-compact.available {
    color: #22c55e;
    font-size: 1rem;
}

/* ===== RESPONSIVE UNIFIED INFO ===== */
@media (max-width: 768px) {
    .car-info-header {
        padding: 1.5rem;
        text-align: center;
    }

    .car-info-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .info-section {
        padding: 1rem;
    }

    .info-section-title {
        font-size: 1rem;
        justify-content: center;
    }

    .specs-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spec-item-compact {
        padding: 0.5rem;
    }

    .spec-icon-compact {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .pricing-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .price-item-compact {
        padding: 0.5rem 0.75rem;
    }

    .service-item-compact {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .car-info-header {
        padding: 1rem;
    }

    .car-info-header h3 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .car-info-content {
        padding: 1rem;
    }

    .info-section {
        padding: 0.75rem;
    }

    .info-section-title {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .spec-value-compact,
    .price-value-compact {
        font-size: 0.85rem;
    }

    .service-label-compact {
        font-size: 0.85rem;
    }
}

/* ===== DYNAMIC SOCIAL MEDIA COLORS ===== */
/* Stiluri dinamice pentru platformele sociale din baza de date */
.social-btn-modern[style*="background"] {
    background: var(--social-color) !important;
}

/* Stiluri pentru platformele sociale în footer */
.footer-social .social-link[data-color] {
    background-color: var(--social-color);
    border-color: var(--social-color);
}

.footer-social .social-link[data-color]:hover {
    background-color: var(--social-color);
    border-color: var(--social-color);
    opacity: 0.8;
}

/* Responsive pentru social media floating buttons */
@media (max-width: 480px) {
    .social-media-modern {
        right: 0.5rem;
        bottom: 0.5rem;
    }

    .social-btn-modern {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

/* ===== SEARCH RESULTS SPECIFIC STYLES ===== */
.cars-count-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rental-period-info {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cars-header-modern {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

/* ===== NO RESULTS SECTION ===== */
.no-results-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.no-results-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-green);
}

.no-results-modern h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.no-results-modern p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGINATION MODERN ===== */
.pagination-modern {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.pagination-modern .pagination {
    gap: 0.5rem;
}

.pagination-modern .page-link {
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.pagination-modern .page-link:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background-color: rgba(139, 195, 74, 0.1);
}

.pagination-modern .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--brand-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

/* ===== CATEGORY SECTION MODERN ===== */
.category-section-modern {
    padding: 3rem 0;
    background: var(--gray-50);
    min-height: 60vh;
}

.category-filter-modern {
    margin-bottom: 3rem;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .cars-count-modern {
        font-size: 1.25rem;
        text-align: center;
        flex-direction: column;
        gap: 0.25rem;
    }

    .rental-period-info {
        text-align: center;
        justify-content: center;
    }

    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }

    .no-results-actions .btn-hero-primary,
    .no-results-actions .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}
/* ===== CONFIRMATION PAGE - BEAUTIFUL DESIGN ===== */

/* Success Banner */
.success-banner {
    background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.success-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Animated Checkmark */
.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.6s ease-out;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.checkmark-icon {
    font-size: 3rem;
    color: white;
    animation: checkmarkAppear 0.6s ease-out 0.3s both;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Păstrez și stilurile pentru checkmark CSS pentru compatibilitate */
.checkmark {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 10px;
    width: 12px;
    height: 24px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    animation: checkmarkDraw 0.4s ease-out 0.2s both;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes scaleIn {
    0% { 
        transform: scale(0); 
        opacity: 0; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1); 
        opacity: 1; 
    }
}

@keyframes checkmarkAppear {
    0% { 
        transform: scale(0) rotate(-180deg); 
        opacity: 0; 
    }
    50% { 
        transform: scale(1.2) rotate(-90deg); 
        opacity: 0.7; 
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
}

@keyframes checkmarkDraw {
    0% { 
        height: 0; 
        opacity: 0;
    }
    50% { 
        height: 12px; 
        opacity: 0.7;
    }
    100% { 
        height: 24px; 
        opacity: 1;
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.success-message {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.success-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Booking Summary */
.booking-summary {
    padding: 4rem 0;
    background: #f8f9fa;
}

.summary-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

/* Car Summary Card */
.car-summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.car-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: #8BC34A;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.car-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.car-image {
    flex-shrink: 0;
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-image img {
    width: 100%;
    height: auto;
    display: block;
}

.car-details {
    flex: 1;
}

.car-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.car-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature i {
    color: #8BC34A;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.trip-card .card-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.contact-card .card-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.price-card .card-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Trip Info */
.trip-info {
    margin-bottom: 1.5rem;
}

.trip-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.point-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.point-icon.pickup { background: #28a745; }
.point-icon.dropoff { background: #dc3545; }

.point-details {
    flex: 1;
}

.point-details strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.point-details span {
    color: #6c757d;
    font-size: 0.95rem;
}

.trip-line {
    width: 2px;
    height: 20px;
    background: #dee2e6;
    margin-left: 19px;
    margin-bottom: 0.5rem;
}

.trip-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8BC34A;
    font-weight: 600;
    background: rgba(139, 195, 74, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

/* Contact Details */
.contact-details {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-item i {
    color: #8BC34A;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-item text {
    color: #2c3e50;
}

.contact-preferences {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pref-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.pref-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

/* Messenger-specific colors */
.pref-tag.email {
    background: linear-gradient(135deg, #ea4335 0%, #d33b2c 100%);
    color: white;
}

.pref-tag.phone {
    background: linear-gradient(135deg, #34a853 0%, #2d8f47 100%);
    color: white;
}

.pref-tag.viber {
    background: linear-gradient(135deg, #665cac 0%, #59519a 100%);
    color: white;
}

.pref-tag.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20b954 100%);
    color: white;
}

.pref-tag.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba6 100%);
    color: white;
}

.pref-tag i {
    font-size: 1rem;
}

/* Price Breakdown */
.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.insurance {
    color: #28a745;
    font-weight: 500;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
    padding: 1.25rem;
    border-radius: 15px;
    font-weight: 700;
}

.total-amount {
    font-size: 1.5rem;
}

/* Action Section */
.action-section {
    margin-top: 3rem;
    text-align: center;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;      /* FOARTE IMPORTANT */
    min-height: 40px;
    background: #8BC34A;
    color: #fff;
    border-radius: 50%;
    display: inline-flex; /* NU flex */
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1; 
}

.step span {
    color: #495057;
    font-weight: 500;
    line-height: 1.4;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-explore,
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-explore {
    background: #8BC34A;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

.btn-explore:hover {
    background: #7CB342;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.5);
}

.btn-home {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
}

.btn-home:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #8BC34A;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-banner {
        padding: 6rem 0 3rem;
    }

    .checkmark-circle {
        width: 100px;
        height: 100px;
    }

    .checkmark-icon {
        font-size: 2.5rem;
    }

    .success-title {
        font-size: 1.875rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .booking-summary {
        padding: 2rem 0;
    }

    .car-info {
        flex-direction: column;
        text-align: center;
    }

    .car-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .car-name {
        font-size: 1.375rem;
        text-align: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .card-header {
        margin-bottom: 1rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .card-content h4 {
        font-size: 1.1rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-explore,
    .btn-home {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .checkmark-circle {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }

    .checkmark-icon {
        font-size: 2rem;
    }

    .success-animation {
        margin-bottom: 1.5rem;
    }

    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .card-header {
        margin-bottom: 0.75rem;
        gap: 0.75rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card-content h4 {
        font-size: 1rem;
    }
}