/* =============================================
   SOMIAL CONSTRUCT - Stylesheet
   Compatibil PHP 7.4 / CSS3
   ============================================= */

/* =============================================
   LOGO SPLASH OVERLAY
   ============================================= */
@keyframes splashFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes splashLogoIn {
    from { opacity: 0; transform: scale(.82) translateY(18px); }
    to   { opacity: 1; transform: scale(1)  translateY(0);     }
}
@keyframes splashSloganIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes sloganWave {
    0%, 100% { color: #ffffff; text-shadow: 0 0 0 transparent; }
    50%       { color: #E8A020; text-shadow: 0 0 24px rgba(232,160,32,.55); }
}
@keyframes splashActionsIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

#logo-splash {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3000;
    background: rgba(8, 18, 40, .97);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
#logo-splash.open {
    opacity: 1;
    pointer-events: all;
    animation: splashFadeIn .35s ease forwards;
}

.splash-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.7);
    font-size: 1.6rem;
    line-height: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.splash-close:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    transform: rotate(90deg);
}

.splash-inner {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 540px;
    width: 90%;
}

.splash-logo-wrap {
    margin-bottom: 2rem;
}
.splash-logo {
    width: clamp(120px, 45vw, 280px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 28px rgba(232,160,32,.45));
    animation: splashLogoIn .55s cubic-bezier(.22,.61,.36,1) .1s both,
               logoFloat 4s ease-in-out 0.9s infinite;
}

.splash-slogan {
    font-size: clamp(.95rem, 4.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.55;
    margin: 0 auto 1.75rem;
    color: #ffffff;
    animation: splashSloganIn .55s ease .35s both,
               sloganWave 3s ease-in-out 1s infinite;
}

.splash-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E8A020, transparent);
    margin: 0 auto 1.75rem;
    border-radius: 2px;
    opacity: .7;
    animation: splashActionsIn .5s ease .55s both;
}

.splash-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: splashActionsIn .5s ease .65s both;
}

.splash-btn {
    display: inline-block;
    padding: .7rem 1.6rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .03em;
    transition: transform .2s, box-shadow .2s;
}
.splash-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

.splash-btn-primary {
    background: #E8A020;
    color: #0a1424;
}
.splash-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}
.splash-btn-outline:hover { border-color: #E8A020; color: #E8A020; }

/* =============================================
   ISO 9001 BADGE & CERT MODAL
   ============================================= */
.iso-badge {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: .6rem;
    opacity: .9;
    transition: opacity .2s, transform .2s;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.iso-badge:hover { opacity: 1; transform: scale(1.05); }
.iso-badge img { height: 40px; width: auto; display: block; }

.cert-modal-inner {
    max-width: 680px !important;
}
.cert-modal-body {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 1.5rem;
}
.cert-logo-wrap {
    flex-shrink: 0;
    width: 130px;
}
.cert-logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 8px;
    background: #fff;
}
.cert-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 .75rem;
}
.cert-info p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: .6rem;
}
.cert-info p:last-of-type { margin-bottom: 1rem; }
.cert-downloads {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.cert-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    padding: .55rem 1.1rem;
}
.cert-dl-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 560px) {
    .cert-modal-body { flex-direction: column; align-items: center; }
    .cert-logo-wrap { width: 100px; }
}

/* =============================================
   EXPERTIZE TEHNICE SECTION
   ============================================= */
.et-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.et-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--navy), #E8A020, var(--navy));
}
.et-section .section-header { margin-bottom: 2.5rem; }
.et-section .section-header strong { color: var(--navy); }

.et-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 1024px) { .et-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .et-grid { grid-template-columns: 1fr; } }

.et-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 1.75rem 1.4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.et-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E8A020, #ffd77a);
}
.et-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(10,20,44,.18); }

