/* ══════════════════════════════════════
   BLASTECO — Industrial Dark Theme
   Drilling | Blasting | Civil Engineering
══════════════════════════════════════ */

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

:root {
  --orange:  #F5A100;
  --orange2: #E08800;
  --black:   #0a0a08;
  --dark:    #111110;
  --surface: #1a1a16;
  --surface2:#222218;
  --border:  rgba(245,161,0,0.12);
  --border2: rgba(255,255,255,0.07);
  --text:    #E8E6DF;
  --muted:   #7a7868;
  --white:   #ffffff;
}

html { scroll-behavior:smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:var(--orange); }

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }

/* ── NAV ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  background: rgba(10,10,8,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s;
}

#main-nav.scrolled { height: 62px; }

.nav-logo { display:flex; align-items:center; }
.nav-logo-img { height:46px; width:auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links > li { position:relative; }

.nav-links > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.65);
  transition: color 0.2s;
}

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

/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.5;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  min-width: 320px;
  background: #0a0a08 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: 2px solid var(--orange);
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 9999;
  padding: 6px 0;
  box-shadow: 0 24px 48px rgba(0,0,0,0.9);
  transform: translateY(6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.has-dropdown:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: 11px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.55);
  border-left: 2px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--orange);
  background: rgba(245,161,0,0.06);
  border-left-color: var(--orange);
  padding-left: 26px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 3px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgba(232,230,223,0.45);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.lang-btn.active { background: var(--orange); color: var(--black); }

.nav-cta {
  padding: 9px 22px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--orange2); }

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

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left:0; right:0; bottom:0;
  background: var(--black);
  z-index: 99;
  padding: 32px 28px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.8);
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--orange); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--orange2); }

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(245,161,0,0.4);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* ── SECTION COMMON ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label span {
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-label p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(232,230,223,0.6);
  max-width: 560px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://blasteco.gr/wp-content/uploads/2025/01/DSC00287-scaled.jpg') center/cover no-repeat;
  transition: opacity 1.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(10,10,8,0.82) 0%,
    rgba(10,10,8,0.55) 50%,
    rgba(10,10,8,0.3) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(10,10,8,0.2) 0%,
    rgba(10,10,8,0.85) 85%,
    var(--black) 100%
  );
}

/* Diagonal orange stripe — aggressive accent */
.hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  transition: opacity 1.4s ease;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-tag span { width: 28px; height: 2px; background: var(--orange); }

.hero-tag p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
  display: block;
  margin: 0;
  line-height: 0.92;
}

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.5);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Video controls */
.hero-controls {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hvc-btn {
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,161,0,0.3);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.hvc-btn:hover { color: var(--orange); border-color: var(--orange); }

.hvc-dots { display:flex; align-items:center; gap:4px; }

.hvc-dot {
  width: 20px; height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer;
  transition: all 0.25s; padding:0;
}

.hvc-dot.active { background: var(--orange); width: 30px; }

/* Scroll indicator */
.scroll-indicator { display:none !important;
  position: absolute;
  bottom: 36px;
  left: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.35);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--orange);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stats-bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: rgba(0,0,0,0.15);
}

.stat-item { display:flex; align-items:baseline; gap:8px; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,8,0.55);
  line-height: 1.3;
}

.stat-divider {
  width: 1px; height: 44px;
  background: rgba(10,10,8,0.2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ABOUT / INTRO
══════════════════════════════════════ */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.8s;
}

.about-image:hover img { transform: scale(1.03); }

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,8,0.3) 0%, transparent 60%);
}

/* Orange diagonal badge */
.about-badge {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--orange);
  padding: 20px 28px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0% 100%);
  min-width: 160px;
}

.about-badge strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--black);
  line-height: 1;
  display: block;
}

.about-badge small {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,8,0.6);
}

.about-content {
  background: var(--surface);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border2);
  margin-top: 40px;
}

.feature-item {
  background: var(--surface2);
  padding: 24px 20px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.feature-item:hover {
  border-left-color: var(--orange);
  background: rgba(245,161,0,0.04);
}

.feature-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.section-services {
  padding: 100px 48px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border2);
}

.srv-card {
  background: var(--surface);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.srv-card:hover { transform: translateY(-4px); }

.srv-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.srv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.4s, transform 0.5s;
}

.srv-card:hover .srv-card-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.srv-card-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  z-index: 1;
}

.srv-card-body {
  padding: 24px;
  flex: 1;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}

.srv-card:hover .srv-card-body { border-top-color: var(--orange); }

