/* ============================================================
   Dezmembrari Tuk E36 — Modern 2026 Design
   ============================================================ */

:root {
    /* Paleta BMW + M Technic */
    --bmw-gray-50: #FAFAFA;
    --bmw-gray-100: #F2F2F2;
    --bmw-gray-200: #E5E5E5;
    --bmw-gray-300: #D4D4D4;
    --bmw-gray-400: #A3A3A3;
    --bmw-gray-500: #737373;
    --bmw-gray-600: #525252;
    --bmw-gray-700: #404040;
    --bmw-gray-800: #262626;
    --bmw-gray-900: #171717;

    --bmw-blue: #0066B1;
    --bmw-blue-dark: #004E8A;
    --bmw-blue-light: #009ADA;
    --bmw-blue-glow: rgba(0, 154, 218, 0.4);

    --m-red: #E60012;
    --m-light-blue: #009ADA;
    --m-dark-blue: #0066B1;

    --bmw-white: #FFFFFF;
    --bmw-black: #0A0A0A;

    --success: #059669;
    --danger: #DC2626;
    --warning: #D97706;

    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.07), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 60px rgba(0,102,177,0.15);

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bmw-gray-800);
    background: var(--bmw-gray-100);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ---------- M Stripes ---------- */
.m-stripes {
    display: inline-flex;
    gap: 3px;
    height: 5px;
    width: 60px;
}
.m-stripes span { flex: 1; border-radius: 3px; }
.m-stripes span:nth-child(1) { background: var(--m-light-blue); }
.m-stripes span:nth-child(2) { background: var(--m-dark-blue); }
.m-stripes span:nth-child(3) { background: var(--m-red); }

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(242,242,242,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 1.3rem;
}

.logo-mark {
    background: var(--bmw-black);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--m-light-blue), var(--m-dark-blue), var(--m-red));
}

.logo-text span { color: var(--bmw-blue); }

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: var(--bmw-white);
    border: 1px solid var(--bmw-gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--bmw-gray-800);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; }
.nav-toggle span:nth-child(3) { width: 40%; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

.main-nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--bmw-white);
    border-bottom: 1px solid var(--bmw-gray-200);
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-xl);
}

.main-nav.open { display: flex; }

.main-nav a {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    color: var(--bmw-gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav a:hover { color: var(--bmw-blue); background: var(--bmw-gray-100); }

.nav-cta {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--bmw-blue);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
}

/* ---------- WhatsApp Sticky ---------- */
.whatsapp-sticky {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 1100;
    width: 64px; height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--bmw-black);
    color: var(--bmw-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(0,102,177,0.3) 100%);
    z-index: 1;
}

.hero-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--m-light-blue) 33%, var(--m-dark-blue) 33%, var(--m-dark-blue) 66%, var(--m-red) 66%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 5rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--bmw-blue-light);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.hero h1 em {
    color: var(--bmw-blue-light);
    font-style: normal;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 560px;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--bmw-blue-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bmw-blue) 0%, var(--bmw-blue-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,102,177,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,102,177,0.5);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.15);
}

.btn-large { width: 100%; padding: 1.1rem 1.5rem; }

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-heading {
    margin-bottom: 3rem;
    max-width: 720px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--bmw-blue);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--bmw-gray-800);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-desc {
    color: var(--bmw-gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--bmw-gray-800);
    color: var(--bmw-white);
    padding: 3rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bmw-blue-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- Despre ---------- */
.despre { background: var(--bmw-white); }

.about-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--m-light-blue), var(--m-dark-blue), var(--m-red));
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    background: var(--bmw-gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--m-red);
}

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

.about-cards {
    display: grid;
    gap: 1rem;
}

.about-card {
    background: var(--bmw-gray-50);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--bmw-gray-200);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--bmw-gray-300);
}

.about-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--bmw-gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card h3::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bmw-blue);
}

.about-card p {
    color: var(--bmw-gray-500);
    font-size: 0.9rem;
}

/* ---------- Process ---------- */
.process {
    background: var(--bmw-gray-100);
}

.process-grid {
    display: grid;
    gap: 1.5rem;
}