.et-icon {
    width: 48px; height: 48px;
    background: rgba(232,160,32,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
}
.et-icon svg { width: 24px; height: 24px; stroke: #E8A020; }

.et-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .6rem;
}
.et-card p {
    font-size: .875rem;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin: 0;
}

.et-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    background: #f0f4f8;
    border-radius: 12px;
    border-left: 4px solid #E8A020;
}
.et-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy);
}
.et-badge svg { width: 18px; height: 18px; stroke: #E8A020; flex-shrink: 0; }
.et-cta {
    margin-left: auto;
    white-space: nowrap;
    text-decoration: none;
}
@media (max-width: 700px) {
    .et-badges { flex-direction: column; align-items: flex-start; }
    .et-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* =============================================
   ANGAJARI SECTION
   ============================================= */
.angajari-section {
    background: var(--navy);
    color: #fff;
}
.angajari-section .section-tag { background: rgba(232,160,32,.2); color: #E8A020; }
.angajari-section .section-header h2 { color: #fff; }
.angajari-section .section-sub { color: rgba(255,255,255,.75); }
.angajari-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}
.angajari-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.angajari-info p { color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.check-list-light { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.check-list-light li { color: rgba(255,255,255,.85); font-size: .9rem; padding-left: 1.4rem; position: relative; }
.check-list-light li::before { content: '✓'; position: absolute; left: 0; color: #E8A020; font-weight: 700; }
.angajari-pozitii { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.angajari-pozitii h4 { color: #E8A020; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.pozitie-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: .6rem .9rem;
}
.pozitie-ico { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.pozitie-item strong { display: block; color: #fff; font-size: .9rem; }
.pozitie-item span { color: rgba(255,255,255,.6); font-size: .8rem; }
.angajari-form-wrap {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.angajari-form-wrap h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }
.angajari-form .form-group label { color: rgba(255,255,255,.9); }
.angajari-form .form-group input,
.angajari-form .form-group select,
.angajari-form .form-group textarea {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.angajari-form .form-group input::placeholder,
.angajari-form .form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.angajari-form .form-group input:focus,
.angajari-form .form-group select:focus,
.angajari-form .form-group textarea:focus {
    border-color: #E8A020;
    background: rgba(255,255,255,.12);
}
.angajari-form .form-group select option { background: var(--navy); color: #fff; }
.file-upload-wrap { position: relative; }
.file-upload-wrap input[type="file"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.file-upload-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: rgba(255,255,255,.04);
}
.file-upload-label:hover { border-color: #E8A020; background: rgba(232,160,32,.08); }
.file-upload-label svg { width: 20px; height: 20px; flex-shrink: 0; color: #E8A020; }
.file-note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .35rem; }
@media (max-width: 900px) {
    .angajari-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =============================================
   EXPERTIZA POPUP
   ============================================= */
.expertiza-popup {
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(5,10,20,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.expertiza-popup.open {
    opacity: 1;
    pointer-events: all;
}
.expertiza-popup-inner {
    background: #fff;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    transform: translateY(18px);
    transition: transform .28s ease;
}
.expertiza-popup.open .expertiza-popup-inner {
    transform: translateY(0);
}
.expertiza-popup-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f4f8;
}
.expertiza-popup-ico {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.expertiza-popup-head h4 {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f2644;
    margin: 0;
}
.expertiza-popup-body {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.expertiza-popup-body li {
    position: relative;
    padding-left: 1.1rem;
    color: #4a5568;
    font-size: .93rem;
    line-height: 1.7;
}
.expertiza-popup-body li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: .05em;
    color: #E8A020;
    font-size: .85rem;
}
.expertiza-popup-body strong {
    color: #0f2644;
    font-weight: 600;
}
[data-expertiza] {
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.lucrare-card[data-expertiza]:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.eficienta-banner[data-expertiza]:hover {
    opacity: .9;
}

/* =============================================
   MAP MODAL
   ============================================= */
.map-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 20, 40, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    backdrop-filter: blur(5px);
}
.map-modal.open {
    opacity: 1;
    pointer-events: all;
}
.map-modal-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: min(94vw, 1020px);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0,0,0,.45);
    transform: translateY(20px) scale(.97);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.map-modal.open .map-modal-inner {
    transform: translateY(0) scale(1);
}
.map-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--navy-dark);
    flex-shrink: 0;
}
.map-modal-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.map-modal-header h3 span {
    color: var(--gold);
}
.map-close {
    background: rgba(255,255,255,.12);
    border: none;
    color: var(--white);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}
.map-close:hover { background: rgba(255,255,255,.28); }
.map-legend {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 10px 24px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.map-legend-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 4px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--gray-600);
    font-weight: 500;
}
.leg-pin {
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;
}
.leg-pin.lg { width: 18px; height: 18px; background: #E8A020; border: 2.5px solid #b8740e; }
.leg-pin.sm { width: 11px; height: 11px; background: #1a3a5c; border: 1.5px solid #0f2440; }

#somial-map {
    flex: 1;
    min-height: 440px;
}

/* Leaflet tooltip overrides */
.somial-tip {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.18) !important;
    color: var(--navy-dark) !important;
    white-space: nowrap;
}
.somial-tip.leaflet-tooltip-top::before {
    border-top-color: white !important;
}

/* Visual card - clickable state */
.visual-card {
    cursor: pointer;
    transition: var(--transition), opacity .2s;
    position: relative;
}
.visual-card:hover {
    opacity: .88;
    transform: scale(1.01);
}
.visual-card .map-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    font-weight: 400;
}
.visual-card .map-hint::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 2px solid rgba(255,255,255,.5);
    border-bottom: 2px solid rgba(255,255,255,.5);
    transform: rotate(-45deg);
    margin-top: 1px;
}

@media (max-width: 768px) {
    .map-legend { gap: 16px; flex-wrap: wrap; }
    #somial-map { min-height: 320px; }
}

/* =============================================
   PARTNERS MODAL
   ============================================= */
.partners-modal-inner {
    width: min(96vw, 900px);
    max-height: 85vh;
}
.partners-grid-wrap {
    flex: 1;
    overflow-y: auto;
    padding: 32px 28px;
    background: var(--off-white);
}
.partners-cat-heading {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: .35rem;
    margin: 1.5rem 0 1rem;
}
.partners-cat-heading:first-child { margin-top: 0; }
.partners-cat-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: .5rem;
}
.partners-header-sub {
    text-align: center;
    font-size: .88rem;
    color: var(--gray-400);
    margin-bottom: 28px;
    font-style: italic;
}
#partners-logo-grid {
    display: block;
}
.partner-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    min-height: 110px;
    justify-content: center;
}
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.partner-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
}
.partner-img-wrap img {
    height: 52px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}
.partner-favicon {
    height: 48px !important;
    width: 48px !important;
    border-radius: 8px;
    image-rendering: -webkit-optimize-contrast;
}
.partner-badge {
    width: 100%;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: .02em;
}
.partner-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-400);
    text-align: center;
    white-space: nowrap;
}

/* Trigger button in parteneri section */
.btn-partners-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 26px;
    background: var(--navy-dark);
    color: var(--white);
    border: 2px solid var(--navy-dark);
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-partners-trigger:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,160,32,.35);
}
.btn-partners-trigger svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .partners-cat-group { gap: 10px; }
    .partners-grid-wrap { padding: 20px 16px; }
}
@media (max-width: 400px) {
    .partners-cat-group { gap: 10px; }
}

