/* ================================================
   ARGOTRANS - Пътна Помощ Sofia
   Static Site Stylesheet
   Original: https://argotrans-putnapomosht.com
   ================================================ */

/* Google Fonts - Oswald + Manrope only */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&family=Manrope:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary-color: #1d3557;
  --secondary-color: #457b9d;
  --heading-color: #ffffff;
  --body-color: #d1d5db;
  --link-color: #ffc800;
  --dark-bg: #0a0a0a;
  --yellow: #ffc800;
  --yellow-light: #fbbf24;
  --gray-text: #9ca3af;
  --white: #ffffff;
  --black: #121212;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-color);
  background: #0a0a0a;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--link-color); text-decoration: none; }
a:hover { text-decoration: none; }
p { padding-bottom: 1em; margin: 0; }
p:last-child { padding-bottom: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.1em;
  font-weight: 500;
  padding-bottom: 10px;
}
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ---- Layout ---- */
.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.section { padding: 60px 0; }

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  z-index: 999999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,200,0,0.8);
}

/* ================================================
   URGENCY BANNER – Full-row marquee loop
   ================================================ */
.urgency-banner {
  background: linear-gradient(90deg, #1a0a00 0%, #1f0f00 50%, #1a0a00 100%);
  border-bottom: 1px solid rgba(255,200,0,0.3);
  border-top: 1px solid rgba(255,200,0,0.1);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 99998;
}

/* Soft fade edges so text doesn't clip harshly */
.urgency-banner::before,
.urgency-banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.urgency-banner::before {
  left: 0;
  background: linear-gradient(90deg, #1a0a00 0%, transparent 100%);
}

.urgency-banner::after {
  right: 0;
  background: linear-gradient(270deg, #1a0a00 0%, transparent 100%);
}

.urgency-banner a {
  color: var(--yellow);
  text-decoration: none;
  vertical-align: baseline;
}

.urgency-banner-track span,
.urgency-banner-track a {
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .banner-phone { display: none; }

  .urgency-banner {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 0;
  }

  .urgency-banner::before,
  .urgency-banner::after {
    width: 30px;
  }
}

.urgency-banner-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeLoop 30s linear infinite;
  will-change: transform;
}

.urgency-banner-track span {
  display: inline-block;
  padding-right: 60px;
}

@keyframes marqueeLoop {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.site-header {
  background: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1220px;
  width: 95%;
  margin: 0 auto;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,200,0,0.3);
}

/* ── Logo ── */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 28px;
}

.header-logo a {
  display: block;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.logo-badge-chip {
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-badge-sub {
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Desktop Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 8px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: #9ca3af;
  letter-spacing: 0.5px;
  line-height: 1em;
  transition: color 200ms ease;
  white-space: nowrap;
}

.main-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
  color: #fff;
}

.main-menu > li > a:hover::after,
.main-menu > li.active > a::after {
  transform: scaleX(1);
}

.nav-chevron {
  font-size: 9px;
  color: rgba(255,200,0,0.5);
  margin-left: 2px;
  transition: transform 250ms ease, color 200ms ease;
}

.main-menu > li:hover .nav-chevron,
.main-menu > li:focus-within .nav-chevron {
  transform: rotate(180deg);
  color: var(--yellow);
}

/* ── Dropdown ── */
.main-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #141414;
  min-width: 250px;
  border-top: 2px solid var(--yellow);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  z-index: 9999;
  list-style: none;
  overflow: hidden;
}

.main-menu > li:hover .sub-menu,
.main-menu > li:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: #b0b0b0;
  transition: background 200ms ease, color 200ms ease, padding-left 200ms ease;
  white-space: nowrap;
}

