/*
Theme Name: Allgas
Theme URI: www.creativemarketing.ro
Author: Creative Marketing
Author URI: https://www.creativemarketing.ro
Version: 1.0
Text Domain: www.allgas.ro
*/

:root {
    /* ABB-inspired industrial palette */
    --bg:                 #FFFFFF;
    --bg-alt:             #F4F4F4;
    --bg-dark:            #0F0F0F;
    --card:               #FFFFFF;
    --text:               #0F0F0F;
    --text-muted:         #6B6B6B;
    --text-soft:          #9C9C9C;
    /* Accent default = albastru (folosit pe hero + navbar/footer global).
       Fiecare secțiune îl rescrie cu propria culoare mai jos. */
    --accent:             #2563EB;       /* albastru — CTA + accent default */
    --accent-hover:       #1D4FD7;
    --accent-tint:        rgba(37, 99, 235, 0.08);
    --accent-tint-strong: rgba(37, 99, 235, 0.16);
    --accent-shadow:      rgba(37, 99, 235, 0.25);
    --on-accent:          #FFFFFF;
    --dark:               #0F0F0F;
    --dark-2:             #000000;
    --taupe:              #6B6B6B;
    --border:             #E5E5E5;
    --border-strong:      #CCCCCC;

    /* ===== Paletă multi-hue (curcubeu) — câte o culoare per secțiune ===== */
    --c-blue:    #2563EB;  --c-blue-h:    #1D4FD7;   /* despre noi */
    --c-yellow:  #FFC400;  --c-yellow-h:  #E0A800;   /* de ce noi (dark) */
    --c-red:     #E11D2A;  --c-red-h:     #C01622;   /* suprafețe */
    --c-green:   #16A34A;  --c-green-h:   #15803D;   /* portofoliu */
    --c-violet:  #7C3AED;  --c-violet-h:  #6A28D6;   /* FAQ */
    --c-orange:  #F97316;  --c-orange-h:  #EA6A0C;   /* contact */
    --c-tiktok:  #FE2C55;  --c-tiktok-h:  #E01E45;   /* TikTok (roz brand) */

    /* Spacing scale 8px */
    --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
    --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px; --s-9: 160px;

    /* Typography — single font, weights diferențiate */
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Aliasuri legacy păstrate */
    --green:              var(--accent);
    --dark-green:         var(--dark);
    --green-hover:        var(--accent-hover);
    --on-green:           var(--on-accent);
    --green-tint:         var(--accent-tint);
    --green-tint-strong:  var(--accent-tint-strong);
    --green-shadow:       var(--accent-shadow);
    --blue:               var(--dark);
}

/* ===== Culoare pe secțiuni — fiecare secțiune rescrie accentul,
   iar componentele (section-index, butoane, hover, focus, numere,
   borduri) îl moștenesc automat prin var(--accent). ===== */
#despre-noi {                          /* albastru */
    --accent: var(--c-blue);    --accent-hover: var(--c-blue-h);
    --accent-tint: rgba(37,99,235,.08); --accent-tint-strong: rgba(37,99,235,.16);
    --accent-shadow: rgba(37,99,235,.25);
}
#de-ce-noi {                           /* galben — secțiune dark, text închis pe accent */
    --accent: var(--c-yellow);  --accent-hover: var(--c-yellow-h);
    --accent-tint: rgba(255,196,0,.10); --accent-tint-strong: rgba(255,196,0,.20);
    --accent-shadow: rgba(255,196,0,.30);
    --on-accent: #0F0F0F;
}
#suprafete {                           /* roșu */
    --accent: var(--c-red);     --accent-hover: var(--c-red-h);
    --accent-tint: rgba(225,29,42,.08); --accent-tint-strong: rgba(225,29,42,.16);
    --accent-shadow: rgba(225,29,42,.25);
}
#portofoliu {                          /* verde */
    --accent: var(--c-green);   --accent-hover: var(--c-green-h);
    --accent-tint: rgba(22,163,74,.08); --accent-tint-strong: rgba(22,163,74,.16);
    --accent-shadow: rgba(22,163,74,.25);
}
#faq {                                 /* violet */
    --accent: var(--c-violet);  --accent-hover: var(--c-violet-h);
    --accent-tint: rgba(124,58,237,.08); --accent-tint-strong: rgba(124,58,237,.16);
    --accent-shadow: rgba(124,58,237,.25);
}
#tiktok {                              /* roz TikTok */
    --accent: var(--c-tiktok);  --accent-hover: var(--c-tiktok-h);
    --accent-tint: rgba(254,44,85,.08); --accent-tint-strong: rgba(254,44,85,.16);
    --accent-shadow: rgba(254,44,85,.25);
}
#contact {                             /* portocaliu — text închis pe accent pt contrast */
    --accent: var(--c-orange);  --accent-hover: var(--c-orange-h);
    --accent-tint: rgba(249,115,22,.10); --accent-tint-strong: rgba(249,115,22,.20);
    --accent-shadow: rgba(249,115,22,.30);
    --on-accent: #0F0F0F;
}

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