/* =============================================
   GALLERY LIGHTBOX
   ============================================= */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(5, 10, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.gallery-modal.open {
    opacity: 1;
    pointer-events: all;
}
.gallery-modal-inner {
    width: min(96vw, 1000px);
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: scale(.96);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.gallery-modal.open .gallery-modal-inner { transform: scale(1); }

.gallery-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 14px;
}
.gallery-title-wrap h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.gallery-title-wrap p {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}

.gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    max-height: 56vh;
}
.gallery-img-wrap {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease;
    user-select: none;
}
.gallery-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0d1a2a;
    color: rgba(255,255,255,.3);
}
.gallery-img-placeholder svg { width: 48px; height: 48px; }
.gallery-img-placeholder span { font-size: .85rem; }

.gallery-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.55);
    border: none;
    color: var(--white);
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, opacity .2s;
    backdrop-filter: blur(4px);
}
.gallery-nav:hover { background: rgba(232,160,32,.8); }
.gallery-nav svg { width: 22px; height: 22px; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-caption {
    text-align: center;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    padding: 10px 0 6px;
    min-height: 32px;
    font-style: italic;
}
.gallery-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 4px 0 8px;
}
.gthumb {
    width: 68px; height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: #111;
    transition: border-color .2s, transform .2s;
    flex-shrink: 0;
}
.gthumb:hover { transform: scale(1.06); }
.gthumb.active { border-color: var(--gold); }
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-counter {
    text-align: center;
    font-size: .78rem;
    color: rgba(255,255,255,.3);
    padding-bottom: 4px;
}