.main-menu .sub-menu li a i {
  color: var(--yellow);
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.main-menu .sub-menu li a:hover {
  background: rgba(255,200,0,0.07);
  color: #fff;
  padding-left: 26px;
}

/* ── CTA Zone ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 20px;
  margin-left: 12px;
  border-left: 1px solid rgba(255,200,0,0.2);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 14px 0 rgba(255,200,0,0.35);
  animation: vibratePhone 5s infinite;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-cta i {
  font-size: 13px;
}

.btn-cta:hover {
  box-shadow: 0 4px 24px 0 rgba(255,200,0,0.55);
  color: var(--dark-bg) !important;
  transform: translateY(-1px);
}

/* ── Language Toggle ── */
#langSwitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: 6px;
  color: rgba(255,200,0,0.8);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

#langSwitch:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

/* ── Mobile Hamburger ── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 100005;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) { width: 24px; }
.mobile-menu-toggle span:nth-child(2) { width: 16px; }
.mobile-menu-toggle span:nth-child(3) { width: 24px; }

.mobile-menu-toggle.active span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Backdrop ── */
.mm-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 100001;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mm-backdrop.active {
  display: block;
}

/* ── Mobile Menu — Side Drawer ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  min-height: 100dvh;
  background: #0d0d0d;
  z-index: 100002;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255,200,0,0.12);
  box-shadow: -8px 0 48px rgba(0,0,0,0.8);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Top bar inside drawer: logo + X */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,200,0,0.15);
  flex-shrink: 0;
  background: #0d0d0d;
}

.mobile-menu-header .mm-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-header .mm-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.mobile-menu-close {
  background: rgba(255,200,0,0.08);
  border: 1px solid rgba(255,200,0,0.3);
  color: var(--yellow);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  z-index: 100003;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease, border-color 0.2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
  transform: rotate(90deg);
}

/* Nav links */
.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 8px 0;
  flex: 1;
}

.mobile-menu .mobile-nav-list > li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu .mobile-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e0e0e0;
  padding: 18px 22px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}

.mobile-menu .mobile-nav-list > li > a:hover,
.mobile-menu .mobile-nav-list > li > a:active {
  color: var(--yellow);
  background: rgba(255,200,0,0.05);
  padding-left: 28px;
}

.mobile-menu .mobile-nav-list > li > a .mn-icon {
  font-size: 16px;
  color: var(--yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.85;
}

/* CTA block at bottom */
.mobile-cta-wrap {
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(255,200,0,0.15);
  flex-shrink: 0;
  background: #0d0d0d;
}

.mobile-cta-wrap .mm-cta-label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.mobile-cta-wrap .mm-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255,200,0,0.4), 0 4px 16px rgba(0,0,0,0.4);
  animation: vibratePhone 5s infinite;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.mobile-cta-wrap .mm-cta-btn:hover,