html {
    font-size: 62.5%;
}

a {
    text-decoration: none;
}

body {
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Containment orizontal — previne overflow-ul cauzat de translate-urile GSAP
   (about-thumbs x:60, surfaces-aside x:40 etc.) pe ecrane înguste. */
.home_template,
.home_template > section,
section[id] {
    overflow-x: clip;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 0;
    padding: 0;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(4.8rem, 8.5vw, 11rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(3.4rem, 5vw, 6.4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.7rem;
    font-weight: 600;
}

h5 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.55;
    margin: 0;
    padding: 0;
}

em { color: var(--accent); font-style: normal; font-weight: inherit; }

dl, ol, ul {
    margin-bottom: 0;
}

ul {
    font-size: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1440px;
    padding: 0 32px;
    margin: 0 auto;
}
.container--narrow { max-width: 960px; }
.container--wide   { max-width: 1600px; }

/* Dividers */
.mt-100 { margin-top: 100px; }
.mb-100 { margin-bottom: 100px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }

/* Block title */
.block_title {
    margin-bottom: var(--s-6);
    max-width: 820px;
}
.block_title.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
}
.block_title h2 {
    margin: 0;
}
.block_title p {
    margin-top: var(--s-3);
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1.5;
    max-width: 60ch;
}

/* Buttons — sharp 0-radius, industrial */
.main_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--on-accent);
    padding: 18px 32px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    /* NU pune transform aici — .hero-video__actions e animat de GSAP pe transform
       și o tranziție CSS pe transform blochează butonul (rămâne la y:18). */
    transition: filter 0.15s ease, box-shadow 0.15s ease;
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    text-transform: none;
    box-shadow: 0 4px 16px var(--accent-shadow);
}
.main_button::after {
    content: "→";
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 0.5;
    margin-top: -1px;
    transition: transform 0.2s ease;
}
.main_button:hover {
    filter: brightness(1.06) saturate(1.08);
    color: var(--on-accent);
    box-shadow: 0 8px 24px var(--accent-shadow);
}
.main_button:hover::after { transform: translateX(4px); }
.main_button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.outline_button {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
    padding: 17px 31px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.005em;
    transition: background 0.15s ease, color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    line-height: 1;
}
.outline_button:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* Text link cu săgeată — pentru CTAs secundare editoriale */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--text);
    padding-bottom: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover { gap: 12px; color: var(--accent); border-bottom-color: var(--accent); }
.link-arrow::after {
    content: "→";
    font-family: inherit;
}

.hero_right .d-flex{
    margin-top: 15px;
    margin-bottom: 10px;
    gap: 10px;
}

.whatsapp_button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp_button:hover{
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
}

/* ===================== Navbar ===================== */

.navbar__menu {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: visible;
}

.navbar__menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 30px;
}

.mega-menu .container {
    display: block;
}

.main-logo {
    flex-shrink: 0;
}

.main-logo span{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-left: 8px;
}

.main-logo a {
    display: flex;
    align-items: center;
}

.header_logo {
    max-height: 89px;
    width: auto;
    border-radius: 0;
}

.menu_container {
    display: flex;
    align-items: center;
}

.menu_container ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu_container ul li a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 500;
    border-radius: 0;
    background: transparent;
    transition: color 0.18s ease;
    position: relative;
    white-space: nowrap;
    letter-spacing: -0.005em;
}

.menu_container ul li a:hover,
.menu_container ul li.current-menu-item a,
.menu_container ul li.current_page_item a,
.menu_container ul li.active-section a {
    color: var(--accent);
    background: transparent;
}