/* Service cards — clickable cursor + hint */
.serviciu-card[data-gallery] {
    cursor: pointer;
}
.serviciu-card[data-gallery] .serviciu-gallery-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--gold-dark);
    margin-top: 8px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .2s;
}
.serviciu-card[data-gallery]:hover .serviciu-gallery-hint { opacity: 1; }
.serviciu-card[data-gallery] .serviciu-gallery-hint svg {
    width: 13px; height: 13px; flex-shrink: 0;
}

@media (max-width: 600px) {
    .gallery-stage { aspect-ratio: 4/3; max-height: 50vh; }
    .gthumb { width: 52px; height: 36px; }
    .gallery-nav { width: 36px; height: 36px; }
}

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

:root {
    --navy:       #1a3a5c;
    --navy-dark:  #0f2440;
    --navy-light: #254d7a;
    --gold:       #E8A020;
    --gold-dark:  #c98410;
    --gold-light: #f5c060;
    --white:      #ffffff;
    --off-white:  #f7f8fa;
    --gray-100:   #f2f4f7;
    --gray-200:   #e4e7ed;
    --gray-400:   #9aa3b2;
    --gray-600:   #5a6370;
    --gray-800:   #2c3340;
    --text:       #1e2530;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 20px rgba(26,58,92,.10);
    --shadow-lg:  0 12px 48px rgba(26,58,92,.16);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,160,32,.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAVBAR
   ============================================= */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar {
    padding: 18px 0;
    transition: var(--transition);
}
#header.scrolled .navbar {
    background: rgba(15,36,64,.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
    transition: var(--transition);
}
#header.scrolled .nav-logo img { height: 42px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.btn-nav {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
}
.btn-nav:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,160,32,.4);
}
.btn-nav-alt {
    background: transparent !important;
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    font-weight: 700 !important;
}
.btn-nav-alt:hover {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    box-shadow: 0 4px 16px rgba(232,160,32,.4);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232,160,32,.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(15,36,64,.3));
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 24px 80px;
    max-width: 760px;
}
.hero-badge {
    display: inline-block;
    background: rgba(232,160,32,.2);
    border: 1px solid rgba(232,160,32,.4);
    color: var(--gold-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 16px;
}
.hero-content h1 .highlight { color: var(--gold); }
.hero-subtitle {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    letter-spacing: .03em;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    animation: bounce 2s infinite;
}
.hero-scroll a span {
    display: block;
    width: 8px; height: 8px;
    border-right: 2px solid rgba(255,255,255,.7);
    border-bottom: 2px solid rgba(255,255,255,.7);
    transform: rotate(45deg) translate(-2px,-2px);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTIONS - generic
   ============================================= */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,.7); }

.section-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.expertiza-section .section-tag { background: rgba(232,160,32,.85); }
.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
}

/* =============================================
   DESPRE NOI
   ============================================= */
.despre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.despre-text .lead {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 20px;
}
.despre-text p { color: var(--gray-600); margin-bottom: 16px; }
.certif-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    border: 1px solid var(--gray-200);
}
.badge-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }
a.badge-item {
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .18s;
    cursor: pointer;
}
a.badge-item:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(10,20,44,.15);
}
a.badge-item:hover svg { color: var(--gold); }

