/*
 * Black Swan Development - Custom CSS
 * Τοποθέτηση: public/css/blackswan.css
 * Φορτώνεται ΜΕΤΑ το style.css
 * ─────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════
   FONTS
═══════════════════════════════════════════ */
/* Loaded via <link> in layout head */

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
    --accent-color:   #F14902;
    --accent-dark:    #C83800;
    --accent-color-2: #1D1A1B;
    --bs-primary:     #F14902;
    --bsd-bg:         #ffffff;
    --bsd-bg2:        #F7F5F2;
    --bsd-dark:       #1D1A1B;
    --bsd-mid:        #3D3D3D;
    --bsd-soft:       #8A8A8A;
}

/* ═══════════════════════════════════════════
   BILINGUAL VISIBILITY SYSTEM
   Λογική: !important στο hide + explicit show ανά tag type
   Covers: span, a, em, strong, p, div, h1-h6, li, ul, section, button
═══════════════════════════════════════════ */

/* ── 1. HIDE ALL by default ── */
[data-el],
[data-en] {
    display: none !important;
}

/* ── 2. SHOW correct language — BLOCK elements ── */
/* h1, h2, h3 */
html[data-lang="el"] h1[data-el],
html[data-lang="el"] h2[data-el],
html[data-lang="el"] h3[data-el],
html:not([data-lang]) h1[data-el],
html:not([data-lang]) h2[data-el],
html:not([data-lang]) h3[data-el] { display: block !important; }
html[data-lang="en"] h1[data-en],
html[data-lang="en"] h2[data-en],
html[data-lang="en"] h3[data-en] { display: block !important; }

/* h4, h5, h6 */
html[data-lang="el"] h4[data-el],
html[data-lang="el"] h5[data-el],
html[data-lang="el"] h6[data-el],
html:not([data-lang]) h4[data-el],
html:not([data-lang]) h5[data-el],
html:not([data-lang]) h6[data-el] { display: block !important; }
html[data-lang="en"] h4[data-en],
html[data-lang="en"] h5[data-en],
html[data-lang="en"] h6[data-en] { display: block !important; }

/* p, div, li, section, button */
html[data-lang="el"] p[data-el],
html[data-lang="el"] div[data-el],
html[data-lang="el"] li[data-el],
html[data-lang="el"] section[data-el],
html[data-lang="el"] button[data-el],
html:not([data-lang]) p[data-el],
html:not([data-lang]) div[data-el],
html:not([data-lang]) li[data-el],
html:not([data-lang]) section[data-el],
html:not([data-lang]) button[data-el] { display: block !important; }
html[data-lang="en"] p[data-en],
html[data-lang="en"] div[data-en],
html[data-lang="en"] li[data-en],
html[data-lang="en"] section[data-en],
html[data-lang="en"] button[data-en] { display: block !important; }

/* ── 3. SHOW correct language — INLINE elements ── */
html[data-lang="el"] span[data-el],
html[data-lang="el"] a[data-el],
html[data-lang="el"] em[data-el],
html[data-lang="el"] strong[data-el],
html:not([data-lang]) span[data-el],
html:not([data-lang]) a[data-el],
html:not([data-lang]) em[data-el],
html:not([data-lang]) strong[data-el] { display: inline !important; }
html[data-lang="en"] span[data-en],
html[data-lang="en"] a[data-en],
html[data-lang="en"] em[data-en],
html[data-lang="en"] strong[data-en] { display: inline !important; }

/* ── 4. SHOW correct language — FLEX elements ── */
html[data-lang="el"] ul[data-el],
html:not([data-lang]) ul[data-el] { display: flex !important; }
html[data-lang="en"] ul[data-en]  { display: flex !important; }

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════ */
.bsd-lang {
    display: flex;
    align-items: center;
    gap: 4px;
}
.bsd-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}
.bsd-lang-btn:hover,
.bsd-lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.bsd-lang-btn .bsd-flag {
    font-size: 16px;
    line-height: 1;
}
.bsd-lang-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    user-select: none;
}

