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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Properties */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f4e4a6;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-color: #333333;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3); 
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem; 
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem auto 0 auto;
}

.hero-title { 
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.title-line { 
    display: block;
    /* opacity & transform for entry animation now primarily handled by JS initHeroLoadAnimations */
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
    /* opacity & transform for entry animation now primarily handled by JS initHeroLoadAnimations */
}

.hero-cta {
    display: flex;
    gap: 1rem;
    /* opacity & transform for entry animation now primarily handled by JS initHeroLoadAnimations */
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3); 
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Hero Visual & Plate Showcase (NUEVA ESTRUCTURA Y ESTILOS) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;  /* Initial state for CSS animation */
    /* transform: translateY(20px) scale(0.95); -> This will be the 0% state of the keyframe */
    animation: heroVisualFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.6s; /* MODIFIED animation */
}

@keyframes heroVisualFadeIn { /* MODIFIED keyframe for hero plate container entrance */
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.92); /* Plate starts slightly lower and smaller */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* Plate settles into position */
    }
}

.plate-showcase {
    position: relative; 
}

/* CARD 2: Estilos para el fondo dorado con efectos (plate-card-background) */
.plate-card-background {
    background: linear-gradient(145deg, #1f1f1f, #2e2e2e); 
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    padding: 15px; 
    text-align: center;
    box-shadow: var(--shadow-gold);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease; 
    position: relative; 
    display: flex; 
    justify-content: center;
    align-items: center;
    min-width: 410px; 
    min-height: 180px; 
}

.plate-card-background.featured {
    animation: float 6s ease-in-out infinite;
}

.plate-card-background:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.plate-card-background .original-card2-text-container {
    display: none !important; 
}
.plate-card-background .plate-number,
.plate-card-background .plate-label {
    display: none; 
}

/* CARD 1: Estilos para la matrícula de Dubái (plate-card-dubai) */
.plate-card-dubai {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 8px;
    color: #212529;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
    width: 100%; 
    max-width: 380px; 
    padding: 15px 25px;
    transform: translateZ(10px); 
    position: relative; 
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.plate-card-dubai .plate-prefix-letter,
.plate-card-dubai .plate-digits {
    font-weight: bold;
    color: #000;
}

.plate-card-dubai .plate-prefix-letter {
    text-align: center;
    min-width: 1.5em;
    font-size: 3.8rem; 
    margin-right: 10px;
}

.plate-card-dubai .plate-city {
    font-weight: bold;
    color: #cc0000; 
    padding: 0 12px;
    white-space: nowrap;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    margin: 0 10px;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem; 
}

.plate-card-dubai .dubai-logo {
    height: 30px;
    width: auto;
    max-width: 100%;
}

.plate-card-dubai .plate-digits {
    font-family: "DIN Next LT Pro Bold", "Arial Narrow", Arial, sans-serif; 
    letter-spacing: 1px;
    text-align: center;
    flex-grow: 1;
    font-size: 4.5rem; 
}

@keyframes float {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 3s ease forwards;
}

.scroll-line {
    width: 2px;
    height: 40px; /* Línea más corta */
    background: var(--gradient-gold);
    margin-top: 10px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Collection Section */
.collection {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Collection Stats Styles */
.collection-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-item:hover::before {
    left: 100%;
}

/* Collection Controls Styles */
.collection-controls {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.controls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-box input::placeholder {
    color: #888;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.search-box:focus-within::before {
    transform: translateY(-50%) scale(1.1);
}

.sort-dropdown {
    min-width: 200px;
}

.sort-dropdown select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.5);
}

.sort-dropdown select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

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

.plate-item.filtered-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Premium Badge Enhancement */
.premium-badge {
    position: relative;
    overflow: hidden;
}

.premium-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    /* Elements inside will be animated by fadeInObserver in JS */
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* View More Button Styles */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-view-more svg {
    transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

/* Full Collection Page Styles */
.collection-header {
    text-align: center;
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, var(--dark-bg), var(--medium-bg));
    margin-bottom: 60px;
}

.collection-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.collection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.collection-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Collection Stats Section */
.collection-stats {
    background: var(--medium-bg);
    padding: 60px 20px;
    margin-bottom: 40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.full-collection {
    padding: 0 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Collection Controls */
.collection-controls {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collection-controls.compact {
    margin-bottom: 25px;
}

.collection-filters {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
}

/* Search and Sort Container */
.search-sort-container {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

.sort-dropdown {
    min-width: 180px;
}

.sort-select {
    width: 100%;
    padding: 10px 15px;
    background: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.sort-select option {
    background: var(--card-bg);
    color: white;
}

/* View More Button Styles */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-view-more svg {
    transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

.plate-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease; 
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Animated by initScrollAnimations in JS */
}

.plate-item:hover {
    border-color: var(--primary-gold); 
}

.plate-item.premium {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(145deg, var(--card-bg), #2a2a1a);
}

.plate-item.premium:hover {
    border-color: var(--secondary-gold); 
}

.plate-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.plate-card {
    background-color: #fff; 
    border: 2px solid #4A4A4A; 
    border-radius: 8px; 
    padding: 10px 15px; 
    color: #212529; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-family: 'Arial', sans-serif; 
    text-transform: uppercase;
    width: 100%; 
    max-width: 300px; 
    margin: 0 auto; 
}

.plate-card .plate-prefix-letter, 
.plate-card .plate-digits {
    font-weight: bold;
    color: #212529; 
}

.plate-card .plate-prefix-letter {
    font-size: 1.8rem; 
    margin-right: 8px;
}

.plate-card .plate-city {
    font-size: 1rem; 
    font-weight: bold;
    color: #cc0000; 
    padding: 0 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plate-card .dubai-logo {
    height: 20px;
    width: auto;
    max-width: 100%;
}

.plate-card .plate-digits {
    font-size: 1.8rem; 
    font-family: 'Courier New', Courier, monospace; 
    letter-spacing: 1px;
}

.plate-item .plate-card {
    padding: 12px 18px;
    max-width: 280px; 
}

.plate-item .plate-card .plate-prefix-letter,
.plate-item .plate-card .plate-digits {
    font-size: 2rem; 
}

.plate-item .plate-card .plate-city {
    font-size: 1.1rem; 
}

.plate-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.plate-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.plate-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.plate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    width: 100%;
    max-width: 200px;
}

.plate-cta:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    /* Animated by initScrollAnimations in JS */
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    /* Animated by initScrollAnimations in JS */
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Visual Styling */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-plate-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    position: relative;
}

/* Estilos para la placa en la sección about (sin efecto de doblado) */
.about-plate-card {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 8px;
    color: #212529;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
    width: 100%;
    max-width: 380px;
    padding: 15px 25px;
    position: relative;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Efecto de brillo dorado alrededor */
    animation: plate-glow 4s ease-in-out infinite alternate;
}

@keyframes plate-glow {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    }
}

.about-plate-card .plate-prefix-letter,
.about-plate-card .plate-digits {
    font-weight: bold;
    color: #000;
}

.about-plate-card .plate-prefix-letter {
    text-align: center;
    min-width: 1.5em;
    font-size: 3.8rem;
    margin-right: 10px;
}

.about-plate-card .plate-city {
    font-weight: bold;
    color: #cc0000;
    padding: 0 12px;
    white-space: nowrap;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    margin: 0 10px;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.about-plate-card .dubai-logo {
    height: 30px;
    width: auto;
    max-width: 100%;
}

.about-plate-card .plate-digits {
    font-family: "DIN Next LT Pro Bold", "Arial Narrow", Arial, sans-serif;
    letter-spacing: 1px;
    text-align: center;
    flex-grow: 1;
    font-size: 4.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
     /* Animated by fadeInObserver in JS */
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    /* Animated by initScrollAnimations in JS */
}

.contact-method:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); 
}

/* Contact Icons and Info */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    margin-right: 20px;
    color: var(--dark-bg);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-detail {
    font-size: 0.95rem;
    opacity: 0.9;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    text-align: left;
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-social-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations (Generales) */
@keyframes fadeIn { /* General fadeIn, used by scroll-indicator */
    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    to { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* FAQ Section Styles - Updated for accordion functionality */
.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on your content */
    opacity: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Terms and Conditions Section */
.terms {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    position: relative;
}

.terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.terms::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.terms .section-title {
    text-align: center;
}

.faq .section-title {
    text-align: center;
}

.terms-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terms-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Update Navigation to include FAQ and Terms links */
.nav-links a[href="#faq"], .nav-links a[href="#terms"] {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a[href="#faq"]:hover, .nav-links a[href="#terms"]:hover {
    color: var(--primary-gold);
}

.nav-links a[href="#faq"]::after, .nav-links a[href="#terms"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a[href="#faq"]:hover::after, .nav-links a[href="#terms"]:hover::after {
    width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Enhanced Contact Cards Layout */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

/* Location Info Styling */
.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 10px;
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    margin-right: 15px;
    color: var(--dark-bg);
}

.location-text {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--dark-bg);
    font-weight: 600;
}

/* Alphabet Filter Styles */
.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.letter-btn {
    padding: 8px 12px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.letter-btn.active {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--dark-bg);
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.collection-grid.full {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin: 4rem auto 0;
        padding: 0 1rem;
    }
    
    .hero-visual { order: -1; }
    
    .plate-card-background {
        min-width: 350px;
        min-height: 160px;
    }
    
    .nav-container { padding: 1rem 1.5rem; }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .collection-grid.full { grid-template-columns: repeat(3, 1fr); }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .hero-title { font-size: clamp(4rem, 8vw, 6rem); }
    .hero-subtitle { font-size: 1.1rem; }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .plate-card-background {
        min-width: 300px;
        min-height: 140px;
        transform: perspective(800px) rotateY(-10deg);
    }
    
    .plate-card-background:hover {
        transform: perspective(800px) rotateY(0deg) scale(1.01);
    }
    
    .plate-card-dubai {
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .plate-card-dubai .plate-prefix-letter { font-size: 3rem; }
    .plate-card-dubai .plate-digits { font-size: 3.5rem; }
    
    .nav-links { gap: 1.5rem; }
    
    .collection { padding: 3rem 1.5rem; }
    .about { padding: 6rem 1.5rem; }
    .contact { padding: 6rem 1.5rem; }
    
    .contact-cards { grid-template-columns: 1fr; gap: 20px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .collection-grid.full { grid-template-columns: repeat(2, 1fr); }
    .collection-title { font-size: 40px; }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 90vh;
    }
    
    .hero-content {
        margin: 6rem auto 0;
        gap: 2rem;
        padding: 0 0.5rem;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 6rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual { margin-top: 2rem; }
    
    .plate-card-background {
        min-width: auto;
        width: 90%;
        max-width: 350px;
        min-height: 130px;
        padding: 10px;
        transform: perspective(600px) rotateY(-8deg);
    }
    
    .plate-card-background:hover {
        transform: perspective(600px) rotateY(0deg) scale(1.01);
    }
    
    .plate-card-dubai {
        max-width: 100%;
        padding: 12px 20px;
    }
    
    .plate-card-dubai .plate-prefix-letter {
        font-size: 3rem;
        margin-right: 8px;
    }
    
    .plate-card-dubai .plate-digits { font-size: 3.5rem; }
    
    .plate-card-dubai .plate-city {
        font-size: 1.1rem;
        padding: 0 10px;
        margin: 0 8px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plate-item {
        padding: 1.2rem;
    }
    
    .plate-item .plate-card {
        max-width: 260px;
        padding: 10px 15px;
    }
    
    .plate-item .plate-card .plate-prefix-letter,
    .plate-item .plate-card .plate-digits {
        font-size: 1.8rem;
    }
    
    .plate-item .plate-card .plate-city { font-size: 1rem; }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-plate-showcase { height: 300px; }
    
    .about-plate-card {
        max-width: 300px;
        padding: 12px 20px;
    }
    
    .about-plate-card .plate-prefix-letter { font-size: 3rem; }
    .about-plate-card .plate-digits { font-size: 3.5rem; }
    
    .about-plate-card .plate-city {
        padding: 0 8px;
        margin: 0 8px;
    }
    
    .about-plate-card .dubai-logo { height: 25px; }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand { text-align: center; }
    .footer-description { margin: 1rem auto; }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-section { margin-bottom: 2rem; }
    .contact-methods { grid-template-columns: 1fr; }
    
    .stat-number { font-size: 2rem; }
    
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .loading-spinner { padding: 0 1rem; }
    .spinner { width: 40px; height: 40px; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .scroll-indicator { display: none; }
    
    /* Collection Controls */
    .collection-controls {
        gap: 15px;
        flex-direction: column;
    }
    
    /* Reorder: Search first, then filters */
    .search-sort-container {
        order: -1;
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .search-box, .sort-dropdown { min-width: 100%; }
    
    /* Convert filters to mobile-friendly selects */
    .collection-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        padding: 15px;
        min-width: 100%;
        position: relative;
    }
    
    /* Hide original filter buttons on mobile */
    .filter-group .filter-options,
    .filter-group .alphabet-filter {
        display: none;
    }
    
    /* Create mobile filter selects */
    .filter-group::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
    }
    
    .filter-group .filter-title {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 500;
    }
    
    /* Add mobile filter selects */
    .mobile-filter-select {
        width: 100%;
        padding: 10px 15px;
        background: var(--light-bg);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: white;
        font-size: 14px;
        appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-filter-select:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
    
    .mobile-filter-select option {
        background: #1a1a1a;
        color: white;
        padding: 10px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number { font-size: 36px; }
    
    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item, .terms-item { padding: 1.5rem; }
    .faq-question { font-size: 1.1rem; }
}

/* Small Tablets */
@media (max-width: 600px) {
    .collection-grid.full { grid-template-columns: 1fr; }
    .collection-title { font-size: 32px; }
    
    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn { text-align: center; }
    
    .alphabet-filter {
        justify-content: center;
        gap: 6px;
    }
    
    .letter-btn {
        min-width: 30px;
        height: 30px;
        font-size: 11px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        margin: 6rem auto 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-subtitle { font-size: 0.9rem; }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .plate-card-background {
        min-width: 250px;
        max-width: 300px;
        min-height: 120px;
        padding: 10px;
        transform: perspective(500px) rotateY(-5deg);
    }
    
    .plate-card-background:hover {
        transform: perspective(500px) rotateY(0deg) scale(1.005);
    }
    
    .plate-card-dubai {
        max-width: 220px;
        padding: 8px 12px;
    }
    
    .plate-card-dubai .plate-prefix-letter {
        font-size: 2.5rem;
        margin-right: 6px;
    }
    
    .plate-card-dubai .plate-digits { font-size: 3rem; }
    
    .plate-card-dubai .plate-city {
        font-size: 1rem;
        padding: 0 6px;
        margin: 0 6px;
    }
    
    .dubai-logo { height: 20px; }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .plate-item { padding: 1rem; }
    
    .plate-item .plate-card {
        max-width: 240px;
        padding: 8px 12px;
    }
    
    .plate-item .plate-card .plate-prefix-letter,
    .plate-item .plate-card .plate-digits {
        font-size: 1.6rem;
    }
    
    .plate-item .plate-card .plate-city { font-size: 0.9rem; }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .section-subtitle { font-size: 1rem; }
    
    .nav-container { padding: 0.8rem; }
    .logo-text { font-size: 1.3rem; }
    .nav-links { font-size: 0.9rem; }
    
    .collection { padding: 2rem 1rem; }
    .about { padding: 4rem 1rem; }
    .contact { padding: 4rem 1rem; }
    
    .about-plate-showcase { height: 250px; }
    
    .about-plate-card {
        max-width: 260px;
        padding: 10px 15px;
    }
    
    .about-plate-card .plate-prefix-letter {
        font-size: 2.5rem;
        margin-right: 5px;
    }
    
    .about-plate-card .plate-digits { font-size: 3rem; }
    
    .about-plate-card .plate-city {
        padding: 0 5px;
        margin: 0 5px;
    }
    
    .about-plate-card .dubai-logo { height: 20px; }
    
    .contact-methods { grid-template-columns: 1fr; }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon svg {
        width: 20px;
        height: 20px;
    }
}