.srv-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.srv-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}

.srv-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.srv-card:hover .srv-card-link { gap: 10px; }

/* ══════════════════════════════════════
   PROJECTS (dark blue)
══════════════════════════════════════ */
.section-projects {
  background: #080c14;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 100px 48px;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
  background: var(--surface);
}

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
  transition: transform 0.6s, filter 0.4s;
}

.project-card:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,20,0.92) 0%, transparent 55%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.project-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

/* ══════════════════════════════════════
   PARTNERS
══════════════════════════════════════ */
.section-partners {
  padding: 56px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-header p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.partner-item {
  padding: 0 40px;
  border-right: 1px solid var(--border2);
  display: flex;
  align-items: center;
  height: 72px;
  flex-shrink: 0;
}

.partner-item img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.6;
  transition: all 0.3s;
  object-fit: contain;
}

.partner-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.partner-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(122,120,104,0.55);
  white-space: nowrap;
  transition: color 0.2s;
}

.partner-item:hover span { color: var(--orange); }

/* ══════════════════════════════════════
   VIDEO
══════════════════════════════════════ */
.section-video {
  padding: 100px 48px;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.video-header { margin-bottom: 48px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-item {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface);
  overflow: hidden;
}

.video-item iframe { width:100%; height:100%; border:none; display:block; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.section-cta {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://blasteco.gr/wp-content/uploads/2025/01/DSC00246-scaled.jpg') center/cover no-repeat;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.78);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cta-title em {
  font-style: normal;
  color: var(--orange);
}

.cta-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(232,230,223,0.6);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.section-contact {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-items { margin-top: 36px; display:flex; flex-direction:column; gap:28px; }

.contact-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-item p, .contact-item a {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

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

/* Form */
.contact-form { display:flex; flex-direction:column; gap:14px; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.form-field { display:flex; flex-direction:column; gap:6px; }

.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-bottom: 2px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--orange);
}

.form-field textarea { min-height: 120px; }

.form-submit {
  padding: 14px 36px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.form-submit:hover { background: var(--orange2); }

/* ══════════════════════════════════════
   MAP
══════════════════════════════════════ */
.section-map { border-top: 1px solid var(--border); }
.section-map iframe { display:block; width:100%; height:420px; filter:grayscale(20%) contrast(1.05); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { height: 38px; width: auto; }
.footer-brand small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(232,230,223,0.3);
}

.footer-links {
  display: flex; gap: 24px;
  list-style: none; flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-social { display:flex; gap:16px; align-items:center; }

.footer-social a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(232,230,223,0.4);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--orange); }

.footer-copy {
  font-size: 11px;
  color: rgba(232,230,223,0.2);
  letter-spacing: 0.05em;
  width: 100%;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
}

/* ══════════════════════════════════════
   INNER PAGES
══════════════════════════════════════ */
.inner-page { padding-top: 0; background: var(--black); }

.inner-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  overflow: hidden;
  margin-top: 76px;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://blasteco.gr/wp-content/uploads/2025/01/DSC00287-scaled.jpg') center 35%/cover no-repeat;
  z-index: 0;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.92) 0%, rgba(10,10,8,0.4) 60%, transparent 100%);
  z-index: 1;
}

.inner-hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--orange);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.inner-content {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232,230,223,0.7);
}

.entry-content h2, .entry-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin: 32px 0 12px;
  line-height: 1.1;
}

.entry-content h2 { font-size: clamp(24px,3vw,40px); }
.entry-content h3 { font-size: clamp(18px,2vw,26px); }
.entry-content p { margin-bottom: 16px; }
.entry-content strong { color: var(--orange); font-weight: 600; }
.entry-content a { color: var(--orange); }

/* Service page */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-sidebar {}

.service-cta-box {
  background: var(--surface);
  padding: 32px;
  border-top: 3px solid var(--orange);
  margin-bottom: 24px;
}

.service-cta-box p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(232,230,223,0.6);
  margin-bottom: 20px;
}

.service-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border2);
}

.service-nav a {
  padding: 14px 20px;
  background: var(--surface);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,230,223,0.5);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.service-nav a:hover, .service-nav a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(245,161,0,0.05);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border2);
}

.portfolio-card { background: var(--surface); overflow: hidden; }

.portfolio-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-card-img img { transform: scale(1.05); }

.portfolio-card-body { padding: 20px; }

.portfolio-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.portfolio-card-title a { color: var(--white); transition: color 0.2s; }
.portfolio-card-title a:hover { color: var(--orange); }