/* In topbar (on light bg2 background) the topbar is dark bg already */
/* Default lang buttons inside header (dark bg) match above */

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.bsd-topbar {
    background: var(--bsd-dark);
    padding: 12px 0;
}
.bsd-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.bsd-topbar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}
.bsd-topbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.bsd-topbar-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}
/* topbar labels are spans but must render as block */
html[data-lang="el"] span.bsd-topbar-label[data-el],
html:not([data-lang]) span.bsd-topbar-label[data-el],
html[data-lang="en"] span.bsd-topbar-label[data-en] {
    display: block !important;
}
.bsd-topbar-val {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    line-height: 1;
    transition: color 0.2s;
}
.bsd-topbar-val:hover { color: var(--accent-color); }
.bsd-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ═══════════════════════════════════════════
   GENERAL TYPOGRAPHY
═══════════════════════════════════════════ */
.bsd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.bsd-section-tag::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.bsd-section-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1;
    letter-spacing: 1px;
    color: var(--bsd-dark);
}

.bsd-about-h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 3.5vw, 54px);
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--bsd-dark);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.bsd-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.bsd-reveal.bsd-visible {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.bsd-hero {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
    padding-top: 0;
}
.bsd-hero-overlay {
    opacity: 0.82 !important;
}
.bsd-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 40px;
    padding: 100px 0 60px;
}
@media (max-width: 1199px) {
    .bsd-hero-inner { grid-template-columns: 1fr; }
}

/* Left */
.bsd-hero-left { max-width: 660px; }

.bsd-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 24px;
    opacity: 0;
    animation: bsdFadeUp 0.6s 0.2s forwards;
}
.bsd-tag-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.bsd-hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(68px, 7.5vw, 118px);
    line-height: 0.9;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.35s forwards;
}
.bsd-hero-h1 em {
    font-style: normal;
    color: var(--accent-color);
    display: block;
}

.bsd-hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 24px;
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.65;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.5s forwards;
}
.bsd-hero-sub strong { color: #fff; font-weight: 500; }

.bsd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.65s forwards;
}

