/* ====================================================
   Stiluri site public Creative Entertainment
   Paleta noua:
   - Primar:       #2F6CAB
   - Primar light: #4690E6
   - Indigo:       #4F46E5
   - Text:         #1F2933
   - Fundal:       #F4F5F7 / #FFFFFF
   ==================================================== */

/* ===========================
   Reset & baza
   =========================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #E2ECFF 0, #F6F7F9 45%, #F3F3F5 100%);
    color: #1F2933;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===========================
   Logo - CEdev
   =========================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 65px;
    }
}

header.site-header {
    padding: 15px 0;
}

/* ===========================
   Header public + meniu
   =========================== */

.site-header {
    background: linear-gradient(120deg, #FFFFFF 0%, #F3F7FF 55%, #E4ECFF 100%);
    border-bottom: 1px solid #D3E0FF;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

/* Layout header: burger + logo + nav + CTA */
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px 0;
}

/* Logo centrat */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 4px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #FFFFFF 0, #2F6CAB 35%, #111827 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.logo-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1F2933;
}

/* Meniu principal (desktop) */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}

/* Fiecare item poate avea dropdown */
.nav-item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

/* Link-uri meniu */
.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: #111827;
    transition: border-color 0.18s ease, color 0.18s ease;
}

/* Item activ (pagina curenta sau copil activ) */
.nav-item.active > .nav-link {
    border-bottom-color: #2F6CAB;
    color: #1F3F7A;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: #2F6CAB;
    color: #1F3F7A;
}

/* Indicator dropdown pentru item cu submeniu */
.nav-item.has-children > .nav-link::after {
    content: ' ▾';
    font-size: 11px;
}

/* Limba / traducere din header */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switch a {
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.lang-switch a.active {
    font-weight: 600;
    opacity: 1;
}

/* Buton CTA din header */
.header-cta {
    justify-self: end;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* Buton burger (mobil) */
.nav-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

/* ===========================
   Dropdown meniu (desktop)
   =========================== */

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    padding-top: 8px;
    display: none;
    z-index: 40;
}

.nav-dropdown-link {
    display: block;
    white-space: nowrap;
    background: #FFFFFF;
    border: 1px solid #E0DFDF;
    border-bottom: none;
    padding: 8px 12px;
    font-size: 13px;
    text-transform: none;
}

.nav-dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-link:last-child {
    border-bottom: 1px solid #E0DFDF;
    border-radius: 0 0 8px 8px;
}

.nav-dropdown-link:hover {
    background: #F3F4F6;
}

/* Afisam dropdown-ul la hover pe desktop */
.nav-item.has-children:hover > .nav-dropdown {
    display: block;
}

/* ===========================
   Continut principal generic
   =========================== */

.site-main {
    padding: 28px 0 40px;
}

.page-section {
    padding: 28px 0;
}

/* Titluri de pagina */
.page-section h1 {
    font-size: 26px;
    margin-bottom: 12px;
}

.page-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Paragrafe introductive */
.section-intro {
    max-width: 720px;
    margin-bottom: 24px;
}

/* ===========================
   Elemente UI globale
   (butoane, carduri, grid-uri)
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
}

/* primar – gradient CEdev */
.btn-primary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2F6CAB, #4690E6);
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
    filter: brightness(1.02);
}

/* outline luminos */
.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #CBD5FF;
    background: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    color: #1F3F7A;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
    background: #EEF2FF;
    border-color: #A5B4FC;
    color: #111827;
}

/* carduri */
.card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.card h2,
.card h3 {
    margin-bottom: 8px;
}

.cards-grid {
    display: grid;
    gap: 16px;
}

/* ===========================
   HOME – sectiunea HERO
   =========================== */

.hero {
    margin-top: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: 28px;
}

.hero-content {
    max-width: 720px;
}

.hero-content p {
    font-size: 15px;
}

.hero-layout {
    display: grid;
    gap: 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #C7D2FE;
    background: linear-gradient(135deg, #EEF3FF, #E0ECFF);
    color: #1F3F7A;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 10px;
}

/* daca avem .hero-text h1 il stilizam discret separat */
.hero-text h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-highlight {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #D7E0F5;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.hero-highlight ul {
    list-style: none;
}

.hero-highlight li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
    font-size: 14px;
}