.portfolio-card-date { font-size:12px; color:var(--muted); margin-bottom:10px; }
.portfolio-card-excerpt { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:12px; }

.portfolio-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.portfolio-pagination { margin-top:48px; display:flex; justify-content:center; }
.portfolio-pagination .nav-links { display:flex; gap:8px; }
.portfolio-pagination .page-numbers {
  padding: 8px 16px;
  border: 1px solid var(--border2);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.2s;
}
.portfolio-pagination .page-numbers.current,
.portfolio-pagination .page-numbers:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

/* Single project */
.single-back { margin-top:48px; padding-top:48px; border-top:1px solid var(--border); }

/* Company page */
.company-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border-top: 1px solid var(--border);
}

.company-text {
  padding: 80px 64px 80px 48px;
}

.company-image {
  position: relative;
  overflow: hidden;
}

.company-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
}

.company-stat {
  background: var(--surface);
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.company-stat:hover { border-top-color: var(--orange); }

.company-stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.company-stat span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Contact page */
.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  #main-nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }

  .hero { padding: 0 24px 72px; }
  .scroll-indicator { display:none !important; display: none; }
  .hero-controls { right: 24px; }

  .stats-bar { padding: 20px 24px; flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }

  .section-about { grid-template-columns: 1fr; }
  .about-image { min-height: 320px; }
  .about-content { padding: 48px 32px; }

  .section-services, .section-projects, .section-video,
  .section-partners, .section-cta { padding: 64px 24px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .section-contact { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }

  .service-layout { grid-template-columns: 1fr; padding: 48px 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .company-intro { grid-template-columns: 1fr; }
  .company-text { padding: 48px 24px; }
  .contact-page-wrap { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }

  .inner-hero { height: 280px; padding: 32px 24px; margin-top: 76px; }
  .inner-content { padding: 48px 24px; }

  #site-footer { padding: 40px 24px; }

  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(48px, 14vw, 80px); }
  .cta-actions { flex-direction: column; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .company-stats { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 782px) {
  body.admin-bar #main-nav { top: 0 !important; }
}

/* ── SERVICE CARD NO DESC ── */
.srv-card-body {
  padding: 16px 20px;
}
.srv-card-title {
  font-size: 15px;
}

/* ── LOGO ── */
.nav-logo-img { height: 64px; width: auto; transform: scale(1.3); transform-origin: left center; }
.footer-logo { height: 44px; width: auto; }

/* ══════════════════════════════════════
   PROJECTS CAROUSEL — reboot-slider style
══════════════════════════════════════ */
:root { --background-speed: 0.8s; }

.section-proj-carousel {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.proj-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 48px 0;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proj-carousel-header.loaded { opacity: 1; }

/* ── Slider wrapper ── */
.proj-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  margin-top: 0;
  background: #050504;
}

/* ── Background image layer ── */
.reboot-slider-background,
.reboot-slider-background img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transition: all var(--background-speed) ease-in-out;
}

.reboot-slider-background img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
}

/* Outgoing slide stays visible at scale */
.reboot-slider-background img.prev {
  opacity: 1;
  transform: scale(1.08);
  z-index: 0;
}

/* Incoming slide animates in */
.reboot-slider-background img.currentForward,
.reboot-slider-background img.currentBackward {
  z-index: 1;
  opacity: 1;
  animation: bgNext var(--background-speed) ease-out forwards;
}

@keyframes bgNext {
  0%   { opacity: 0; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* Overlay */
.proj-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(10,10,8,0.90) 0%, rgba(10,10,8,0.55) 45%, rgba(10,10,8,0.10) 100%),
    linear-gradient(to top,   rgba(10,10,8,0.50) 0%, transparent 40%);
}

/* ── Left panel ── */
.reboot-slider-left {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 520px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proj-slider.loaded .reboot-slider-left { opacity: 1; }

.proj-text { display: none; }
.proj-text.active { display: block; }

/* ── Right panel ── */
.reboot-slider-right {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proj-slider.loaded .reboot-slider-right { opacity: 1; }

.proj-thumb-slide { display: none; flex-direction: column; gap: 12px; }
.proj-thumb-slide.active { display: flex; }

/* ── Progress bar ── */
.proj-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--orange);
  z-index: 10;
}
.proj-progress.running {
  width: 100%;
  transition: width 6s linear;
}

/* ── Slide content ── */
.proj-slide-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: rgba(245,161,0,0.12);
  line-height: 1;
  margin-bottom: -12px;
}