.bsd-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    margin-top: 52px;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.8s forwards;
}
.bsd-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 28px;
}
.bsd-stat:first-child { padding-left: 0; }
.bsd-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}
.bsd-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}
.bsd-stat-accent { color: var(--accent-color); }
.bsd-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Right */
.bsd-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}
.bsd-hero-vis {
    position: relative;
    opacity: 0;
    animation: bsdScaleIn 0.9s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.bsd-wh-svg {
    width: 380px;
    max-width: 100%;
    filter: drop-shadow(0 24px 60px rgba(241, 73, 2, 0.2));
    animation: bsdFloat 5s ease-in-out infinite;
}
.bsd-speed-lines {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 9px;
    opacity: 0;
    animation: bsdFadeRight 0.8s 1s forwards;
}
.bsd-sl {
    height: 5px;
    border-radius: 3px;
    background: var(--accent-color);
    animation: bsdPulse 1.8s ease-in-out infinite;
}

/* Hero Badges */
.bsd-hero-badge {
    position: absolute;
    bottom: 48px;
    right: 16px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 10px 44px rgba(0, 0, 0, 0.12);
    opacity: 0;
    animation: bsdFadeUp 0.6s 1.1s forwards;
    min-width: 180px;
}
.bsd-badge-label {
    font-size: 10px;
    color: var(--bsd-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bsd-badge-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--accent-color);
    line-height: 1;
    margin: 4px 0 2px;
}
.bsd-badge-val span { font-size: 18px; }
.bsd-badge-sub { font-size: 12px; color: var(--bsd-mid); }

.bsd-hero-badge2 {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(241, 73, 2, 0.4);
    opacity: 0;
    animation: bsdScaleIn 0.5s 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.bsd-badge2-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
    line-height: 1;
}
.bsd-badge2-txt {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.bsd-marquee-wrap {
    background: var(--bsd-dark);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}
.bsd-marquee-track {
    display: inline-flex;
    animation: bsdMarquee 22s linear infinite;
}
.bsd-mi {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.45);
    padding: 0 28px;
}
.bsd-mi:nth-child(odd)  { color: #fff; }
.bsd-mi:nth-child(even) { color: var(--accent-color); }
.bsd-mdot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS (floating)
═══════════════════════════════════════════ */
.bsd-feat-card {
    min-height: 320px;
    border-top: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}
.bsd-feat-card:hover { transform: translateY(-6px); }

.bsd-feat-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(241, 73, 2, 0.18);
    border: 1px solid rgba(241, 73, 2, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
}

/* Small icon for about section */
.bsd-feat-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(241, 73, 2, 0.08);
    border: 1px solid rgba(241, 73, 2, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 15px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════════ */
.bsd-steps-section { background: #fff; }

.bsd-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
@media (max-width: 991px) {
    .bsd-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .bsd-steps-grid { grid-template-columns: 1fr; }
}

.bsd-step {
    background: var(--bsd-bg2);
    padding: 40px 28px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
}
.bsd-step:hover {
    border-color: var(--accent-color);
    background: #fff;
}

.bsd-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    margin-bottom: 18px;
    transition: color 0.25s;
}
.bsd-step:hover .bsd-step-num { color: var(--accent-color); opacity: 0.2; }

.bsd-step-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(241, 73, 2, 0.1);
    border: 1px solid rgba(241, 73, 2, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 18px;
    transition: background 0.25s;
}
.bsd-step:hover .bsd-step-icon-wrap { background: rgba(241, 73, 2, 0.18); }

.bsd-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bsd-dark);
    margin-bottom: 8px;
    letter-spacing: -0.1px;
}
.bsd-step-desc {
    font-size: 14px;
    color: var(--bsd-soft);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════
   WAREHOUSE CARDS
═══════════════════════════════════════════ */
.bsd-wh-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bsd-wh-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.13) !important; }
.bsd-wh-card:hover .bsd-card-img { transform: scale(1.04); }
.bsd-card-img { transition: transform 0.4s ease; }

/* ═══════════════════════════════════════════
   STATS BLOCK
═══════════════════════════════════════════ */
.bsd-stat-block { padding: 20px; }
.bsd-stat-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.bsd-stat-big sup {
    font-size: 40%;
    vertical-align: super;
}

/* ═══════════════════════════════════════════
   WHY BLACK SWAN (dark section)
═══════════════════════════════════════════ */
.bsd-why-section {
    background: var(--bsd-dark);
    padding: 100px 0;
}
.bsd-why-section .r-container { padding-left: 15px; padding-right: 15px; }

.bsd-why-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(46px, 4.5vw, 76px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #fff;
}
.bsd-why-h2 em {
    font-style: normal;
    color: var(--accent-color);
    display: block;
}

.bsd-why-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 440px;
}

.bsd-why-feats { display: flex; flex-direction: column; }

.bsd-why-feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: padding-left 0.2s;
    cursor: default;
}
.bsd-why-feat:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.bsd-why-feat:hover { padding-left: 8px; }

.bsd-why-feat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(241, 73, 2, 0.1);
    border: 1px solid rgba(241, 73, 2, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 16px;
    transition: background 0.2s;
}
.bsd-why-feat:hover .bsd-why-feat-icon { background: rgba(241, 73, 2, 0.2); }

.bsd-why-feat-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}
.bsd-why-feat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   LOCATION DISTANCE ROWS
═══════════════════════════════════════════ */
.bsd-distance-row {
    transition: border-color 0.2s, background 0.2s;
}
.bsd-distance-row:hover {
    border-color: var(--accent-color) !important;
    background: rgba(241, 73, 2, 0.03);
}