.process-card {
    background: var(--bmw-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bmw-gray-200);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.process-number {
    width: 48px; height: 48px;
    background: var(--bmw-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--bmw-gray-800);
}

.process-card p {
    color: var(--bmw-gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- Trust / Guarantees ---------- */
.trust {
    background: var(--bmw-gray-800);
    color: var(--bmw-white);
}

.trust .section-kicker { color: var(--bmw-blue-light); }
.trust .section h2 { color: var(--bmw-white); }
.trust .section-desc { color: rgba(255,255,255,0.7); }

.trust-grid {
    display: grid;
    gap: 1.5rem;
}

.trust-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.trust-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px; height: 56px;
    background: rgba(0,102,177,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--bmw-blue-light);
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--bmw-white);
}

.trust-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bmw-white); }

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bmw-gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bmw-gray-200);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--warning);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    color: var(--bmw-gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--bmw-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    color: var(--bmw-gray-800);
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--bmw-gray-500);
}

/* ---------- Premium ---------- */
.premium { background: var(--bmw-gray-100); }

.premium-grid {
    display: grid;
    gap: 1.5rem;
}

.premium-card {
    background: var(--bmw-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--bmw-gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.premium-image {
    height: 220px;
    background: var(--bmw-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmw-gray-400);
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
}

.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.premium-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--m-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.premium-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bmw-blue);
    margin-bottom: 0.5rem;
}

.premium-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bmw-gray-800);
}

.premium-desc {
    font-size: 0.9rem;
    color: var(--bmw-gray-500);
    margin-bottom: 1.25rem;
    flex: 1;
}

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

.premium-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--bmw-gray-800);
}

.premium-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(5,150,105,0.1);
    color: var(--success);
}

.premium-status.out { background: rgba(220,38,38,0.1); color: var(--danger); }
.premium-status.order { background: rgba(217,119,6,0.1); color: var(--warning); }

/* ---------- Prices ---------- */
.preturi { background: var(--bmw-white); }

.price-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bmw-gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--bmw-gray-200);
}

.category-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--bmw-gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bmw-white);
    color: var(--bmw-gray-800);
    font-weight: 600;
}

.price-count {
    font-size: 0.9rem;
    color: var(--bmw-gray-500);
    font-weight: 500;
}

.price-accordion {
    display: grid;
    gap: 1rem;
}

.price-group {
    background: var(--bmw-gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--bmw-gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.price-group:hover { box-shadow: var(--shadow-md); }

.price-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    background: var(--bmw-white);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bmw-gray-800);
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.price-group.open .price-group-header { border-bottom-color: var(--bmw-gray-200); }

.price-group-header:hover { background: var(--bmw-gray-50); }

.price-group-header .chevron {
    transition: transform var(--transition);
    color: var(--bmw-blue);
}

.price-group.open .chevron { transform: rotate(180deg); }

.price-group-body { display: none; }
.price-group.open .price-group-body { display: block; }

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--bmw-gray-200);
}

.price-table th {
    background: var(--bmw-gray-100);
    font-weight: 700;
    color: var(--bmw-gray-600);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .price {
    font-weight: 800;
    color: var(--bmw-gray-800);
    white-space: nowrap;
}

.price-table .status { font-size: 0.75rem; font-weight: 700; }
.price-table .status.in-stock { color: var(--success); }
.price-table .status.out-of-stock { color: var(--danger); }
.price-table .status.order { color: var(--warning); }

/* ---------- FAQ ---------- */
.faq { background: var(--bmw-gray-100); }

.faq .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.faq .section-kicker { justify-content: center; }

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bmw-white);
    border-radius: var(--radius);
    border: 1px solid var(--bmw-gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bmw-gray-800);
    cursor: pointer;
    text-align: left;
}

.faq-header:hover { background: var(--bmw-gray-50); }

.faq-header .chevron {
    transition: transform var(--transition);
    color: var(--bmw-blue);
}

.faq-item.open .chevron { transform: rotate(180deg); }

.faq-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--bmw-gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.open .faq-body { display: block; }

/* ---------- Gallery ---------- */
.galerie { background: var(--bmw-white); }

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bmw-gray-200);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-placeholder {
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: var(--bmw-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmw-gray-400);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
}