.mobile-cta-wrap .mm-cta-btn:active {
  background: #ffe033;
  box-shadow: 0 0 44px rgba(255,200,0,0.65), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.mobile-cta-wrap .mm-cta-btn i {
  font-size: 18px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  background: var(--dark-bg);
  padding: 80px 0 120px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg preserveAspectRatio='none' width='100%25' height='140px' viewBox='0 0 1280 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffc800'%3E%3Cpath d='M0 0v140h1280L0 0z' fill-opacity='.5' /%3E%3Cpath d='M0 42v98h1280L0 42z' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 76px;
  transform: scale(-1, 1);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid #D4A017;
  background: #1A1403;
  box-shadow: 0 0 20px #3A2C05;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff3c;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,60,0.6) 0%, rgba(0,255,60,0.2) 40%, transparent 70%);
  animation: greenPulse 1.5s infinite ease-in-out;
}

@keyframes greenPulse {
  0% { opacity: 0.6; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 96px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 10px;
  text-align: center;
}

.hero-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: -30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.promo-burst-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-burst {
  width: clamp(130px, 14vw, 200px);
  height: clamp(90px, 11vw, 145px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.2px;
  color: #111;
  background: #fff;
  border-radius: 55% 45% 55% 45% / 55% 55% 45% 45%;
  position: relative;
  box-shadow: 0 0 55px rgba(255, 184, 128, 0.55), 0 20px 50px rgba(0,0,0,0.45);
  animation: promoBlobBlink 1.3s ease-in-out infinite;
  font-family: var(--font-heading);
}

.promo-burst::before {
  content: "";
  position: absolute;
  inset: -10px -14px -14px -10px;
  background: rgba(251, 191, 36, 0.95);
  border-radius: 60% 40% 50% 50% / 55% 60% 40% 45%;
  z-index: -1;
  filter: drop-shadow(10px 10px 0 rgba(0,0,0,0.55));
}

@keyframes promoBlobBlink {
  0%, 100% { opacity: 1; transform: rotate(-20deg) scale(1); }
  50% { opacity: 0.65; transform: rotate(-20deg) scale(1.05); }
}

.hero-desc {
  color: #d1d5db;
  font-family: var(--font-body);
  font-size: 20px;
  text-align: start;
  margin-top: 10px;
}

.hero-insurance {
  color: #d1d5db;
  font-family: var(--font-body);
  font-size: 20px;
  text-align: start;
  margin-top: 10px;
}

.hero-insurance strong { color: #fff; }

.hero-insurance .amount {
  color: var(--yellow-light);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
}

.hero-cta-row {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-large {
  display: inline-block;
  padding: 18px 40px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 200, 0, 0.6);
  animation: vibratePhone 5s infinite;
  transform-origin: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary-large:hover {
  color: var(--dark-bg) !important;
  box-shadow: 0 6px 30px rgba(255, 200, 0, 0.8);
}

@keyframes vibratePhone {
  0%, 85%, 100% { transform: rotate(0deg) scale(1); }
  87% { transform: rotate(-3deg) scale(1.02); }
  89% { transform: rotate(3deg) scale(1.02); }
  91% { transform: rotate(-2deg) scale(1.01); }
  93% { transform: rotate(2deg) scale(1.01); }
  95% { transform: rotate(0deg) scale(1); }
}

.hero-features {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.hero-feature-icon {
  font-size: 3.5rem;
  color: var(--yellow-light);
  margin-bottom: 8px;
  display: block;
  animation: iconFloat 4s ease-in-out infinite;
}

.hero-feature:nth-child(2) .hero-feature-icon { animation-delay: 0.8s; }
.hero-feature:nth-child(3) .hero-feature-icon { animation-delay: 1.6s; }
.hero-feature:nth-child(4) .hero-feature-icon { animation-delay: 2.4s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-6px) scale(1.08); }
}

.hero-feature-text {
  font-family: var(--font-body);
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  margin-top: -20px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg preserveAspectRatio='none' width='100%25' height='140px' viewBox='0 0 1280 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffc800'%3E%3Cpath d='M0 0v140h1280L0 0z' fill-opacity='.5' /%3E%3Cpath d='M0 42v98h1280L0 42z' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 60px;
  transform: scale(-1, -1);
  z-index: 1;
  pointer-events: none;
}

.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 50px;
  animation: cargoPulse 3s ease-in-out infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes cargoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  padding: 25px 20px;
  border-radius: 12px;
  background: #141414;
  border: 1px solid #1f1f1f;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.2), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 4rem;
  color: var(--yellow-light);
  display: block;
  margin-bottom: 15px;
  animation: iconFloat 4s ease-in-out infinite;
}

.service-card:nth-child(2) .icon { animation-delay: 0.8s; }
.service-card:nth-child(3) .icon { animation-delay: 1.6s; }
.service-card:nth-child(4) .icon { animation-delay: 2.4s; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.6;
}

.service-card .highlight { color: var(--yellow); font-weight: 500; }

/* About/Description Section */
.about-section {
  background: #0a0a0a;
  padding: 60px 0;
  text-align: center;
}

.about-section p {
  font-size: 17px;
  color: #d1d5db;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 30px 0;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--yellow);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   WHY US SECTION
   ================================================ */
.why-section {
  background: var(--dark-bg);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.why-section .section-label {
  color: var(--yellow);
}

.why-section .section-title {
  color: #fff;
  animation: none;
}

.why-section .section-subtitle {
  color: #d1d5db;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 50px;
}

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

.why-card {
  text-align: center;
  padding: 20px;
}

.why-card .icon {
  font-size: 2.5rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 15px;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  color: #d1d5db;
  font-size: 15px;
  padding-bottom: 0;
}

.btn-contact {
  display: inline-block;
  padding: 14px 30px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: box-shadow 0.2s;
}

.btn-contact:hover {
  box-shadow: 0 4px 20px rgba(255,200,0,0.5);
  color: var(--dark-bg) !important;
}

/* ================================================
   BENTO GALLERY
   ================================================ */
.bento-section {
  background: #0a0a0a;
  padding: 100px 0 80px;
  overflow: hidden;
}

.bento-header {
  text-align: center;
  margin-bottom: 48px;
}

.bento-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 0;
}

.bento-header h2 span { color: var(--yellow); }

.bento-header p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #9ca3af;
  margin-top: 12px;
  padding-bottom: 0;
}

/* Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #141414;
}

/* Only hide items for animation when JS is loaded */
.js-ready .bento-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-ready .bento-item.in-view,
.bento-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bento-item.wide  { grid-column: span 2; }
.bento-item.tall  { grid-row: span 2; }
.bento-item.featured { grid-column: span 2; grid-row: span 2; }

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-item:hover img {
  transform: scale(1.07);
}

/* Gradient overlay on hover */
.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.88) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-item:hover::after { opacity: 1; }

/* Yellow corner accent */
.bento-item::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  border-radius: 0 4px 0 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-item:hover::before { opacity: 1; }

/* Caption */
.bento-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.bento-item:hover .bento-caption {
  transform: translateY(0);
  opacity: 1;
}

.bento-caption .caption-tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 2px;
}

.bento-caption p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  padding-bottom: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .bento-section { padding: 60px 0 50px; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
  .bento-item.featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .bento-item.wide,
  .bento-item.featured { grid-column: span 1; }
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lb-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lb-overlay img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lb-overlay.active img {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 100001;
  line-height: 1;
}

.lb-close:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 200, 0, 0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 100001;
  line-height: 1;
}

.lb-nav:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .lb-nav { width: 44px; height: 44px; font-size: 16px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-overlay img { max-width: 96vw; max-height: 75vh; }
}

/* Stats Counter Section */
.stats-section {
  background: #111;
  padding: 60px 0;
  text-align: center;
}

.stats-section .section-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.stats-section .section-desc {
  color: #d1d5db;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.stats-counters {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-counter-item { text-align: center; }

.stat-counter {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--yellow);
  display: block;
  line-height: 1;
}

.stat-counter-label {
  color: #d1d5db;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  background: #0d0d0d;
  padding: 80px 0;
  border-top: 1px solid #1f1f1f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonial-card {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 25px 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255,200,0,0.15);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
  padding-bottom: 0;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.testimonial-date {
  font-size: 12px;
  color: #6b7280;
  margin-top: 3px;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255,200,0,0.92) 0%, rgba(251,191,36,0.95) 100%), url('images/putna-pomosht/putna-pomosht-sofia-05.jpg') center/cover no-repeat;
  padding: 70px 0;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    #000000, #000000 80px,
    #fbbf24 80px, #fbbf24 160px
  );
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  background-size: 200px 200px;
  animation: hazard-move 7s linear infinite;
}