/* ═══════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════ */
.bsd-cta-section {
    background: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bsd-cta-bg-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 20vw, 280px);
    letter-spacing: -2px;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.bsd-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bsd-cta-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(46px, 5vw, 80px);
    line-height: 1;
    color: var(--bsd-dark);
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.bsd-cta-h2 em {
    font-style: normal;
    color: var(--accent-color);
    display: block;
}
.bsd-cta-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--bsd-soft);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
}
.bsd-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   EXISTING BUTTON STYLES (kept)
═══════════════════════════════════════════ */
.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
    font-weight: 500;
}
.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
}
.btn-accent-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
}
.btn-accent-outline:hover {
    background: var(--accent-color);
    color: white;
}
.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s;
}
.btn-white-outline:hover {
    background: white;
    color: var(--accent-color-2);
}

/* ═══════════════════════════════════════════
   LOGO
═══════════════════════════════════════════ */
.logo-container img {
    max-height: 52px;
    width: auto;
}

/* ═══════════════════════════════════════════
   CARD HOVER
═══════════════════════════════════════════ */
.card.hover-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.hover-transform:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(241, 73, 2, 0.15);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer .list a.link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    text-decoration: none;
}
footer .list a.link:hover { color: var(--accent-color); }

/* ═══════════════════════════════════════════
   ICON BOX
═══════════════════════════════════════════ */
.icon-box-2 {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   STATS SECTION sup
═══════════════════════════════════════════ */
.section h1.accent-color sup {
    font-size: 40%;
    vertical-align: super;
}

/* ═══════════════════════════════════════════
   STICKY HEADER
═══════════════════════════════════════════ */
header.sticky-top {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   TABLE
═══════════════════════════════════════════ */
.table td {
    padding: 8px 12px;
    font-size: 14px;
    vertical-align: top;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.w-max-content { width: max-content; }
[data-filter] { transition: all 0.2s; }

/* ═══════════════════════════════════════════
   BEYOND BOUNDARIES SECTION
═══════════════════════════════════════════ */
.bsd-beyond-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}
.bsd-beyond-overlay {
    opacity: 0.88 !important;
    background: linear-gradient(
        135deg,
        rgba(29, 26, 27, 0.96) 0%,
        rgba(29, 26, 27, 0.80) 50%,
        rgba(200, 56, 0, 0.22) 100%
    ) !important;
}
.bsd-beyond-inner { position: relative; }

.bsd-beyond-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 5.5vw, 88px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 0;
}
.bsd-beyond-h2 em {
    font-style: normal;
    color: var(--accent-color);
    display: block;
}

.bsd-beyond-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.85;
    margin-bottom: 32px;
}

.bsd-beyond-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 8px;
}
.bsd-beyond-check {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}
.bsd-check-dot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(241, 73, 2, 0.18);
    border: 1px solid rgba(241, 73, 2, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 11px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes bsdFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bsdScaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes bsdFadeRight {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bsdFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes bsdMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes bsdPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}

/* Named for blade templates */
.bsd-anim-1 { opacity: 0; animation: bsdFadeUp 0.6s 0.20s forwards; }
.bsd-anim-2 { opacity: 0; animation: bsdFadeUp 0.7s 0.35s forwards; }
.bsd-anim-3 { opacity: 0; animation: bsdFadeUp 0.7s 0.50s forwards; }
.bsd-anim-4 { opacity: 0; animation: bsdFadeUp 0.7s 0.65s forwards; }
.bsd-anim-5 { opacity: 0; animation: bsdFadeUp 0.7s 0.80s forwards; }
.bsd-anim-scale { opacity: 0; animation: bsdScaleIn 0.9s 0.45s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 30px; }

    .bsd-hero-h1 { font-size: 64px; }
    .bsd-hero-stats { gap: 0; }
    .bsd-stat { padding: 0 16px; }
    .bsd-topbar-contacts { gap: 16px; }
    .bsd-cta-bg-text { font-size: 80px; }
}

