/* FTC Automóveis - Modern Styles */

/* CSS Variables - FTC Automóveis Brand Colors */
:root {
    --primary-color: #0A0A0A;          /* FTC Logo Background - Deep Black */
    --secondary-color: #B8984C;        /* FTC Logo Gold - Main Accent */
    --accent-color: #A61920;           /* FTC Logo Red Stripe */
    --accent-green: #006F3D;           /* FTC Logo Green Stripe */
    --bg-dark: #0A0A0A;               /* Consistent with logo background */
    --bg-light: #ffffff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-color: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #B8984C, #D4AF37); /* Gold gradient */
    --gradient-dark: linear-gradient(135deg, #0A0A0A, #1a1a1a);
    --gradient-accent: linear-gradient(90deg, #006F3D 0%, #006F3D 50%, #A61920 50%, #A61920 100%); /* Portuguese flag stripes */
    --shadow-light: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-gold: 0 4px 20px rgba(184,152,76,0.3); /* Gold shadow for premium effect */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.splash-content {
    text-align: center;
    color: var(--text-light);
}

.splash-logo {
    margin-bottom: 30px;
}

.splash-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Logo Modern */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-top: -2px;
}

.splash-screen .logo-main,
.splash-screen .logo-sub {
    color: var(--text-light);
}

/* Header Modern */
.header-modern {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-admin {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-size: 0.9rem;
}

.nav-admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Section Management */
section {
    display: none;
    min-height: calc(100vh - 80px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

section.active-section {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10,10,10,0.8), rgba(184,152,76,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: slideUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeIn 0.8s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.btn-hero {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

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

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

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

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

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

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 80px 0 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-color);
    opacity: 0.3;
}

.title-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Vehicles Section */
.vehicles-section {
    padding: 50px 0 100px;
    background: var(--bg-light);
}

.vehicles-section:nth-of-type(even) {
    background: #f8f9fa;
}

/* Modern Filters */
.filters-modern {
    margin-bottom: 60px;
}

.filters-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.filter-select,
.filter-input {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 150px;
    transition: var(--transition);
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.1);
}

.filter-btn {
    padding: 12px 25px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.vehicle-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.1);
}

.vehicle-info {
    padding: 25px;
}

.vehicle-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vehicle-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.vehicle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #fff3cd, #fef7e0);
    border-radius: 10px;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.news-section .section-title .title-number,
.news-section .section-title .title-text {
    color: white;
}

.news-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Financing Section */
.financing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.financing-section .section-title .title-number,
.financing-section .section-title .title-text {
    color: white;
}

.financing-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.financing-calculator {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.calculator-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    padding: 12px 40px 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-suffix {
    position: absolute;
    right: 15px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.calc-btn {
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.calc-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.calculator-results {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.result-grid {
    display: grid;
    gap: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-item.highlight {
    background: rgba(231,76,60,0.2);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
    border: none;
}

.result-label {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.result-item.highlight .result-value {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.result-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

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

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-gray);
    margin: 2px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.1);
}

.contact-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

/* Admin Section */
.admin-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    min-height: 100vh;
}

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

/* Admin Login */
.admin-login-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 400px;
    margin: 0 auto;
}

.admin-header {
    margin-bottom: 40px;
}

.admin-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.admin-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.admin-header p {
    color: rgba(255,255,255,0.8);
}

.admin-login-card .input-group {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.admin-login-card .input-group i {
    color: rgba(255,255,255,0.6);
    margin-left: 10px;
}

.admin-login-card input {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
}

.admin-login-card input::placeholder {
    color: rgba(255,255,255,0.6);
}

.admin-login-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.admin-demo {
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Admin Dashboard */
.admin-dashboard {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dashboard-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.logout-btn {
    padding: 10px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn:hover {
    background: #c0392b;
}

.dashboard-stats {
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

.dashboard-tabs {
    display: flex;
    background: rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.dashboard-content {
    padding: 40px;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0,0,0,0.8);
}

.modal-content {
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Footer Modern */
.footer-modern {
    background: var(--primary-color);
    color: white;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p,
.footer-schedule p {
    color: rgba(255,255,255,0.8);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-content p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        font-size: 1.2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        flex-direction: column;
        gap: 10px;
    }

    .title-number {
        font-size: 2rem;
    }

    .title-text {
        font-size: 2rem;
    }

    .filters-row {
        flex-direction: column;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .modal-container {
        width: 95%;
    }

    .modal-content {
        padding: 20px;
    }

    .admin-login-card {
        padding: 30px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card {
        padding: 30px 15px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

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

/* Utility Classes */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: white;
}

/* Enhanced Admin Styles - FTC Automóveis */

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(184,152,76,0.1);
    border: 1px solid rgba(184,152,76,0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(184,152,76,0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* Enhanced Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    position: relative;
}

.tab-btn:hover {
    background: rgba(184,152,76,0.1);
    border-color: var(--secondary-color);
    color: white;
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
    color: white;
}

.pending-badge {
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Enhanced Vehicle Cards */
.admin-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.admin-vehicle-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.admin-vehicle-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.vehicle-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.status-published {
    background: #27ae60;
    color: white;
}

.status-sold {
    background: #e74c3c;
    color: white;
}

.status-reserved {
    background: #f39c12;
    color: white;
}

.status-pending {
    background: #95a5a6;
    color: white;
}

.admin-vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.admin-vehicle-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.admin-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.admin-details {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.admin-plate {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.featured-tag {
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.status-select {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    flex: 1;
}

.btn-edit, .btn-delete {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 0.9rem;
}

.btn-edit {
    background: #3498db;
}

.btn-delete {
    background: var(--accent-color);
}

.btn-edit:hover, .btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Tab Actions */
.tab-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.status-filter {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Vehicle Form */
.vehicle-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(184,152,76,0.2);
}

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

.form-checkbox {
    margin: 20px 0;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
}

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

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* No Vehicles State */
.no-vehicles {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.7);
}

.no-vehicles-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.no-vehicles h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.no-vehicles p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pending Vehicles */
.pending-empty {
    background: rgba(149,165,166,0.1);
    border: 2px dashed rgba(149,165,166,0.3);
    border-radius: 15px;
    margin: 20px 0;
}

.pending-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.pending-vehicle-card {
    background: rgba(149,165,166,0.1);
    border: 1px solid rgba(149,165,166,0.2);
    border-radius: 15px;
    padding: 20px;
}

.pending-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #95a5a6;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pending-info h4 {
    color: white;
    margin-bottom: 8px;
}

.pending-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pending-details {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.pending-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pending-actions button {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
    color: white;
    flex: 1;
    min-width: 80px;
}

/* Sync Tab */
.sync-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.sync-settings,
.sync-status,
.sync-instructions {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
}

.sync-settings h4,
.sync-status h4,
.sync-instructions h4 {
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sync-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.status-label {
    color: rgba(255,255,255,0.7);
}

.status-value {
    color: white;
    font-weight: 500;
}

.status-inactive {
    color: #e74c3c !important;
}

.status-active {
    color: #27ae60 !important;
}

.sync-instructions {
    grid-column: 1 / -1;
}

.sync-instructions ol {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    padding-left: 20px;
}

.sync-instructions li {
    margin-bottom: 8px;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .tab-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .sync-container {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .status-select {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-vehicles-grid,
    .pending-vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* ========================================
   LOGOS FTC AUTOMÓVEIS - STYLES PERSONNALISÉS
   ======================================== */

/* Logo Navigation Header */
.logo-image {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: var(--transition);
    cursor: pointer;
}

/* Logo Splash Screen */
.splash-logo {
    text-align: center;
    margin-bottom: 30px;
}

.splash-logo-image {
    height: 120px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

/* Animation flottante pour le logo splash */
@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

/* Logo Footer */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

/* Effets hover */
.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo:hover .footer-logo-image {
    opacity: 1;
    transform: scale(1.02);
}

/* Responsivité Mobile */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .splash-logo-image {
        height: 80px;
        max-width: 180px;
        margin-bottom: 15px;
    }
    
    .footer-logo-image {
        height: 28px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .splash-logo-image {
        height: 70px;
        max-width: 150px;
    }
    
    .footer-logo-image {
        height: 25px;
        max-width: 90px;
    }
}

/* Correction des anciens styles logo si présents */
.logo-icon, .logo-text {
    display: none !important;
}

/* Logo en mode sombre/clair */
.logo-image, .footer-logo-image {
    filter: brightness(1) contrast(1);
}

/* Logo splash avec effet de brillance */
.splash-logo-image {
    position: relative;
}

.splash-logo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Adaptation pour les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image, .splash-logo-image, .footer-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Loading state pour les images */
.logo-image, .splash-logo-image, .footer-logo-image {
    background: rgba(184,152,76,0.1);
    border-radius: 4px;
}

/* Alignement centré pour le logo navigation sur mobile */
@media (max-width: 768px) {
    .nav-logo {
        text-align: center;
    }
}

/* FTC Automóveis - Styles Header Corrigés avec Couleur du Logo */
/* Ajoutez ces styles à la fin de votre styles.css */

/* Variables mises à jour avec couleur du logo */
:root {
    --ftc-logo-black: #000000;          /* Couleur exacte du fond du logo */
    --primary-color: #000000;           /* Noir pur du logo */
    --secondary-color: #B8984C;         /* Or du logo */
    --accent-color: #A61920;            /* Rouge du drapeau */
    --accent-green: #006F3D;            /* Vert du drapeau */
    --bg-dark: #000000;                 /* Fond noir du logo */
    --header-spacing: 60px;             /* Espacement latéral */
}

/* Header avec couleur du logo et espacement */
.header-modern {
    background: linear-gradient(135deg, var(--ftc-logo-black) 0%, rgba(0,0,0,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184,152,76,0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Navigation container avec espacement latéral */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--header-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo section avec espacement */
.nav-logo {
    flex-shrink: 0;
    padding-right: 20px;
}

/* Menu navigation centré */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* Liens de navigation avec couleur du logo */
.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 15px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--secondary-color);
    background: rgba(184,152,76,0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--secondary-color);
    background: rgba(184,152,76,0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Link Admin avec style spécial */
.nav-admin {
    background: rgba(184,152,76,0.1);
    border: 1px solid rgba(184,152,76,0.3);
    border-radius: 20px;
    padding: 8px 16px !important;
    margin-left: 15px;
}

.nav-admin:hover {
    background: rgba(184,152,76,0.2);
    border-color: var(--secondary-color);
}

/* Menu toggle mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Splash screen avec couleur du logo */
.splash-screen {
    background: linear-gradient(135deg, var(--ftc-logo-black) 0%, #111111 100%);
}

/* Footer avec couleur du logo */
.footer-modern {
    background: linear-gradient(135deg, var(--ftc-logo-black) 0%, rgba(0,0,0,0.98) 100%);
    border-top: 1px solid rgba(184,152,76,0.2);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    :root {
        --header-spacing: 20px;
    }
    
    .nav-container {
        padding: 0 var(--header-spacing);
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--ftc-logo-black);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 20px 40px;
        width: 100%;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-admin {
        margin: 20px 40px;
        width: calc(100% - 80px);
        text-align: center;
        border-radius: 25px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-spacing: 40px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    :root {
        --header-spacing: 80px;
    }
}

/* Animation d'entrée du header */
@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-modern {
    animation: headerSlideIn 0.6s ease-out;
}

/* Effet de blur au scroll */
.header-scrolled {
    background: rgba(0,0,0,0.95) !important;
    backdrop-filter: blur(15px);
}

/* Amélioration des transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo avec effet hover amélioré */
.logo-image {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(184,152,76,0.3));
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(184,152,76,0.5));
}