.menu_container ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.menu_container ul li a:hover::after,
.menu_container ul li.current-menu-item a::after,
.menu_container ul li.current_page_item a::after,
.menu_container ul li.active-section a::after {
    transform: scaleX(1);
}

/* Sub-menu */
.menu_container ul li {
    position: relative;
}

.menu_container ul ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    min-width: 220px;
    border-radius: 0;
    border: 1px solid var(--border);
    padding: 6px 0;
    gap: 0;
    z-index: 100;
}

.menu_container ul li:hover > ul.sub-menu {
    display: flex;
}

.menu_container ul ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 0;
    white-space: nowrap;
}

.menu_container ul ul.sub-menu li a::after {
    display: none;
}

.menu_container ul ul.sub-menu li a:hover {
    background: var(--green-tint);
    color: var(--dark-green);
}

/* Hamburger — ascuns pe desktop, vizibil pe mobil */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Phone numbers - hidden on desktop, shown in mobile slide-out */
.phone_numbers--mobile {
    display: none;
}

.phone_numbers--mobile a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: var(--text);
    border-radius: 0;
    transition: background 0.15s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.phone_numbers--mobile a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.phone_numbers--mobile a:first-child {
    background: var(--dark-green);
}

.phone_numbers--mobile a:first-child:hover {
    background: var(--dark-2);
    box-shadow: 0 4px 15px var(--accent-shadow);
}

.phone_numbers--mobile a:last-child {
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.phone_numbers--mobile a:last-child:hover {
    background: var(--dark-green);
    color: #fff;
    box-shadow: 0 4px 15px var(--green-shadow);
}

.phone_numbers--mobile a i {
    font-size: 1.3rem;
}

/* ===================== LANDING PAGE SECTIONS ===================== */

/* Skip link (a11y) */
.skip-link.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link.screen-reader-text:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--on-accent);
    z-index: 9999;
    border-radius: 0;
}

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

/* Header CTA */
.header_cta {
    margin-left: 24px;
    font-size: 1.4rem;
    padding: 11px 20px;
}

/* Section spacing — ABB generos */
section[id] {
    padding: var(--s-8) 0;
    scroll-margin-top: 80px;
}
section[id].tight   { padding: var(--s-7) 0; }
section[id].roomy   { padding: var(--s-9) 0; }

/* Section index — industrial label cu accent roșu */
.section-index {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--s-3);
    font-family: var(--font-body);
}
.section-index::before {
    content: "";
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

/* ====== 1. HERO — ABB industrial full-bleed cu band stânga ====== */
.hero-video {
    position: relative;
    min-height: 88vh;
    color: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    background: var(--bg-dark);
}
.hero-video__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f0f0f;
}
/* Overlay industrial — band stânga puternic, restul tranzient */
.hero-video__overlay {
    position: absolute;
    inset: 0;
    background:
        /* darkening stânga — menține lizibil textul alb */
        linear-gradient(90deg, rgba(15,15,15,.82) 0%, rgba(15,15,15,.55) 38%, rgba(15,15,15,.15) 68%, rgba(15,15,15,0) 88%),
        /* strat de culoare multi-hue — albastru → violet → portocaliu */
        linear-gradient(120deg, rgba(37,99,235,.50) 0%, rgba(124,58,237,.40) 45%, rgba(249,115,22,.30) 100%);
}
.hero-video__content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: var(--s-7);
    padding-bottom: var(--s-7);
    align-self: center;
    max-width: 1440px;
}
.hero-video__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--s-3);
}
.hero-video__eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--accent);
}
.hero-video__title {
    color: #fff;
    margin: 0 0 var(--s-3);
    max-width: 14ch;
    font-weight: 700;
    text-shadow: 0 1px 30px rgba(0,0,0,.2);
}
.hero-video__title em {
    font-style: normal;
    font-weight: 700;
    /* gradient text viu cu fallback solid pentru browsere fără background-clip */
    color: #FFC400;
    background: linear-gradient(100deg, #FFC400 0%, #F97316 50%, #E11D2A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-video__subtitle {
    font-size: clamp(1.6rem, 1.6vw, 1.9rem);
    line-height: 1.5;
    color: rgba(255,255,255,.78);
    max-width: 52ch;
    margin: 0 0 var(--s-5);
    font-weight: 400;
}
.hero-video__actions {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    flex-wrap: wrap;
}
.hero-video__cta { font-size: 1.55rem; }
/* Secondary = ghost button alb pe dark, aceeași înălțime/padding ca .main_button */
.hero-video__cta-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    padding: 17px 31px;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: 0;
    font-family: inherit;
    line-height: 1;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.hero-video__cta-alt::after {
    content: "→";
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 0.5;
    margin-top: -1px;
    transition: transform 0.2s ease;
}
.hero-video__cta-alt:hover {
    color: var(--text);
    background: #fff;
    border-color: #fff;
}
.hero-video__cta-alt:hover::after { transform: translateX(4px); }
.hero-video__trust {
    display: none;
}
/* Bandă metainformații jos — opțional, dacă vrei "industrial chrome" */
.hero-video__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 32px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-video__meta span { display: inline-flex; align-items: center; gap: 8px; }

/* ====== Section eyebrow — folosit doar selectiv (nu pe fiecare secțiune) ====== */
.section-eyebrow {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--s-2);
    font-family: var(--font-body);
}