.hero-highlight li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2F6CAB;
}

/* Bullet list sub butoane, folosita in HERO */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.hero-bullets li::before {
    content: "• ";
}

/* ===========================
   HOME – card lateral & grid
   =========================== */

.hero-side-card {
    background: radial-gradient(circle at top, #EFF4FF 0, #FFFFFF 55%);
    border-radius: 16px;
    border: 1px solid #D7E0F5;
    padding: 14px 18px 18px;
    max-width: 320px;
    margin-left: auto;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.hero-side-card h2 {
    margin-bottom: 6px;
}

.hero-side-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.hero-side-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-side-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.hero-side-icon {
    width: 20px;
    flex-shrink: 0;
}

/* =========================================
 * HERO special pentru pagina Web Hosting
 * ========================================= */
.page-web-hosting .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
    gap: 20px;
}

.page-web-hosting .hero-content {
    max-width: 560px;
}

.page-web-hosting .hero-side-card {
    max-width: 420px;
}

/* ===========================
   HOME – „De ce sa ne alegi”
   si servicii
   =========================== */

.home-section {
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 8px;
}

/* suprascriem putin intro aici pentru home */
.section-intro {
    margin-bottom: 18px;
    opacity: 0.9;
}

/* Grid „De ce sa alegi Creative Entertainment” */
.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.home-feature-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

/* Grid servicii principale */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.home-service-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 16px 18px 18px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.link-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #2F6CAB;
    font-weight: 500;
    transition: color 0.15s ease;
}

.link-more:hover {
    text-decoration: underline;
    color: #1D4ED8;
}

/* =========================================
   Pagini legale (Termeni, Confidentialitate, GDPR)
   ========================================= */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.legal-section {
    margin-bottom: 28px;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.legal-section h3 {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 6px;
}

.legal-list {
    margin: 6px 0 6px 20px;
}

.legal-note {
    font-size: 13px;
    opacity: 0.95;
    padding: 10px 12px;
    border-radius: 8px;
    background: #EEF2FF;
    border: 1px solid #C7D2FE;
    margin-bottom: 20px;
}

/* ===========================
   HOME – cum lucram & CTA
   =========================== */

.home-process-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 18px;
}

