/* ── Reset & Variables ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #C8102E;
    --dark: #1A1614;
    --grey: #3D3D3D;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--grey);
    overflow-x: hidden;
}

/* ── Nav ───────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 68px;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

nav.scrolled {
    background: rgba(26, 22, 20, 0.97);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Fallback logo when no image */
.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
}

.nav-logo-text span {
    color: var(--red);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── Sections shared ───────────────────────────────── */
section {
    padding: 100px 5vw;
}

.section-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: inherit;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.section-title.line-in::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 620px;
    margin-top: 20px;
}

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ── 1. HERO ───────────────────────────────────────── */
#hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 120px 5vw 80px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 16, 46, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(200, 16, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 80px),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 80px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-logo {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.8s var(--ease) 0.1s forwards;
    margin-bottom: 32px;
    width: 100%;              
    display: flex;            
    justify-content: center;  
}

.hero-logo img {
    height: 120px;
    width: auto;
    max-width: 85vw;        
    object-fit: contain;    
    filter: brightness(0) invert(1);
}

/* SVG Fallback logo */
.logo-svg-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-mark {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
}

.logo-wordmark {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo-wordmark span {
    color: var(--red);
}

.logo-tagline-small {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-top: 4px;
}

.hero-badge {
    opacity: 0;
    transform: translateY(16px);
    animation: heroIn 0.7s var(--ease) 0.35s forwards;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.35);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.hero-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.8s var(--ease) 0.5s forwards;
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    max-width: 680px;
    margin-bottom: 12px;
}

.hero-title em {
    font-style: normal;
    color: var(--red);
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(16px);
    animation: heroIn 0.7s var(--ease) 0.7s forwards;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    margin-bottom: 44px;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hero-ctas {
    opacity: 0;
    transform: translateY(14px);
    animation: heroIn 0.7s var(--ease) 0.9s forwards;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease);
}

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

.btn-primary:hover {
    background: #a80c25;
    border-color: #a80c25;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 16, 46, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroIn 0.6s var(--ease) 1.3s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 16, 46, 0.8), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ── 2. DESPRE NOI ─────────────────────────────────── */
#despre {
    background: var(--white);
    color: var(--grey);
}

.despre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.despre-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 16px;
}

.despre-text p strong {
    color: var(--dark);
    font-weight: 800;
}

.key-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.key-card {
    background: var(--light);
    border-left: 4px solid var(--red);
    border-radius: 6px;
    padding: 24px 20px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.key-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.key-card .num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.key-card .label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--grey);
    text-transform: uppercase;
}

/* ── 3. PACHETE ────────────────────────────────────── */
#pachete {
    background: var(--dark);
    color: var(--white);
}

#pachete .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.pachete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pachet-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.pachet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.pachet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 16, 46, 0.3);
}

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

.pachet-card.featured {
    background: rgba(200, 16, 46, 0.1);
    border-color: rgba(200, 16, 46, 0.35);
}

.pachet-card.featured::before {
    transform: scaleX(1);
}

.pachet-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.pachet-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.pachet-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.pachet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.pachet-card.featured .tag {
    background: rgba(200, 16, 46, 0.2);
    color: rgba(255, 160, 160, 0.9);
}

/* ── 4. SERVICII ───────────────────────────────────── */
#servicii {
    background: var(--white);
    color: var(--grey);
}

.servicii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.serviciu-card {
    background: var(--white);
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    padding: 32px 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.serviciu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--red);
}

.serviciu-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.serviciu-icon svg {
    width: 36px;
    height: 36px;
}

.serviciu-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.serviciu-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
}

/* ── 5. DOTARE TEHNICĂ ─────────────────────────────── */
#dotare {
    background: var(--dark);
    color: var(--white);
}

#dotare .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.dotare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.dotare-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}

.dotare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(200, 16, 46, 0.15);
    background: rgba(200, 16, 46, 0.08);
    border-color: rgba(200, 16, 46, 0.25);
}

.dotare-card .d-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.dotare-card .d-icon svg {
    width: 40px;
    height: 40px;
}

.dotare-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.dotare-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ── 6. GALERIE ────────────────────────────────────── */
#galerie {
    background: var(--white);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 60px;
}

.galerie-item {
    background: var(--light);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.galerie-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.galerie-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.galerie-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        linear-gradient(135deg, #f0f0f0 0%, #e4e4e4 100%);
}

.galerie-item:nth-child(1) .galerie-placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

.galerie-placeholder svg {
    opacity: 0.3;
}

.galerie-placeholder span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.galerie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 16, 46, 0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

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

.galerie-overlay span {
    color: white;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.glightbox-desc,
.gdesc-inner,
.gslide-description {
    display: none !important;
}

/* ── 7. CONTACT ────────────────────────────────────── */
#contact {
    background: var(--dark);
    color: var(--white);
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

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

.contact-item-body h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.contact-item-body a,
.contact-item-body p {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item-body a:hover {
    color: var(--red);
}

.contact-map {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.contact-map-placeholder {
    text-align: center;
}

.contact-map-placeholder .map-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.contact-map-placeholder .map-icon svg {
    width: 48px;
    height: 48px;
}

.contact-map-placeholder h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.cert-strip {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.cert-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────── */
footer {
    background: #0e0b0a;
    padding: 24px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

footer .f-logo {
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
}

footer .f-logo span {
    color: var(--red);
}

footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    width: 100%;
    clear: both;
    display: block;
    text-align: center;
    padding: 20px 0;
}

/* ── Gallery Arrow Link ─────────────────────────── */
.galerie-link-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    grid-column: 3 / 5;
    grid-row: 3;
    text-decoration: none;
    color: var(--grey);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease), gap 0.3s var(--ease);
    padding-right: 4px;
}

.galerie-link-arrow:hover {
    color: var(--red);
    gap: 16px;
}

.galerie-link-arrow .arrow-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.galerie-link-arrow:hover .arrow-circle {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ── Footer nou ─────────────────────────────────────────── */
footer {
    background: #0e0b0a;
    padding: 56px 5vw 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .f-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-brand .f-logo span {
    color: var(--red);
}

.footer-brand .f-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}

.footer-brand .f-cui {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.03em;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.25s;
}

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

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 900px) {
    nav {
        padding: 0 6vw;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(26, 22, 20, 0.98);
        flex-direction: column;
        padding: 24px 6vw 32px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav-burger {
        display: flex;
    }

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

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

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

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

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

    .galerie-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    section {
        padding: 72px 6vw;
    }
}

@media (max-width: 540px) {

    #hero {
        padding: 80px 4vw 60px;
    }
    .hero-logo img {
        height: auto;
        width: 85vw;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 5vw, 1.8rem);
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .servicii-grid,
    .dotare-grid,
    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .key-cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.f-social {
    margin-top: 0.75rem;
}

.f-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    opacity: 0.75;
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.f-social a:hover {
    opacity: 1;
}