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

:root {
    --fazona-red: #D6001C;
    --fazona-white: #F8F8F8;
    --fazona-black: #0A0A0A;
    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-poppins);
    line-height: 1.6;
    color: var(--fazona-black);
    background-color: var(--fazona-white);
    overflow-x: hidden;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes scaleX {
    to {
        transform: scaleX(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    background: var(--fazona-red);
    padding: 0.5rem;
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.brand-name {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2rem;
    color: var(--fazona-black);
}

.brand-suffix {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2rem;
    color: var(--fazona-red);
    margin-left: 0.25rem;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--fazona-black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fazona-red);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--fazona-black);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--fazona-red);
    transform: scale(1.1);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-lg);
}

.nav-mobile.active {
    animation: fadeInUp 0.3s ease-out;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-poppins);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fazona-red), #b8001a);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--fazona-black), #333);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline:hover {
    background: var(--fazona-red);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--fazona-white) 0%, #f0f0f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--fazona-black), var(--fazona-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    color: var(--fazona-red);
    display: block;
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fazona-red), transparent);
    animation: fadeInRight 1s ease-out 1s forwards, 
               scaleX 0.8s ease-out 1.2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image {
    position: relative;
}

.hero-image-container {
    background: linear-gradient(135deg, var(--fazona-red), #b8001a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

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

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    background: #e8f5e8;
    padding: 0.75rem;
    border-radius: 50%;
    color: #22c55e;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
    position: relative;
}

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

.section-header h2 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--fazona-black), var(--fazona-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--fazona-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fazona-red), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    background: linear-gradient(135deg, var(--fazona-red), #b8001a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Swiper Customization */
.featured-vehicles-swiper {
    padding: 2rem 0 4rem;
}

.swiper-pagination-bullet {
    background: var(--fazona-red);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--fazona-red);
}

/* Vehicle Image Gallery */
.vehicle-image-gallery {
    height: 300px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.main-image {
    height: 250px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.image-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0,0,0,0.8);
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    overflow-x: auto;
}

.thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--fazona-red);
    transform: scale(1.1);
}

.image-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.vehicle-image-gallery:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
}

.no-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Trigger Styles */
.gallery-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.gallery-trigger:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.hidden-gallery {
    display: none !important;
}

/* Vehicle Cards */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--fazona-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    z-index: 10;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-content h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.vehicle-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.vehicle-features {
    margin-bottom: 1.5rem;
}

.vehicle-features h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(214, 0, 28, 0.1);
    color: var(--fazona-red);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-tag:hover {
    background: var(--fazona-red);
    color: white;
}

.vehicle-price {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--fazona-black);
}

.price-note {
    font-size: 0.8rem;
    color: #666;
}

.vehicle-actions {
    display: flex;
    gap: 0.75rem;
}

.vehicle-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #22c55e);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Featured Vehicles Section */
.featured-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-vehicle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

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

.featured-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--fazona-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-vehicle-content {
    padding: 1.5rem;
}

.featured-vehicle-content h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.featured-vehicle-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-price {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--fazona-black);
    margin-bottom: 1rem;
}

.featured-actions {
    display: flex;
    gap: 0.5rem;
}

.featured-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Spotlight Section */
.spotlight-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(214, 0, 28, 0.1), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.spotlight-badge {
    background: var(--fazona-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-highlight i {
    color: var(--fazona-red);
    font-size: 1.2rem;
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, var(--fazona-red), #b8001a);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-number {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--fazona-black);
}

.stat-card p {
    color: #666;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.3s ease-out;
}

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

.modal-header h2 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--fazona-red);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--fazona-black);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-poppins);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--fazona-red);
    box-shadow: 0 0 0 3px rgba(214, 0, 28, 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #15803d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--fazona-black);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fazona-red), transparent, var(--fazona-red));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--fazona-red);
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    transition: var(--transition);
}

.contact-item:hover {
    color: white;
}

