/* ============================================
   EXPERT TRANSPORT — style.css
   Premium Moving & Transport Services Theme
   Inspired by expertmutari.ro (High-Contrast Orange & Dark Charcoal)
   ============================================ */

:root {
    --primary: #FF6B00;
    /* Portocaliu aprins, specific pentru servicii de transport/mutări */
    --primary-hover: #E05E00;
    /* Portocaliu închis pentru stări de hover */
    --secondary: #0F172A;
    /* Charcoal/Bleu-marin foarte închis pentru accente și navbar */
    --bg-main: #F8FAFC;
    /* Fundal general curat și luminos */
    --bg-sec: #F1F5F9;
    /* Fundal secundar pentru alternarea secțiunilor */
    --white: #FFFFFF;
    /* Alb pur pentru carduri și elemente izolate */
    --text-main: #1E293B;
    /* Text principal închis, contrast excelent și lizibilitate */
    --text-muted: #64748B;
    /* Text secundar/ajutător gri stins */
    --whatsapp: #25D366;
    /* Verde nativ WhatsApp pentru butonul flotant */
    --radius: 12px;
    /* Rotunjire modernă și profesională */
    --radius-sm: 8px;
    --nav-h: 80px;
    /* Înălțime navbar confortabilă */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}

/* RESET GENERAL */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

/* Ascundem canvas-ul de zăpadă deoarece site-ul este acum pentru transport/mutări */
#snowCanvas {
    display: none !important;
}

/* ============================================
   EORAN DE ÎNCĂRCARE (LOADER)
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    animation: bounceLoader 1.5s infinite alternate;
}

.loader-icon svg circle,
.loader-icon svg line {
    stroke: var(--primary) !important;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
}

@keyframes bounceLoader {
    to {
        transform: translateY(-15px);
    }
}

/* ============================================
   NAVBAR & LOGO
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

#navbar.scrolled {
    background: var(--secondary);
    box-shadow: var(--shadow-md);
    height: 70px;
}

#navbar.scrolled .nav-logo span,
#navbar.scrolled .nav-links a {
    color: var(--white);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
}

.nav-logo strong {
    font-weight: 900;
    color: var(--primary);
}

.nav-snowflake {
    width: 32px;
    height: 32px;
}

/* Refacem iconița ca simbol portocaliu dinamic */
.nav-snowflake line {
    stroke: var(--primary) !important;
    stroke-width: 3px;
}

.nav-snowflake circle {
    fill: var(--primary) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.lang-toggle-li {
    margin-left: 0.5rem;
}

.lang-toggle {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-right {
    display: none;
    align-items: center;
    gap: 15px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 4px;
}

#navbar.scrolled .hamburger span {
    background: var(--white);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   BUTOANE PROFESIONALE
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

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

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

.btn-outline-sm {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-h) + 60px) 6% 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: var(--white);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-img-frame {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.hero-img-frame:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    pointer-events: none;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: scrollAnim 1.6s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

/* ============================================
   STATS BAR (BARĂ STATISTICI)
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 30px 40px;
    margin: -40px 6% 80px;
    position: relative;
    z-index: 20;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
}

.stat-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(15, 23, 42, 0.08);
}

/* ============================================
   SECTIONS STANDARD
   ============================================ */
section {
    padding: 100px 6%;
    position: relative;
}

.section-bg-alt {
    background-color: var(--bg-sec);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICII (SERVICES)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.15);
}

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

.service-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-icon svg rect,
.service-icon svg path,
.service-icon svg circle {
    stroke: var(--primary) !important;
    transition: var(--transition);
}

.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle {
    stroke: var(--white) !important;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   PREȚURI (PRICING)
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

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

.price-card.featured:hover {
    transform: translateY(-5px) scale(1.03);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 30px;
    text-transform: uppercase;
}

.price-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.price-amount {
    margin: 20px 0;
}

.price-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
}

.price-currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 4px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 24px;
    background: var(--bg-sec);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.price-list {
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.price-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    padding-left: 24px;
}

.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* ============================================
   GALERIE FOTO (GALLERY)
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

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

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

/* Adaptare grid pentru a susține aspect asimetric frumos */
.gallery-item.featured-item {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon svg path,
.contact-icon svg circle {
    stroke: var(--primary) !important;
    fill: none;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.contact-card:hover .contact-value {
    color: var(--primary);
}

/* Formularul simplificat sau detalii adiționale */
.contact-extra {
    background: var(--secondary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-extra h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.contact-extra p {
    color: #94A3B8;
    margin-bottom: 24px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.contact-benefits li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* ============================================
   BUTON FLOTANT WHATSAPP
   ============================================ */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0B0F19;
    color: #64748B;
    padding: 40px 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-logo strong {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.9rem;
}

/* ============================================
   REVEAL ANIMATIONS ON SCROLL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ============================================ */
@media (max-width: 1024px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-h) + 40px);
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        margin-top: 20px;
    }

    .hero-badge {
        left: 0;
        bottom: -10px;
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .stat-divider {
        display: none;
    }

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

@media (max-width: 768px) {
    #navbar {
        padding: 0 5%;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 40px 0;
        gap: 2rem;
        transform: translateY(-110%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        height: calc(100vh - var(--nav-h));
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    #navbar.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.1rem;
    }

    .nav-right {
        display: flex;
    }

    .lang-toggle-li {
        display: none;
        /* Ascuns pe mobil în lista standard, toggle-ul se face din nav-right mobile button */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

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

@media (max-width: 580px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .stats-bar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

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

    .gallery-item.featured-item {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-extra {
        padding: 25px;
    }

    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}