@media (max-width: 480px) {
    .bsd-hero-h1 { font-size: 52px; }
    .bsd-hero-stats { flex-direction: column; gap: 16px; }
    .bsd-stat-divider { display: none; }
    .bsd-stat { padding: 0; }
}

/* ═══════════════════════════════════════════
   HERO V2 — SPACIOUS LAYOUT
   White left panel + grid-pattern right + 3D box
═══════════════════════════════════════════ */
.bsd-hero-s {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.bsd-hero-s-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 80px 60px;
    background: #fff;
    position: relative;
}
/* Override tag anim for white bg */
.bsd-hero-s-left .bsd-hero-tag { color: var(--accent-color); }

.bsd-hero-s-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(68px, 7vw, 112px);
    line-height: 0.92;
    letter-spacing: 1px;
    color: var(--bsd-dark);
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.35s forwards;
}
.bsd-hero-s-h1 .accent-word { color: var(--accent-color); }

/* ── ROTATING WORD ── */
.bsd-rotate-wrap {
    display: inline-block !important;
    overflow: hidden !important;
    vertical-align: top;
    line-height: inherit;
    /* height set by JS after fonts load */
}
.bsd-rotate-reel {
    display: flex !important;
    flex-direction: column !important;
    will-change: transform;
    transition: none;
}
.bsd-rotate-reel > span {
    display: block !important;
    color: var(--accent-color);
    white-space: nowrap;
    flex-shrink: 0;
}

/* h1[data-el/en] inside hero — bilingual override (block) */
html[data-lang="el"] h1.bsd-hero-s-h1[data-el],
html:not([data-lang]) h1.bsd-hero-s-h1[data-el] {
    display: block !important;
}
html[data-lang="en"] h1.bsd-hero-s-h1[data-en] {
    display: block !important;
}

.bsd-hero-s-moto {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--bsd-soft);
    margin-top: 28px;
    margin-bottom: 44px;
    max-width: 380px;
    line-height: 1.65;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.50s forwards;
}
.bsd-hero-s-moto em { font-style: normal; color: var(--bsd-mid); font-weight: 500; }

.bsd-hero-s-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.65s forwards;
}