.proj-slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 38px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.proj-slide-title a { color: inherit; transition: color 0.2s; }
.proj-slide-title a:hover { color: var(--orange); }

.proj-slide-location {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Thumbnails ── */
.proj-thumb-item {
  display: block;
  width: 240px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.proj-thumb-item:hover { border-color: var(--orange); transform: scale(1.02); }
.proj-thumb-item img { width:100%; height:100%; object-fit:cover; }

/* ── Dots ── */
.proj-dots {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; gap: 8px;
}
.proj-dot {
  width: 8px; height: 8px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer; padding: 0;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.proj-dot.active { background: var(--orange); transform: scale(1.4); }
.proj-dot-num {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  opacity: 0; transition: opacity 0.2s;
  white-space: nowrap;
}
.proj-dot.active .proj-dot-num { opacity: 1; color: var(--orange); }

/* ── Arrows ── */
.proj-arrows {
  position: absolute;
  bottom: 28px; left: 80px;
  z-index: 4; display: flex; gap: 10px;
}
.proj-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange); border: none;
  color: var(--black); font-size: 18px; font-weight: 900;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.proj-arrow:hover { background: var(--orange2); transform: scale(1.08); }

/* Responsive */
@media (max-width: 1024px) {
  .proj-carousel-header { padding: 48px 24px 0; }
  .proj-slider { height: 500px; }
  .proj-slide-content { padding: 0 48px; }
  .proj-thumbs { right: 24px; }
  .proj-thumb-item { width: 180px; }
  .proj-arrows { left: 48px; }
}

@media (max-width: 600px) {
  .proj-slider { height: 420px; }
  .proj-thumbs { display: none; }
  .proj-slide-content { padding: 0 24px 0 48px; }
}

/* ══════════════════════════════════════
   PROJECTS PAGE FULL SCREEN SLIDER
══════════════════════════════════════ */
.proj-page { background: var(--black); }

.proj-page-header {
  padding: 100px 80px 0;
  max-width: 800px;
}

.proj-page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin: 8px 0 16px;
}

.proj-page-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* Full screen slider */
.proj-fs-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 76px);
  min-height: 500px;
  overflow: hidden;
  margin-top: 0;
  background: #050504;
}

.proj-fs-slider .reboot-slider-background,
.proj-fs-slider .reboot-slider-background img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.proj-fs-slider .reboot-slider-background img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: none;
}

.proj-fs-slider .reboot-slider-background img.prev {
  opacity: 1; transform: scale(1.08); z-index: 0;
}

.proj-fs-slider .reboot-slider-background img.currentForward,
.proj-fs-slider .reboot-slider-background img.currentBackward {
  z-index: 1; opacity: 1;
  animation: bgNext 0.8s ease-out forwards;
}

.proj-fs-slider .proj-slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, rgba(10,10,8,0.92) 0%, rgba(10,10,8,0.55) 45%, rgba(10,10,8,0.1) 100%),
    linear-gradient(to top,   rgba(10,10,8,0.6)  0%, transparent 45%);
}

/* Left content */
.proj-fs-slider .reboot-slider-left {
  position: absolute;
  left: 80px; top: 50%;
  transform: translateY(-50%);
  z-index: 3; max-width: 500px;
  opacity: 0; transition: opacity 0.8s ease;
}
.proj-fs-slider.loaded .reboot-slider-left { opacity: 1; }

.proj-fs-slider .proj-text { display: none; }
.proj-fs-slider .proj-text.active { display: block; }

/* Right thumbs */
.proj-fs-slider .reboot-slider-right {
  position: absolute;
  right: 64px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0; transition: opacity 0.8s ease;
}
.proj-fs-slider.loaded .reboot-slider-right { opacity: 1; }

.proj-fs-slider .proj-thumb-slide { display: none; flex-direction: column; gap: 12px; }
.proj-fs-slider .proj-thumb-slide.active { display: flex; }

.proj-fs-slider .proj-thumb-item {
  display: block; width: 280px; aspect-ratio: 16/10;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: border-color 0.2s;
}
.proj-fs-slider .proj-thumb-item:hover { border-color: var(--orange); }
.proj-fs-slider .proj-thumb-item img { width:100%; height:100%; object-fit:cover; }

/* Dots */
.proj-fs-slider .proj-dots {
  position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%); z-index: 4;
  display: flex; flex-direction: column; gap: 8px;
}

/* Progress */
.proj-fs-slider .proj-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--orange); z-index: 10;
}
.proj-fs-slider .proj-progress.running {
  width: 100%; transition: width 6s linear;
}