@keyframes hazard-move {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.final-cta p {
  color: var(--dark-bg);
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-final-cta {
  display: inline-block;
  padding: 18px 50px;
  background: var(--dark-bg);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  border-radius: 10px;
  animation: vibratePhone 5s infinite;
  letter-spacing: 1px;
}

.btn-final-cta:hover {
  color: #fff !important;
  box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,200,0,0.03) 40px,
    rgba(255,200,0,0.03) 80px
  );
  background-size: 113px 113px;
  animation: footerStripeMove 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes footerStripeMove {
  0% { background-position: 0 0; }
  100% { background-position: 113px 113px; }
}

.site-footer > * { position: relative; z-index: 1; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  display: block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 3.5rem;
  width: auto;
}

.footer-desc {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--yellow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray-text);
  font-size: 14px;
}

.footer-contact-item .icon {
  color: var(--yellow);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--gray-text);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--yellow); }

.footer-services-list {
  list-style: none;
}

.footer-services-list li {
  margin-bottom: 10px;
}

.footer-services-list li a {
  color: var(--gray-text);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-services-list li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  color: var(--gray-text);
  font-size: 13px;
}

.footer-credit {
  color: var(--gray-text);
  font-size: 13px;
}

.footer-credit a {
  color: var(--yellow);
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--dark-bg);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #0a0a0a;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 56px;
  color: #fff;
  margin-bottom: 15px;
}

.page-hero .page-hero-desc {
  color: #d1d5db;
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto;
}

/* ================================================
   CONTENT SECTIONS (inner pages)
   ================================================ */
.content-section {
  padding: 70px 0;
  background: #0a0a0a;
}

.content-section.bg-dark {
  background: var(--dark-bg);
  color: #fff;
}