/* ====== Editorial blocks (storytelling 2-col) ====== */
.editorial {
    padding: 100px 0;
    background: var(--bg);
}
.editorial--right { background: var(--bg-alt); }
.editorial__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.editorial--right .editorial__grid {
    grid-template-columns: 1fr 1.05fr;
}
.editorial__media {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 14px;
    background: var(--accent-tint);
}
.editorial__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.editorial__placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, var(--accent-tint), var(--accent-tint-strong)),
        radial-gradient(circle at 30% 30%, var(--taupe), transparent 60%);
}
.editorial__body {
    max-width: 500px;
}
.editorial__eyebrow {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 16px;
}
.editorial__title {
    font-size: clamp(2.8rem, 3.5vw, 4.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 22px;
    font-weight: 600;
}
.editorial__text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.editorial__text:last-child { margin-bottom: 0; }

/* ====== 2. CONTACT FORM (CF7-compatible) ====== */
.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.contact-form h3 { margin: 0; }

.field { display: block; }
.field__label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

/* CF7 introduce span wrappere — forțează-le să se comporte ca block */
.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 0;
    font-family: inherit;
    font-size: 1.5rem;
    color: var(--text);
    transition: border-color .18s;
    background: #fff;
    display: block;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.field--checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.5;
}
.field--checkbox .field__label { display: none; }
.field--checkbox .wpcf7-form-control-wrap { width: auto; }
.field--checkbox .wpcf7-acceptance .wpcf7-list-item { margin: 0; display: block; }
.field--checkbox .wpcf7-acceptance label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}
.field--checkbox input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.field--checkbox a { color: var(--accent); text-decoration: underline; }

.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.55rem;
    padding: 18px 30px;
    border-radius: 0;
    margin-top: var(--s-2);
}
.contact-form input[type="submit"]:disabled,
.contact-form .wpcf7-submit:disabled { opacity: .6; cursor: not-allowed; }

/* CF7 response messages */
.contact-form .wpcf7-response-output {
    margin: var(--s-3) 0 0 !important;
    padding: 14px 18px !important;
    border: 1px solid var(--border) !important;
    font-size: 1.4rem;
}
.contact-form .wpcf7-not-valid-tip {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 4px;
    display: block;
}

/* ====== 3. SURFACES — bg-alt, listă text + imagine industrial dreapta ====== */
.surfaces-section { background: var(--bg-alt); }
.surfaces-grid--editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: start;
}
.surfaces-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 2px solid var(--text);
}
.surfaces-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: var(--s-3);
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--border-strong);
    align-items: baseline;
}
.surfaces-list li > .surface-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.015em;
}
.surfaces-list li > .surface-num {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.surfaces-list li > .surface-desc {
    grid-column: 2;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1.5;
}
.surfaces-aside {
    position: sticky;
    top: 100px;
    aspect-ratio: 3/4;
    background: var(--text);
    overflow: hidden;
}
.surfaces-aside img { width: 100%; height: 100%; object-fit: cover; display: block; }
.surfaces-aside__placeholder {
    width: 100%; height: 100%;
    background:
        repeating-linear-gradient(135deg, #1a1a1a 0 12px, #2a2a2a 12px 24px);
}

/* ====== 5. FAQ — industrial, linii sharp, fără carduri ====== */
.faq-section { background: var(--bg-alt); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--s-7);
    align-items: start;
}
.faq-aside {
    position: sticky;
    top: 100px;
}
.faq-aside h2 { margin: 0 0 var(--s-3); max-width: 12ch; }
.faq-aside p { color: var(--text-muted); margin-bottom: var(--s-4); max-width: 32ch; font-size: 1.7rem; }

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--text);
}
.faq-item {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-strong);
    overflow: hidden;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item__q {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-3);
    padding: var(--s-4) 0;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    letter-spacing: -0.015em;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--text);
    border-radius: 0;
    font-size: 26px;
    font-weight: 300;
    transition: transform .2s ease;
    font-family: var(--font-body);
    line-height: 1;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); color: var(--accent); }