/* Arrows */
.proj-fs-slider .proj-arrows {
  position: absolute; bottom: 32px; left: 80px;
  z-index: 4; display: flex; gap: 10px;
}

/* More link */
.proj-more-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); transition: opacity 0.2s;
}
.proj-more-link:hover { opacity: 0.7; }

@media (max-width: 1024px) {
  .proj-page-header { padding: 80px 24px 0; }
  .proj-fs-slider .reboot-slider-left { left: 48px; }
  .proj-fs-slider .reboot-slider-right { right: 24px; }
  .proj-fs-slider .proj-thumb-item { width: 200px; }
  .proj-fs-slider .proj-arrows { left: 48px; }
}

@media (max-width: 600px) {
  .proj-page-header { padding: 64px 24px 0; }
  .proj-fs-slider .reboot-slider-right { display: none; }
  .proj-fs-slider .reboot-slider-left { left: 48px; max-width: calc(100vw - 96px); }
  .proj-fs-slider .proj-arrows { left: 24px; }
}

/* First slide visible immediately */
.proj-fs-slider .reboot-slider-background img.currentForward:first-child,
.proj-fs-slider .reboot-slider-background img[style*="opacity:1"] {
  opacity: 1 !important;
  transform: scale(1) !important;
  animation: none !important;
}

/* Projects page — fullscreen from nav */
.proj-page { padding-top: 0; }
.proj-fs-fullscreen {
  height: calc(100vh - 76px);
  margin-top: 76px;
}
body.admin-bar .proj-fs-fullscreen { margin-top: calc(76px + 32px) !important; height: calc(100vh - 76px - 32px); }

/* Smaller title so it doesn't wrap as much */
.proj-fs-slider .proj-slide-title {
  font-size: clamp(18px, 2vw, 30px) !important;
  max-width: 460px;
}


/* ═══════════════════════════════════════════════════════
   CUSTOM OVERRIDES
═══════════════════════════════════════════════════════ */

/* ── NAV: transparent → semi-dark on scroll ── */
#main-nav { transition: background 0.35s ease, backdrop-filter 0.35s ease !important; border-bottom: none !important; box-shadow: none !important; }
#main-nav.nav-transparent { background: linear-gradient(to bottom, rgba(5,5,4,0.75) 0%, transparent 100%) !important; backdrop-filter: none !important; }
#main-nav.nav-solid { background: rgba(5,5,4,0.72) !important; backdrop-filter: blur(14px) !important; }
#main-nav .nav-links a { color: rgba(232,230,223,0.72) !important; }
#main-nav .nav-links a:hover { color: var(--white) !important; }
.nav-logo-img { height: 36px !important; width: auto !important; }
.nav-chevron { margin-left: 4px; vertical-align: middle; transition: transform 0.2s; }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.has-dropdown > a::after { content: none !important; }

/* ── DROPDOWN: solid dark background ── */
.nav-dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: 100%; left: 0;
  min-width: 300px; background: #0a0a08;
  border-top: 2px solid var(--orange);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--orange);
  z-index: 999; padding: 6px 0;
  box-shadow: 0 24px 48px rgba(0,0,0,0.8);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateY(6px);
}
.has-dropdown:hover .nav-dropdown,
.nav-dropdown.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-item { display: block !important; padding: 12px 24px !important; font-family: 'Barlow Condensed', sans-serif !important; font-weight: 600 !important; font-size: 13px !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: rgba(232,230,223,0.65) !important; border-bottom: 1px solid rgba(255,255,255,0.04) !important; transition: all 0.15s !important; white-space: nowrap !important; }
.nav-dropdown-item:last-child { border-bottom: none !important; }
.nav-dropdown-item:hover { color: var(--orange) !important; padding-left: 30px !important; background: rgba(255,255,255,0.02) !important; }

/* ── MOBILE MENU ── */
.mobile-close { display: flex; align-self: flex-end; background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; margin-bottom: 8px; padding: 4px 8px; }
.mobile-parent { font-weight: 800 !important; color: var(--white) !important; margin-top: 8px; }
.mobile-sub { font-size: 15px !important; padding: 10px 8px 10px 20px !important; color: rgba(232,230,223,0.55) !important; border-left: 2px solid var(--border) !important; margin-left: 8px !important; }
.mobile-sub:hover { color: var(--orange) !important; border-color: var(--orange) !important; }