.process-step {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.process-badge {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #1D4ED8;
    color: #FFFFFF;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA final pe home */
.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: linear-gradient(135deg, #EEF2FF, #E0F2FE);
    border-radius: 12px;
    border: 1px solid #C7D2FE;
    padding: 12px 16px;
    font-size: 14px;
}

/* ===========================
   HOME – pricing
   =========================== */

.pricing-grid {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.pricing-price {
    margin: 8px 0;
    font-size: 18px;
}

.pricing-amount {
    font-weight: 700;
}

.pricing-period {
    font-size: 13px;
    opacity: 0.8;
}

.pricing-description {
    font-size: 14px;
    margin-bottom: 10px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 10px;
}

.pricing-features li {
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 14px;
    position: relative;
}

.pricing-features li::before {
    content: '–';
    position: absolute;
    left: 0;
}

.pricing-cta {
    margin-top: 6px;
}

/* Web-Hosting - note */
.hosting-note {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.85;
}

/* =========================================
   CONTACT – layout + carduri
   ========================================= */

.contact-section {
}

/* Doua coloane: formular + sidebar */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
    margin-top: 18px;
}

/* Cardul cu formularul */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E0DFDF;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.contact-form-card h2 {
    margin-bottom: 6px;
}

.contact-helper {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 14px;
}

/* Sidebar (date contact, firma, harta) */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid #E0DFDF;
    padding: 14px 16px 16px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.contact-card-map {
    background: #F9FAFB;
}

.contact-small {
    font-size: 12px;
    color: #6B7280;
    margin-top: 6px;
}

/* Lista detalii cu iconita */
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-icon {
    width: 20px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.4;
}

.contact-text strong {
    font-weight: 600;
}

.contact-card a {
    color: #2563EB;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Formularul din contact */
.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #D0D0D1;
    padding: 8px 10px;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
}

/* Nota sub formular */
.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: #6B7280;
}

/* Mesaje succes / eroare */
.alert {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

.alert-success {
    background: #ECFDF3;
    border: 1px solid #4ADE80;
    color: #166534;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

.alert-error ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
}

/* Wrapper pentru iframe harta */
.map-wrapper {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
}

/* =========================================
   Domenii + Whois
   ========================================= */

.domain-page {
}

.domain-search-card {
    margin-top: 20px;
}

.domain-search-helper {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 14px;
}

.domain-search-form {
    margin-top: 6px;
}

.domain-search-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

#domain-name {
    flex: 1;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid #D0D0D1;
    padding: 10px 14px;
    font-size: 14px;
}

/* Mic text nota sub formular */
.domain-form-note {
    margin-top: 8px;
    font-size: 12px;
    color: #6B7280;
}

/* ===============================
   Tabelul de preturi pentru TLD
   =============================== */

.domain-pricing {
    margin-top: 32px;
}

.domain-pricing-table-wrapper {
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    background: #FFFFFF;
    overflow: hidden;
}

.domain-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.domain-pricing-table thead {
    background: #EEF2FF;
}

.domain-pricing-table th,
.domain-pricing-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.domain-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.domain-pricing-table tbody tr:nth-child(even) {
    background: #FAFAFD;
}

.domain-pricing-table td:nth-child(2),
.domain-pricing-table td:nth-child(3),
.domain-pricing-table td:nth-child(4) {
    white-space: nowrap;
}

.domain-pricing-note {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.85;
}

/* ===============================
   Responsive – Pagina domenii
   =============================== */

@media (max-width: 767px) {

    .domain-search-row {
        flex-direction: column;
        align-items: stretch;
    }

    #domain-name {
        border-radius: 999px;
    }

    .domain-pricing-table-wrapper {
        border-radius: 10px;
    }

    .domain-pricing-table th,
    .domain-pricing-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* =========================================
   Pagina WHOIS – afisare rezultat
   ========================================= */

.whois-page {
    margin-top: 24px;
}

.whois-result-card {
    margin-top: 16px;
}

.whois-output {
    max-height: 460px;
    overflow: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    white-space: pre-wrap;
    line-height: 1.4;
}

/* =========================================
   DESPRE NOI – layout premium
   ========================================= */

.about-section {
    margin-top: 24px;
}

.about-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-intro {
    max-width: 760px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* Cine suntem / Misiunea noastra */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.about-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.about-subtitle {
    font-size: 24px;
    margin: 30px 0 14px;
}

/* Valorile noastre */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.value-item {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 18px 18px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 6px;
}

/* Timeline – cum lucram */
.timeline {
    border-left: 2px solid #E0DFDF;
    margin: 10px 0 28px 10px;
    padding-left: 16px;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 16px;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #1D4ED8;
    color: #FFFFFF;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

/* Date firma */
.company-info {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E0DFDF;
    padding: 18px 20px;
    max-width: 520px;
    margin-bottom: 26px;
}

/* CTA final de pe „Despre noi” */
.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #EEF2FF, #E0F2FE);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid #C7D2FE;
}

.about-cta-text h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.about-cta-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===========================
   Footer – layout multi-coloana
   =========================== */

.site-footer {
    border-top: 1px solid #D1D5DB;
    background: radial-gradient(circle at top, #E5ECFF 0, #F9FAFB 55%, #FFFFFF 100%);
    padding: 24px 0 18px;
    font-size: 13px;
    color: #111827;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Grid principal cu coloanele din footer */
.footer-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: flex-start;
}

.footer-col {
    min-width: 0;
}

.footer-col-brand {
    max-width: 360px;
}

.footer-brand {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.footer-sub {
    opacity: 0.9;
    margin-bottom: 6px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: #2563EB;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Zona de jos: firma, nota GDPR, copyright */
.footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding-top: 10px;
    margin-top: 4px;
    text-align: left;
}

.footer-company,
.footer-legal-note,
.footer-copy {
    margin-bottom: 4px;
    opacity: 0.85;
}

.footer-copy {
    opacity: 0.7;
}

.footer-bottom a {
    color: #2563EB;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===============================
   Footer Social Icons
   =============================== */

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.footer-social a img {
    width: 26px;
    height: 26px;
    opacity: 0.85;
    transition: 0.2s ease-in-out;
}

.footer-social a img:hover {
    opacity: 1;
    transform: scale(1.12);
}

/* ===========================
   Footer – responsive
   =========================== */

@media (max-width: 991px) {
    .footer-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .footer-cols {
        grid-template-columns: minmax(0, 1fr);
    }

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

/* ===========================
   RESPONSIVE – desktop
   (>= 768px)
   =========================== */

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
        align-items: center;
    }

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

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

    .contact-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    }
}

/* ===========================
   RESPONSIVE – mobil
   (< 768px)
   =========================== */

@media (max-width: 767px) {

    /* Meniu mobil – ascuns implicit, aratat cand body.nav-open */
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #FFFFFF;
        border-bottom: 1px solid #E0E0DF;
        padding: 8px 16px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 6px 0;
        border-bottom-width: 1px;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        padding-top: 2px;
        display: block;
    }

    .nav-dropdown-link {
        display: block;
        border: none;
        padding: 4px 10px;
        padding-left: 20px;
        font-size: 13px;
        opacity: 0.9;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    /* HERO – pe o singura coloana, bugfix la ;  */
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 20px;
    }

    .home-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form-card,
    .contact-card {
        padding: 14px 14px 16px;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   SLIDER / TABS – CEdev
   ============================================ */

.slider-section .center {
    text-align: center;
}

.slider-tabs {
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D7E0F5;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.slider-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #C7D2FE;
    background: #EEF2FF;
    color: #1F3F7A;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #2F6CAB, #4690E6);
    border-color: #2F6CAB;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47,108,171,0.3);
}

.tab-btn:hover {
    filter: brightness(1.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.tab-pane p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.tab-pane ul {
    list-style: none;
    margin-bottom: 14px;
}

.tab-pane ul li {
    padding-left: 14px;
    position: relative;
}

.tab-pane ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2F6CAB;
}

/* ============================================
   Testimoniale – CEdev Blue Style
   ============================================ */

.testimonials-section .center {
    text-align: center;
}

.testimonials-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card.blue {
    background: linear-gradient(135deg, #2F6CAB, #4690E6);
    color: #FFFFFF;
}

.testimonial-text {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.9;
}

.testimonials-section {
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.testimonial-card .author {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0.9;
}

/* spacing & height fix */
.swiper {
    margin-top: 20px;
    padding-bottom: 20px;
}

/* ============================================
   Language
   ============================================ */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch .lang-flag img {
    width: 24px;   /* mărimea steagului */
    height: 16px;
    display: block;
    border-radius: 2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
}

.lang-switch .lang-flag:hover img {
    opacity: 0.8;
    transform: translateY(-1px);
}

.lang-switch .lang-flag.active img {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ============================================
   Cookies banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    color: #f9fafb;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.35);
    font-size: 14px;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-banner-btn {
    border: none;
    padding: 8px 16px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-banner-btn:hover {
    background: #2563eb;
}

/* =========================
   Promo Hook (ofertă colț)
   ========================= */

.promo-hook {
    position: fixed;
    right: 20px;
    bottom: -400px; /* ascuns la început */
    max-width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    padding: 16px 18px 18px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition:
        bottom 0.35s ease-out,
        opacity 0.25s ease-out;
    font-size: 14px;
}

.promo-hook.is-visible {
    bottom: 20px;
    opacity: 1;
    pointer-events: auto;
}

.promo-hook-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.promo-hook-close:hover {
    color: #555;
}

.promo-hook-content h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.promo-hook-text {
    margin: 0 0 8px;
    font-size: 13px;
    color: #555;
}

.promo-hook-list {
    margin: 0 0 10px;
    padding-left: 18px;
    font-size: 13px;
    color: #444;
}

.promo-hook-list li {
    margin-bottom: 3px;
}

.promo-hook-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    background: #2680ff;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.promo-hook-btn:hover {
    background: #1b66cc;
    transform: translateY(-1px);
}

/* Responsiv – pe ecrane foarte mici, o facem full-width jos */
@media (max-width: 640px) {
    .promo-hook {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}