.despre-visual { display: flex; flex-direction: column; gap: 16px; }
.visual-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: .9rem;
    font-weight: 500;
    text-align: center;
}
.visual-icon svg { width: 80px; height: 80px; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.info-card.accent { background: var(--navy-dark); border-color: var(--navy-dark); }
.info-card.accent strong,
.info-card.accent span { color: var(--white); }
.info-card strong { display: block; font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 4px; }
.info-card span { font-size: .75rem; color: var(--gray-400); }

/* =============================================
   SERVICII
   ============================================= */
.servicii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.serviciu-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.serviciu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.serviciu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.serviciu-card:hover::before { transform: scaleX(1); }
.serviciu-icon {
    width: 52px; height: 52px;
    background: var(--navy-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}
.serviciu-card:hover .serviciu-icon { background: var(--gold); }
.serviciu-icon svg { width: 26px; height: 26px; stroke: var(--white); transition: var(--transition); }
.serviciu-card:hover .serviciu-icon svg { stroke: var(--navy-dark); }
.serviciu-tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    display: block;
}
.serviciu-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.serviciu-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   EXPERTIZA
   ============================================= */
.expertiza-section {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.expertiza-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(232,160,32,.08) 0%, transparent 70%);
}
.expertiza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}
.lucrare-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.lucrare-card:hover {
    background: rgba(255,255,255,.13);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.lucrare-ico { font-size: 2.4rem; margin-bottom: 12px; }
.lucrare-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lucrare-card p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.eficienta-banner {
    background: rgba(232,160,32,.15);
    border: 1px solid rgba(232,160,32,.35);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}
.eficienta-icon {
    width: 60px; height: 60px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.eficienta-icon svg { width: 30px; height: 30px; stroke: var(--navy-dark); }
.eficienta-banner h3 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 8px; }
.eficienta-banner p { color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.65; }

/* =============================================
   PARTENERI
   ============================================= */
.parteneri-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.quote-block {
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
    position: relative;
}
.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    font-family: Georgia, serif;
}
.quote-block p { font-size: 1.02rem; line-height: 1.7; padding-top: 24px; color: rgba(255,255,255,.9); }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--gray-600);
}
.check-list li::before {
    content: '';
    display: block;
    width: 20px; height: 20px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a5c' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.parteneri-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.big-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.big-stat:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.big-stat.accent { background: var(--navy-dark); border-color: var(--navy-dark); }
.big-stat.accent .big-num,
.big-stat.accent .big-label { color: var(--white); }
.big-stat.accent .big-label { color: rgba(255,255,255,.6); }
.big-num { font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.big-label { font-size: .9rem; color: var(--gray-600); font-weight: 500; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3,
.contact-form-wrap h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
    width: 44px; height: 44px;
    background: var(--navy-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-item strong { display: block; font-size: .82rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-item p { font-size: .95rem; color: var(--text); line-height: 1.5; }
.contact-item a { color: var(--navy); font-weight: 600; }
.contact-item a:hover { color: var(--gold-dark); }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy-dark); }
.form-group label span { color: var(--gold-dark); }
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .93rem;
    font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.75);
    padding: 64px 0 0;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer h4 { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul,
.footer-servicii ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-servicii li { font-size: .9rem; color: rgba(255,255,255,.55); }
.footer-contact p { font-size: .9rem; margin-bottom: 8px; }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232,160,32,.5);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; stroke: var(--navy-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .servicii-grid { grid-template-columns: repeat(2, 1fr); }
    .expertiza-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* Nav mobile */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(15,36,64,.98);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0,0,0,.3);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; border-radius: 8px; width: 100%; }

    .hero-content { padding: 110px 24px 60px; }
    .hero-stats { gap: 24px; }

    .despre-grid { grid-template-columns: 1fr; gap: 40px; }
    .certif-badges { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: repeat(3, 1fr); }

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

    .parteneri-content { grid-template-columns: 1fr; }
    .parteneri-stats { flex-direction: row; flex-wrap: wrap; }
    .big-stat { flex: 1 1 45%; }

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

    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }

    .eficienta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .info-cards { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .parteneri-stats .big-stat { flex: 1 1 100%; }
}