/* ── ALL INNER HEROES: photo behind transparent nav ── */
.inner-hero {
  margin-top: 0 !important;
  height: 62vh !important;
  min-height: 480px !important;
  padding: 0 48px 48px !important;
  align-items: flex-end !important;
}
body.admin-bar .inner-hero { height: calc(62vh + 32px) !important; }
.inner-hero-content { padding-top: 76px; }
body.admin-bar .inner-hero-content { padding-top: calc(76px + 32px); }
.inner-hero-bg { top: 0 !important; }

/* ── PROJECTS CAROUSEL: full 100vh below hero ── */
.proj-page .proj-fs-fullscreen {
  margin-top: 0 !important;
  height: 100vh !important;
  min-height: 560px !important;
}
body.admin-bar .proj-page .proj-fs-fullscreen {
  margin-top: 0 !important;
  height: calc(100vh - 32px) !important;
}

/* ── Partners: image logos ── */
.partner-item img { max-height: 36px; max-width: 130px; width: auto; filter: grayscale(100%) brightness(0.6); opacity: 0.6; transition: all 0.3s; object-fit: contain; }
.partner-item:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }

/* ── SERVICE PAGE (redesigned) ── */
.svc-page { padding-top: 0; }
.svc-hero { position: relative; height: 62vh; min-height: 480px; background: var(--black) center/cover no-repeat; display: flex; align-items: flex-end; padding: 76px 80px 56px; margin-top: 0; }
body.admin-bar .svc-hero { padding-top: calc(76px + 32px); }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,4,0.92) 0%, rgba(5,5,4,0.35) 60%, rgba(5,5,4,0.2) 100%); }
.svc-hero-content { position: relative; z-index: 2; max-width: 900px; }
.svc-hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(42px, 6vw, 82px); text-transform: uppercase; letter-spacing: -0.01em; color: var(--white); line-height: 1; margin: 8px 0 12px; }
.svc-hero-sub { font-family: 'Barlow Condensed', sans-serif; font-weight: 300; font-size: 18px; letter-spacing: 0.05em; font-style: italic; color: rgba(232,230,223,0.55); margin: 0; }
.svc-body-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 0; align-items: start; max-width: 1400px; margin: 0 auto; padding: 0 48px 80px; }
.svc-feature-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 48px; }
.svc-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.svc-feature-img:hover img { transform: scale(1.03); }
.svc-main { padding: 56px 64px 0 0; }
.svc-content h2, .svc-content h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; color: var(--white); margin: 40px 0 10px; letter-spacing: 0.02em; }
.svc-content h2 { font-size: clamp(22px, 2.5vw, 32px); }
.svc-content h3 { font-size: clamp(17px, 1.8vw, 22px); color: var(--orange); border-left: 3px solid var(--orange); padding-left: 14px; }
.svc-content p { font-size: 16px; line-height: 1.75; color: rgba(232,230,223,0.7); margin-bottom: 20px; }
.svc-sidebar { position: sticky; top: 108px; padding: 56px 0 0 40px; border-left: 1px solid var(--border); }
.svc-cta-box { background: var(--dark); border: 1px solid var(--border); padding: 28px 24px 24px; margin-bottom: 32px; }
.svc-cta-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 16px; }
.svc-cta-btn { display: block; text-align: center; width: 100%; margin-bottom: 20px; }
.svc-phones { display: flex; flex-direction: column; gap: 6px; }
.svc-phones a { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; color: var(--muted); transition: color 0.2s; }
.svc-phones a:first-child { color: var(--orange); font-weight: 700; font-size: 17px; }
.svc-phones a:hover { color: var(--orange); }
.svc-nav-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.svc-nav-link { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.svc-nav-link:hover, .svc-nav-link.active { color: var(--orange); }
.svc-nav-link.active { font-weight: 800; }

/* ── FOOTER ── */
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; color: var(--muted); }
.footer-contact a { color: var(--orange); transition: opacity .2s; }
.footer-contact a:hover { opacity: .7; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; color: var(--muted); transition: color .2s, border-color .2s; }
.footer-social a:hover { color: var(--orange); border-color: var(--orange); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .inner-hero { height: 52vh !important; min-height: 360px !important; padding: 0 24px 36px !important; }
  .svc-body-wrap { grid-template-columns: 1fr; padding: 0 24px 64px; }
  .svc-hero { padding: 76px 48px 48px; }
  .svc-sidebar { position: static; padding: 40px 0 0; border-left: none; border-top: 1px solid var(--border); margin-top: 40px; }
  .svc-main { padding: 40px 0 0; }
}
@media (max-width: 600px) {
  .svc-hero { padding: 76px 24px 40px; }
}