/* ---------- CTA WhatsApp ---------- */
.cta-whatsapp {
    background: linear-gradient(135deg, var(--bmw-black) 0%, var(--bmw-gray-800) 100%);
    color: var(--bmw-white);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,154,218,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--bmw-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ---------- Contact ---------- */
.contact { background: var(--bmw-gray-100); }

.contact-grid {
    display: grid;
    gap: 3rem;
}

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

.contact-card {
    background: var(--bmw-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--bmw-gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--bmw-blue);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bmw-gray-400);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.contact-card p,
.contact-card a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bmw-gray-800);
}

.contact-card a:hover { color: var(--bmw-blue); }

.contact-form-wrap {
    background: var(--bmw-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bmw-gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--bmw-gray-800);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bmw-gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid var(--bmw-gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bmw-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bmw-blue);
    box-shadow: 0 0 0 4px rgba(0,102,177,0.1);
}

.btn-submit { width: 100%; }

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.4em;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.loading {
    color: var(--bmw-gray-400);
    font-size: 0.95rem;
    padding: 1rem 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bmw-gray-900);
    color: var(--bmw-gray-400);
    padding: 3rem 0;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--m-light-blue), var(--m-dark-blue), var(--m-red)) 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--bmw-white);
    letter-spacing: -0.03em;
}

.footer-logo span { color: var(--bmw-blue-light); }

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

.footer-links a {
    color: var(--bmw-gray-400);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition);
}

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

.site-footer p {
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
    .container { padding: 0 2rem; }

    .nav-toggle { display: none; }

    .main-nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        padding: 0;
        gap: 0.5rem;
        box-shadow: none;
        border-bottom: none;
        background: transparent;
    }

    .main-nav a {
        border-bottom: none;
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }

    .nav-cta {
        margin-top: 0;
        margin-left: 0.5rem;
        padding: 0.5rem 1.25rem;
    }

    .hero h1 { font-size: 4.5rem; }
    .hero-lead { font-size: 1.35rem; }

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

    .section { padding: 7rem 0; }
    .section h2 { font-size: 3rem; }

    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat-number { font-size: 3.5rem; }

    .about-layout { grid-template-columns: 1fr 1fr; }
    .about-image img { height: 100%; min-height: 500px; }
    .about-cards { grid-template-columns: repeat(2, 1fr); }

    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .premium-grid { grid-template-columns: repeat(2, 1fr); }

    .price-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .category-select { width: auto; min-width: 320px; }

    .gallery-grid { grid-template-columns: repeat(4, 1fr); }

    .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }

    .btn-large { width: auto; }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .premium-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== EDITOR VIZUAL ========== */
#editorToolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    color: #fff;
    border-bottom: 3px solid var(--bmw-blue);
}

.editor-toolbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.editor-badge {
    background: var(--m-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.editor-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.editor-group label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.editor-group input[type="color"] {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: none;
    padding: 0;
}

.editor-actions { margin-left: auto; }

.editor-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.editor-btn:hover { background: rgba(255,255,255,0.2); }

.editor-btn-save {
    background: var(--bmw-blue);
    border-color: var(--bmw-blue);
}

.editor-btn-save:hover { background: var(--bmw-blue-dark); }

.editor-status {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    min-height: 1.2em;
}

/* Toolbar-ul împinge conținutul în jos în edit mode */
body.edit-mode { padding-top: 52px; }
body.edit-mode .site-header { top: 52px; }

.editor-editable {
    outline: 2px dashed rgba(0,102,177,0.4);
    outline-offset: 4px;
    cursor: text;
    transition: outline-color var(--transition);
}

.editor-editable:hover { outline-color: rgba(0,102,177,0.7); }
.editor-editing { outline: 2px solid var(--bmw-blue) !important; background: rgba(0,102,177,0.06); }

.editor-image {
    outline: 2px dashed rgba(230,0,18,0.5);
    outline-offset: -2px;
}

.editor-image:hover { outline: 2px solid var(--m-red); }

.editor-section { position: relative; }

.editor-section-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.35rem;
    z-index: 100;
}

.editor-section-controls .editor-btn {
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(6px);
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