.content-section.bg-dark h2,
.content-section.bg-dark h3 {
  color: #fff;
}

.content-section.bg-dark p {
  color: #d1d5db;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.content-section h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Reaction times */
.reaction-list {
  list-style: none;
  margin: 20px 0;
}

.reaction-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db;
  font-size: 16px;
}

.reaction-list li .badge {
  background: var(--yellow);
  color: var(--dark-bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

/* Areas list */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin-top: 20px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 6px 0;
  color: #d1d5db;
}

.area-item::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 500;
}

/* Services list */
.services-list {
  list-style: none;
  margin: 20px 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: #d1d5db;
}

.services-list li::before {
  content: "›";
  color: var(--yellow);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

/* Pricing Section */
.pricing-card {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--yellow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #1f1f1f;
}

.price-row:last-child { border-bottom: none; }

.price-label {
  font-size: 16px;
  color: #d1d5db;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.price-value .eur {
  color: var(--yellow);
}

/* Info boxes */
.info-box {
  background: #141414;
  border-left: 4px solid var(--yellow);
  padding: 20px 25px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.info-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.info-box p { font-size: 15px; padding-bottom: 0; color: #d1d5db; }

/* Transport items grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.transport-card {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.transport-card:hover {
  box-shadow: 0 8px 30px rgba(255,200,0,0.15);
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.transport-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.transport-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.transport-card p {
  font-size: 14px;
  color: #9ca3af;
  padding-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: #141414;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.contact-form h2 {
  color: #ffffff !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #d1d5db;
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #d1d5db;
  background: #1a1a1a;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 15px;
  color: #d1d5db;
}

.captcha-row input {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  text-align: center;
  background: #1a1a1a;
  color: #d1d5db;
}

.btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
  letter-spacing: 1px;
}

.btn-submit:hover {
  box-shadow: 0 4px 20px rgba(255,200,0,0.5);
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
  background: #111111;
  padding: 12px 0;
  font-size: 13px;
  color: var(--gray-text);
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: var(--gray-text); }

/* ================================================
   FLOATING CTA PHONE BUTTON
   ================================================ */
.floating-phone-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.floating-phone-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(255,200,0,0.5);
  animation: floatPulse 2s ease-in-out infinite;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.floating-phone-btn a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255,200,0,0.8);
}

.floating-phone-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255,200,0,0.5), 0 0 0 0 rgba(255,200,0,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255,200,0,0.7), 0 0 0 14px rgba(255,200,0,0);
    transform: scale(1.05);
  }
}

/* ================================================
   EMERGENCY MODAL
   ================================================ */
.emergency-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 999995;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.emergency-modal-overlay.show {
  display: flex;
}

.emergency-modal {
  background: #141414;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 40px 35px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s ease;
  box-shadow: 0 0 60px rgba(255,200,0,0.2);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.emergency-modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: iconFloat 2s ease-in-out infinite;
}

.emergency-modal h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.emergency-modal p {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.emergency-modal-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--yellow);
  color: var(--dark-bg) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  border-radius: 10px;
  text-decoration: none;
  animation: vibratePhone 5s infinite;
  margin-bottom: 15px;
  width: 100%;
  justify-content: center;
}

.emergency-modal-dismiss {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
  text-decoration: underline;
}

.emergency-modal-dismiss:hover {
  color: #9ca3af;
}

.emergency-modal-close-x {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.emergency-modal-close-x:hover { color: var(--yellow); }

/* ================================================
   SECTION EYEBROW & HEADING (shared)
   ================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255,200,0,0.3);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  padding-bottom: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 980px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-inner { padding: 12px 18px; }

  .hero-title { font-size: 72px; }
  .hero-features { flex-wrap: wrap; }
  .hero-feature { flex-basis: 50%; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; max-width: 500px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-col:first-child { grid-column: span 2; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-counters { gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hero-section { padding: 60px 0 100px; min-height: unset; }
  .hero-title { font-size: 48px; }
  .hero-badge { font-size: 12px; }
  .hero-subtitle-row { flex-direction: column; margin-top: 0; margin-bottom: 30px; }
  .hero-features { flex-wrap: wrap; }
  .hero-feature { flex-basis: 45%; margin-bottom: 20px; }
  .hero-section::after { height: 36px; background-size: 100% 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner .footer-col:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-grid-3 { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .stats-counters { flex-direction: column; gap: 25px; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .floating-phone-btn { bottom: 20px; right: 18px; }

}

@media (max-width: 480px) {
  .hero-feature { flex-basis: 100%; }
  .areas-grid { grid-template-columns: 1fr; }
  .emergency-modal { padding: 30px 20px; }
}

/* ================================================
   SECTION DIVIDERS
   ================================================ */
.section-divider {
  position: relative;
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,200,0,0.25) 25%, rgba(255,200,0,0.4) 50%, rgba(255,200,0,0.25) 75%, transparent);
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,200,0,0.5);
}