/* ── Projects: fade from hero into carousel ── */
.proj-page .proj-fs-fullscreen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(5,5,4,0.85) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── Match projects carousel header height to services header ── */
.section-proj-carousel { padding-top: 0; }
.proj-carousel-header {
  padding: 100px 48px 56px !important;
  opacity: 1 !important;
}
@media (max-width: 1024px) {
  .proj-carousel-header { padding: 64px 24px 40px !important; }
}


/* ══════════════════════════════════════════════
   RIGHT PANEL — two stacked thumbnails (definitive)
══════════════════════════════════════════════ */

/* Container */
.proj-fs-slider .reboot-slider-right {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 260px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proj-fs-slider.loaded .reboot-slider-right { opacity: 1; }

/* Each slide group: column stack */
.proj-fs-slider .proj-thumb-slide {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.proj-fs-slider .proj-thumb-slide.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each thumbnail */
.proj-fs-slider .proj-thumb-item {
  display: block;
  width: 260px;
  height: 160px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, transform 0.3s;
  flex-shrink: 0;
}
.proj-fs-slider .proj-thumb-item:hover {
  border-color: var(--orange);
  transform: scale(1.02);
}
.proj-fs-slider .proj-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Homepage carousel thumbs */
#projRight .proj-thumb-slide {
  display: none;
  flex-direction: column;
  gap: 10px;
}
#projRight .proj-thumb-slide.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#projRight .proj-thumb-item {
  width: 220px;
  height: 138px;
  border: 2px solid rgba(255,255,255,0.15);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.3s;
  flex-shrink: 0;
}
#projRight .proj-thumb-item:hover { border-color: var(--orange); transform: scale(1.02); }
#projRight .proj-thumb-item img { width: 100%; height: 100%; object-fit: cover; }

/* Match projects carousel header to services */
.section-proj-carousel { padding-top: 0; }
.proj-carousel-header {
  padding: 100px 48px 56px !important;
  opacity: 1 !important;
}

/* Mobile: hide right panel */
@media (max-width: 1024px) {
  .proj-fs-slider .reboot-slider-right { display: none; }
  .proj-carousel-header { padding: 64px 24px 40px !important; }
}

/* ════════════════════════════════════════════════════════
   CX-SLIDER — new cinematic projects carousel
════════════════════════════════════════════════════════ */

.cx-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #050504;
}
body.admin-bar .cx-slider { height: calc(100vh - 32px); }

/* ── Backgrounds ── */
.cx-bg { position: absolute; inset: 0; }
.cx-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 6s ease;
}
.cx-bg-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.cx-bg-img.cx-prev {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease;
}

/* ── Overlays ── */
.cx-overlay-left {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(5,5,4,0.90) 0%,
    rgba(5,5,4,0.60) 40%,
    rgba(5,5,4,0.05) 65%,
    transparent 100%
  );
}
.cx-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px; z-index: 2;
  background: linear-gradient(to top, rgba(5,5,4,0.80) 0%, transparent 100%);
}

/* ── Project info (left) ── */
.cx-info {
  position: absolute;
  left: 80px; top: 50%;
  transform: translateY(-50%);
  z-index: 4; max-width: 520px;
}
.cx-info-item { display: none; }
.cx-info-item.is-active {
  display: block;
  animation: cxFadeUp 0.6s ease forwards;
}
@keyframes cxFadeUp {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}

.cx-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1;
  color: rgba(255,255,255,0.07);
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  user-select: none;
}
.cx-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 32px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.cx-loc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.cx-loc-line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Preview panel (right) ── */
.cx-previews {
  position: absolute;
  right: 56px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 260px;
}
.cx-preview-group {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.cx-preview-group.is-active {
  display: flex;
  animation: cxFadeIn 0.5s ease forwards;
}
@keyframes cxFadeIn {
  from { opacity:0; } to { opacity:1; }
}

.cx-prev-btn {
  display: block;
  width: 260px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.cx-prev-btn.cx-prev-main { height: 160px; }
.cx-prev-btn:not(.cx-prev-main) { height: 110px; }

.cx-prev-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(5,5,4,0.35);
  transition: background 0.3s;
}
.cx-prev-btn:hover { transform: translateX(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.7); }
.cx-prev-btn:hover::before { background: rgba(5,5,4,0.15); }

.cx-prev-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(to top, rgba(5,5,4,0.85) 0%, transparent 100%);
}