.faq-item__a {
    padding: 0 0 var(--s-4);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 64ch;
}
.faq-item__a p { font-size: inherit; line-height: inherit; }

/* ====== 6. CONTACT — sharp industrial ====== */
.contact-section { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-7);
    margin: 0 auto;
}
.contact-info h3, .contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: var(--s-3);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding-bottom: var(--s-2);
    border-bottom: 2px solid var(--text);
}
.contact-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--s-5);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact-info__list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--s-3);
    align-items: baseline;
    font-size: 1.6rem;
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--border);
}
.contact-info__list li:last-child { border-bottom: none; }
.contact-info__label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
}
.contact-info__list a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--text); padding-bottom: 1px; }
.contact-info__list a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.contact-map { overflow: hidden; border: 1px solid var(--border); }
.contact-visual {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
}
.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    background: var(--bg-alt);
    padding: var(--s-5);
    border: none;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.contact-form .field { display: block; }

/* ====== FLOATING WHATSAPP — rotund, verde brand WhatsApp ====== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
}
.wa-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}
.wa-float__icon { width: 28px; height: 28px; }
.wa-float__pulse { display: none; } /* legacy — scoasă, era generic */

/* ====== ABOUT — split 50/50 industrial, image dreapta full-height ====== */
.about-section { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}
.about-text {
    padding: var(--s-6) var(--s-7) var(--s-6) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
}
.about-text h2 {
    margin: 0 0 var(--s-4);
    max-width: 14ch;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: var(--s-3);
    max-width: 52ch;
    font-size: 1.7rem;
}
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-top: var(--s-5);
    align-items: center;
}
/* Imagine dreapta — full height, 1 singură imagine mare industrial */
.about-thumbs {
    display: block;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-alt);
}
.about-thumb {
    overflow: hidden;
    background: var(--bg-alt);
    width: 100%;
    height: 100%;
}
.about-thumb:nth-child(n+2) { display: none; }
.about-thumb img,
.about-thumb__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-thumb__placeholder {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(135deg, var(--bg-alt) 0 8px, #EAEAEA 8px 16px);
}

/* ====== WHY US — black section, numerotare industrial, fără icoane ====== */
.why-us-section { background: var(--bg-dark); color: #fff; }
.why-us-section .block_title h2 { color: #fff; }
.why-us-section .block_title p { color: rgba(255,255,255,.6); }
.why-us-section .section-index { color: rgba(255,255,255,.7); }
.why-us-section .section-index::before { background: var(--accent); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.15);
}
.why-card {
    background: transparent;
    padding: var(--s-5) var(--s-4) var(--s-5) 0;
    border-right: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: none;
}
.why-card:nth-child(3n) { border-right: none; padding-right: 0; }
.why-card:nth-child(3n+1) { padding-left: 0; }
.why-card:nth-child(3n+2) { padding-left: var(--s-4); padding-right: var(--s-4); }
.why-card:nth-child(3n) { padding-left: var(--s-4); }

.why-card__num {
    font-family: var(--font-display);
    font-size: 4.4rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: var(--s-3);
    display: inline-block;
    letter-spacing: -0.02em;
    border-top: 3px solid var(--accent);
    padding-top: 14px;
    /* gradient text vibrant pe fundal dark */
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-card__title {
    font-size: 2.2rem;
    margin-bottom: var(--s-2);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.why-card__text {
    font-size: 1.5rem;
    line-height: 1.55;
    color: rgba(255,255,255,.65);
    max-width: 40ch;
}
.why-card__icon { display: none; }

/* ====== PORTFOLIO — grid 3 col uniform, tile-uri mari ====== */
.portfolio-section { background: var(--bg); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
    margin-bottom: var(--s-7);
}
.portfolio-tile {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-alt);
    cursor: zoom-in;
}
.portfolio-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
    filter: grayscale(0%);
}
.portfolio-tile:hover img { transform: scale(1.04); }
/* Reveal de culoare caldă la hover */
.portfolio-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(160deg, var(--accent-tint-strong) 0%, transparent 45%),
        linear-gradient(0deg, var(--accent-shadow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
}
.portfolio-tile:hover::after { opacity: 1; }
.portfolio-tile__placeholder {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(135deg, var(--bg-alt) 0 8px, #EAEAEA 8px 16px);
}
/* Captions sub tile — sharp, monospace-feel cu numere mari */
.portfolio-tile__caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: var(--s-3) 0 0;
    color: var(--text);
}
.portfolio-tile__caption .num {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.portfolio-tile__caption .title {
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}
.portfolio-tile__caption .location {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
}
.portfolio-tile__overlay { display: none; }

.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-5);
    padding-top: var(--s-5);
    border-top: 2px solid var(--text);
}
.portfolio-cta p {
    color: var(--text);
    max-width: 52ch;
    font-size: 1.7rem;
    font-weight: 500;
}
/* ====== TIKTOK — grid de video-uri embed oficial ====== */
.tiktok-section { background: var(--bg); }

/* Carusel Swiper — un singur rând, fără spațiu gol pe mobil */
.tiktok-swiper {
    position: relative;
    margin-bottom: var(--s-6);
    padding: 0 0 var(--s-5);   /* loc pentru paginare */
}
.tiktok-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}
/* Card video — raport fix 9:16, fără UI în jur */
.tiktok-swiper .tiktok-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.tiktok-swiper .tiktok-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* Facade — poster click-to-play (player-ul se încarcă doar la click) */
.tiktok-swiper .tiktok-card--facade {
    position: relative;
    padding: 0;
    border: 0;
    cursor: pointer;
    display: block;
}
.tiktok-swiper .tiktok-card__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tiktok-swiper .tiktok-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    transition: background .2s ease, transform .2s ease;
}
.tiktok-swiper .tiktok-card__play::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    transform: translateX(2px);
}
.tiktok-swiper .tiktok-card--facade:hover .tiktok-card__play,
.tiktok-swiper .tiktok-card--facade:focus-visible .tiktok-card__play {
    background: var(--accent);
    transform: scale(1.08);
}