.bsd-hero-s-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 64px;
    opacity: 0;
    animation: bsdFadeUp 0.7s 0.80s forwards;
}
.bsd-stat-s {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}
.bsd-stat-s:first-child { padding-left: 0; }
.bsd-stat-s-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--bsd-dark);
    line-height: 1;
    letter-spacing: 1px;
}
.bsd-stat-s-num span { color: var(--accent-color); }
.bsd-stat-s-lbl {
    font-size: 11px;
    color: var(--bsd-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bsd-stat-s-div {
    width: 1px;
    height: 44px;
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* Right panel: bg2 + CSS grid pattern */
.bsd-hero-s-right {
    position: relative;
    background: var(--bsd-bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bsd-hero-s-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,   transparent, transparent 39px, rgba(0,0,0,0.028) 40px),
        repeating-linear-gradient(90deg,  transparent, transparent 39px, rgba(0,0,0,0.028) 40px);
    pointer-events: none;
}

.bsd-hero-s-vis {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: bsdScaleIn 0.8s 0.40s cubic-bezier(0.16,1,0.3,1) forwards;
}
.bsd-big-box {
    width: 260px;
    height: 260px;
    position: relative;
}
.bsd-box-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 60px rgba(241,73,2,0.18));
    animation: bsdFloat 4s ease-in-out infinite;
}

.bsd-speed-lines-h {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    animation: bsdFadeRight 0.8s 0.9s forwards;
}
.bsd-sl-h {
    height: 5px;
    border-radius: 3px;
    background: var(--accent-color);
    animation: bsdPulse 1.5s ease-in-out infinite;
}
.bsd-sl-h:nth-child(1) { width: 48px; animation-delay: 0s; }
.bsd-sl-h:nth-child(2) { width: 36px; animation-delay: 0.15s; }
.bsd-sl-h:nth-child(3) { width: 56px; animation-delay: 0.05s; }
.bsd-sl-h:nth-child(4) { width: 28px; animation-delay: 0.20s; }
.bsd-sl-h:nth-child(5) { width: 44px; animation-delay: 0.10s; }

.bsd-hero-badge-h {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    opacity: 0;
    animation: bsdFadeUp 0.6s 1.0s forwards;
    z-index: 3;
    min-width: 180px;
}
.bsd-hero-badge2-h {
    position: absolute;
    top: 80px;
    right: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(241,73,2,0.35);
    opacity: 0;
    animation: bsdScaleIn 0.5s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
    z-index: 3;
}

@media (max-width: 1199px) {
    .bsd-hero-s { grid-template-columns: 1fr; }
    .bsd-hero-s-right { display: none !important; }
    .bsd-hero-s-left { min-height: 100vh; }
}
@media (max-width: 767px) {
    .bsd-hero-s-left { padding: 80px 24px 60px; }
    .bsd-hero-s-stats { flex-wrap: wrap; gap: 20px; }
    .bsd-stat-s { padding: 0 16px; }
    .bsd-stat-s:first-child { padding-left: 16px; }
}

/* ═══════════════════════════════════════════
   INNER PAGE HERO BANNER (sub-pages)
═══════════════════════════════════════════ */
.bsd-inner-hero {
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.bsd-inner-hero .bg-overlay { opacity: 0.78 !important; }
.bsd-inner-hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}
.bsd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.bsd-breadcrumb a {
    color: rgba(255,255,255,0.50);
    text-decoration: none;
    transition: color 0.2s;
}
.bsd-breadcrumb a:hover { color: var(--accent-color); }
.bsd-breadcrumb .bsd-bc-sep { color: rgba(255,255,255,0.25); font-size: 11px; }
.bsd-breadcrumb .bsd-bc-cur { color: var(--accent-color); }
.bsd-inner-hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 18px;
}
.bsd-inner-hero-h1 em { font-style: normal; color: var(--accent-color); }
.bsd-inner-hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.bsd-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bsd-contact-info-item:last-child { border-bottom: none; }
.bsd-contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(241,73,2,0.08);
    border: 1px solid rgba(241,73,2,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}
.bsd-contact-info-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bsd-soft);
    margin-bottom: 5px;
}
.bsd-contact-info-val {
    font-size: 16px;
    font-weight: 500;
    color: var(--bsd-dark);
}
.bsd-contact-info-val a {
    color: var(--bsd-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.bsd-contact-info-val a:hover { color: var(--accent-color); }

/* Form styling */
.bsd-form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bsd-mid);
    margin-bottom: 8px;
    display: block;
}
.bsd-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.10);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--bsd-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.bsd-form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(241,73,2,0.08);
}
.bsd-form-control::placeholder { color: var(--bsd-soft); }
textarea.bsd-form-control { resize: vertical; min-height: 140px; }

/* ═══════════════════════════════════════════
   FILTER BUTTONS (spaces page)
═══════════════════════════════════════════ */
.bsd-filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid rgba(0,0,0,0.10);
    background: transparent;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    color: var(--bsd-mid);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.bsd-filter-btn:hover  { border-color: var(--accent-color); color: var(--accent-color); }
.bsd-filter-btn.active { border-color: var(--accent-color); background: var(--accent-color); color: #fff; }

/* hover-transform utility */
.hover-transform { transition: transform 0.25s, box-shadow 0.25s; }
.hover-transform:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.10) !important; }

/* bg-attach-fixed for inner heroes */
.bg-attach-fixed { background-attachment: fixed; }
@media (max-width: 768px) { .bg-attach-fixed { background-attachment: scroll; } }

/* w-max-content */
.w-max-content { width: max-content; }