/* ── Bottom bar ── */
.cx-bottom {
  position: absolute;
  bottom: 36px; left: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cx-counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  display: flex; gap: 4px; align-items: center;
}
.cx-cur { color: var(--white); font-size: 18px; }
.cx-sep { opacity: 0.3; }

.cx-progress-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.cx-progress-fill {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 0%;
  background: var(--orange);
}

.cx-arrows { display: flex; gap: 8px; }
.cx-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cx-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

/* ── Dots (left edge) ── */
.cx-dots {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cx-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.cx-dot.is-active {
  background: var(--orange);
  transform: scale(1.5);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .cx-info { left: 48px; max-width: calc(100vw - 96px); }
  .cx-previews { display: none; }
  .cx-bottom { left: 48px; }
}
@media (max-width: 600px) {
  .cx-info { left: 24px; max-width: calc(100vw - 48px); }
  .cx-bottom { left: 24px; bottom: 24px; }
  .cx-dots { left: 8px; }
}

/* ── Fit in page ── */
.proj-page .cx-slider {
  margin-top: 0;
  height: 100vh;
}
body.admin-bar .proj-page .cx-slider { height: calc(100vh - 32px); }

/* ── Carousel title: lighter weight ── */
.cx-title { font-weight: 600 !important; }
.cx-num { font-weight: 700 !important; }

.cx-title { font-weight: 400 !important; }

/* ══ PROJECTS GALLERY SECTION ══ */
.proj-gallery {
  background: var(--black);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.proj-gallery-header {
  max-width: 1400px;
  margin: 0 auto 56px;
}
.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}
.proj-gallery-item {
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--dark);
}
.proj-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.proj-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

@media (max-width: 900px) {
  .proj-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .proj-gallery { padding: 64px 24px; }
}
@media (max-width: 560px) {
  .proj-gallery-grid { grid-template-columns: 1fr; }
}

/* Stats inside dark section (projects on homepage) */
.proj-stats-bar {
  margin: 0 48px 0;
  border-radius: 0;
}
@media (max-width: 768px) { .proj-stats-bar { margin: 0 24px 0; } }

/* ── Active nav link ── */
#main-nav .nav-links a.nav-active,
#main-nav .nav-links .nav-active {
  color: var(--orange) !important;
}

/* ── Carousel title: smaller, lighter, clamp for long text ── */
.cx-title {
  font-weight: 300 !important;
  font-size: clamp(15px, 1.6vw, 22px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.02em !important;
}
.cx-num {
  font-size: clamp(48px, 7vw, 96px) !important;
}

/* ── Hero title: staggered dramatic layout ── */
.hero-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  line-height: 0.9 !important;
}
.ht-line {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
.ht-line-1 {
  font-size: clamp(52px, 7vw, 96px);
  opacity: 0.55;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.ht-line-2 {
  font-size: clamp(80px, 13vw, 180px);
  line-height: 0.85;
}
.ht-line-2 em {
  font-style: normal;
  color: var(--orange);
}
.ht-line-3 {
  font-size: clamp(52px, 7vw, 96px);
  opacity: 0.55;
  font-weight: 300;
  letter-spacing: 0.1em;
  align-self: flex-end;
  margin-right: 8px;
}

/* ── Company notable projects: lighter, readable ── */
.company-stat strong {
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  color: var(--orange) !important;
}
.company-stat span {
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  color: rgba(232,230,223,0.5) !important;
}

/* ── Homepage carousel: hide right thumbnails, lighter text ── */
.section-proj-carousel .reboot-slider-right { display: none !important; }
.section-proj-carousel .proj-slide-title { font-weight: 400 !important; }

/* ── Hero title: smaller sizes ── */
.ht-line-1 { font-size: clamp(32px, 4vw, 56px) !important; }
.ht-line-2 { font-size: clamp(52px, 7.5vw, 104px) !important; }
.ht-line-3 { font-size: clamp(32px, 4vw, 56px) !important; }

/* ── Homepage carousel: smaller project titles ── */
.section-proj-carousel .proj-slide-title {
  font-size: clamp(14px, 1.4vw, 20px) !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

/* ── Homepage carousel titles: much smaller ── */
.section-proj-carousel .proj-slide-title {
  font-size: clamp(12px, 1.1vw, 16px) !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  max-width: 480px !important;
}

/* ── Homepage cx-slider: fits inside section ── */
.hp-cx-slider {
  height: 560px !important;
  min-height: 480px !important;
}
body.admin-bar .hp-cx-slider { height: 560px !important; }