/* Variant: wider glow */
.section-divider-glow {
  position: relative;
  height: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,200,0,0.12);
  box-shadow: 0 1px 20px rgba(255,200,0,0.06);
}

/* Parallax photo strip dividers */
.section-divider-parallax {
  height: 100px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.section-divider-parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.50) 50%, rgba(10,10,10,0.70) 100%);
  pointer-events: none;
}

.section-divider-parallax.strip-1 {
  background-image: url('images/putna-pomosht/putna-pomosht-sofia-09.jpg');
}

.section-divider-parallax.strip-2 {
  background-image: url('images/putna-pomosht/putna-pomosht-sofia-04.jpg');
}

.section-divider-parallax.strip-3 {
  background-image: url('images/prevoz/tehnika-platforma-sofia-4.jpg');
}

.section-divider-parallax.strip-4 {
  background-image: url('images/putna-pomosht/repatrirane-avtomobil-sofia-2.jpg');
}

@media (max-width: 768px) {
  .section-divider-parallax {
    height: 70px;
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider-parallax {
    background-attachment: scroll;
  }
}

/* ================================================
   SCROLL REVEAL — Generic
   ================================================ */
/* Only animate when JS is loaded */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-ready .reveal.reveal-visible,
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-ready .reveal-left.reveal-visible,
.reveal-left.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-ready .reveal-right.reveal-visible,
.reveal-right.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-ready .reveal-scale.reveal-visible,
.reveal-scale.reveal-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

/* ================================================
   HOVER EFFECTS — Cards (stat, why, seo)
   ================================================ */
.hp-stats .stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-stats .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  border-color: rgba(255,200,0,0.4);
}

.hp-why .why-item {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hp-why .why-item:hover {
  transform: translateX(6px);
  background: rgba(255,200,0,0.04);
  border-color: rgba(255,200,0,0.3);
}

.hp-why .why-item:hover .why-icon {
  transform: scale(1.1);
  transition: transform 0.25s ease;
}

/* About/FAQ/SEO sections card hover */
.about-seo-section,
.faq-seo-section {
  transition: background 0.3s ease;
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion-item {
  border: 1px solid rgba(255,200,0,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(255,200,0,0.35);
  box-shadow: 0 0 20px rgba(255,200,0,0.05);
}

.faq-accordion-item.is-open {
  border-color: rgba(255,200,0,0.4);
  box-shadow: 0 0 30px rgba(255,200,0,0.08);
}

.faq-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  background: #141414;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.25s ease;
}

.faq-accordion-toggle:hover {
  background: #1a1a1a;
}

.faq-accordion-toggle:focus-visible {
  outline: 2px solid #ffc800;
  outline-offset: -2px;
  border-radius: 12px;
}

.faq-accordion-question {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: #ffc800;
  border: 1px solid rgba(255,200,0,0.25);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s ease,
              border-color 0.25s ease;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  transform: rotate(45deg);
  background: rgba(255,200,0,0.12);
  border-color: rgba(255,200,0,0.5);
}

.faq-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.is-open .faq-accordion-body {
  grid-template-rows: 1fr;
}

.faq-accordion-answer {
  overflow: hidden;
}

.faq-accordion-answer p {
  padding: 0 24px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}

.faq-accordion-item.is-open .faq-accordion-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   REDUCED MOTION — Accessibility
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .bento-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section-divider::before {
    box-shadow: none;
  }

  .urgency-banner-track {
    animation: none !important;
  }

  .faq-accordion-body,
  .faq-accordion-icon,
  .faq-accordion-answer p {
    transition: none !important;
  }
}