/* Paginare în culoarea de accent a secțiunii */
.tiktok-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}
/* Card fallback pentru link-uri fără id (ex. link scurt vm.tiktok.com) */
.tiktok-card--link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    min-height: 460px;
    background: var(--accent-tint-strong);
    border: 2px dashed var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    padding: var(--s-4);
}
.tiktok-cta {
    display: flex;
    justify-content: center;
    padding-top: var(--s-5);
    border-top: 2px solid var(--text);
}

/* ====== SITE FOOTER — industrial dark ====== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .85);
    padding: var(--s-6) 0 var(--s-4);
    margin-top: var(--s-7);
    position: relative;
}
/* Bandă de accent — întreg spectrul cald al secțiunilor */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--c-blue), var(--c-yellow), var(--c-red),
        var(--c-green), var(--c-violet), var(--c-tiktok), var(--c-orange));
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--s-5);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer__logo {
    display: inline-block;
}
.site-footer__logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.site-footer__logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.site-footer__tagline {
    margin-top: var(--s-3);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .6);
    max-width: 36ch;
    line-height: 1.5;
}
.site-footer__heading {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 0 0 var(--s-3);
    padding-bottom: var(--s-2);
    border-top: 2px solid var(--accent);
    padding-top: 12px;
    display: inline-block;
}
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1.5rem;
}
.site-footer__list a {
    color: rgba(255, 255, 255, .85);
    transition: color .18s;
}
.site-footer__list a:hover { color: var(--accent); }

.site-footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}
.site-footer__social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.site-footer__social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-3);
    padding-top: var(--s-4);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .5);
}
.site-footer__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--s-4);
}
.site-footer__legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    transition: color .18s;
}
.site-footer__legal a:hover { color: #fff; }

/* ====== 404 PAGE — minimal ====== */
.error_404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.error_404 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-3);
}
.error_404__number {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.05em;
    line-height: 1;
}
.error_404__text {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin: 0;
}