.contact-item i {
    color: var(--fazona-red);
    width: 20px;
}

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

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

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

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.email {
    background: linear-gradient(135deg, var(--fazona-red), #b8001a);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Admin Styles */
.admin-header {
    background: linear-gradient(135deg, var(--fazona-black), #333);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

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

.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.admin-logo-icon {
    background: var(--fazona-red);
    padding: 0.5rem;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
}

.admin-logo-text {
    display: flex;
    align-items: center;
}

.admin-badge {
    color: #ccc;
    margin-left: 1rem;
    font-size: 0.9rem;
}

.admin-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.admin-mobile-menu-btn:hover {
    color: var(--fazona-red);
}

.admin-nav-desktop {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: var(--fazona-red);
    transform: translateY(-2px);
}

.admin-nav-link.logout:hover {
    background: #ef4444;
}

.admin-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #444;
    margin-top: 1rem;
}

.admin-nav-mobile.active {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
}

.admin-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    background: var(--fazona-white);
}

.admin-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header-section h1 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 2rem;
    color: var(--fazona-black);
}

.stats-summary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.stat-item.pending {
    background: #fef3c7;
    color: #d97706;
}

.stat-item.contacted {
    background: #dbeafe;
    color: #2563eb;
}

.stat-item.closed {
    background: #dcfce7;
    color: #16a34a;
}

.stat-item.unread {
    background: #fee2e2;
    color: #dc2626;
}

.stat-item.read {
    background: #dcfce7;
    color: #16a34a;
}

.admin-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.admin-card:hover {
    box-shadow: var(--shadow-lg);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: var(--fazona-white);
    font-weight: 600;
    color: var(--fazona-black);
}

.admin-table tr:hover {
    background: rgba(214, 0, 28, 0.05);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-contacted {
    background: #dbeafe;
    color: #2563eb;
}

.status-closed {
    background: #dcfce7;
    color: #16a34a;
}

.status-unread {
    background: #fee2e2;
    color: #dc2626;
}

.status-read {
    background: #dcfce7;
    color: #16a34a;
}

.status-active {
    background: #dcfce7;
    color: #16a34a;
}

.status-inactive {
    background: #f3f4f6;
    color: #6b7280;
}

.status-in_progress {
    background: #dbeafe;
    color: #2563eb;
}

.status-resolved {
    background: #dcfce7;
    color: #16a34a;
}

/* Admin Specific Components */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.vehicles-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.vehicle-admin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-admin-image {
    height: 200px;
    position: relative;
    background: #f0f0f0;
}

.vehicle-admin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-featured {
    background: var(--fazona-red);
    color: white;
}

.badge-active {
    background: #22c55e;
    color: white;
}

.badge-inactive {
    background: #6b7280;
    color: white;
}

.vehicle-admin-content {
    padding: 1.5rem;
}

.vehicle-admin-content h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vehicle-category {
    color: var(--fazona-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.vehicle-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vehicle-price {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--fazona-black);
    margin-bottom: 1rem;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.vehicle-meta small {
    color: #666;
    font-size: 0.8rem;
}

.vehicle-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.current-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.current-image-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.primary-badge {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    background: var(--fazona-red);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.delete-image-btn {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quote and Message Cards */
.quotes-grid,
.messages-grid,
.issues-grid {
    display: grid;
    gap: 1.5rem;
}

.quote-card,
.message-card,
.issue-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.quote-card.pending,
.message-card.unread,
.issue-card.pending {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.02);
}

.quote-card.contacted,
.message-card.read,
.issue-card.in_progress {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.02);
}

.quote-card.closed,
.issue-card.resolved {
    border-left-color: #22c55e;
    background: rgba(34, 197, 94, 0.02);
}

.quote-card:hover,
.message-card:hover,
.issue-card:hover {
    box-shadow: var(--shadow-lg);
}

.quote-header,
.message-header,
.issue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.customer-info h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--fazona-red);
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--fazona-black);
}

.contact-link.whatsapp {
    color: #25d366;
}

.quote-meta,
.message-meta,
.issue-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

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

.urgency-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.urgency-low {
    background: #dcfce7;
    color: #16a34a;
}

.urgency-medium {
    background: #fef3c7;
    color: #d97706;
}

.urgency-high {
    background: #fee2e2;
    color: #dc2626;
}

.date-info {
    text-align: right;
}

.date-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.date-info small {
    color: #666;
    font-size: 0.8rem;
}

.quote-vehicle,
.issue-details {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--fazona-white);
    border-radius: 8px;
}

.quote-vehicle h4 {
    font-family: var(--font-montserrat);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vehicle-price {
    color: var(--fazona-red);
    font-weight: 600;
}

.quote-message,
.message-content,
.issue-description {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--fazona-white);
    border-radius: 8px;
    border-left: 3px solid var(--fazona-red);
}

.quote-message h5,
.issue-description h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.message-preview,
.description-preview {
    color: #666;
}

.read-more {
    color: var(--fazona-red);
    cursor: pointer;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.quote-actions,
.message-actions,
.issue-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.empty-state h3 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-toggle:hover {
    background: #f9f9f9;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    min-width: 150px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--fazona-white);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #15803d;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--fazona-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* GLightbox Custom Styles */
.glightbox-clean .gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.glightbox-clean .gslide-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-nav-desktop {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }

    .features {
        padding: 80px 0;
    }

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

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

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

    .social-links {
        justify-content: center;
    }

    /* Admin Mobile Responsive */
    .admin-nav-desktop {
        display: none;
    }

    .admin-mobile-menu-btn {
        display: block;
    }

    .admin-header-section {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .stats-summary {
        justify-content: center;
    }

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

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

    .form-actions {
        flex-direction: column;
    }

    .vehicle-actions {
        flex-direction: column;
    }

    .quote-header,
    .message-header,
    .issue-header {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-meta,
    .message-meta,
    .issue-meta {
        align-items: flex-start;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .quote-actions,
    .message-actions,
    .issue-actions {
        flex-direction: column;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px;
    }

    /* Spotlight section mobile */
    section[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    section[style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .vehicle-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .admin-card {
        padding: 1rem;
    }

    .quote-card,
    .message-card,
    .issue-card {
        padding: 1rem;
    }

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

    .featured-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: #666; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

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

.w-full { width: 100%; }
.h-full { height: 100%; }

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

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

::-webkit-scrollbar-thumb {
    background: var(--fazona-red);
    border-radius: 4px;
}

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