/* ============================================================
   EKA Berlin — style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #111111;
  --dark:        #1a1a1a;
  --yellow:      #f4b400;
  --yellow-dark: #d4a000;
  --white:       #ffffff;
  --gray-light:  #f8f8f8;
  --text-main:   #222222;
  --text-muted:  #666666;
  --section-pad: 80px 64px;
  --radius:      6px;
  --transition:  0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Site Wrapper ---------- */
.site-wrapper {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--black);
  border-bottom: 2px solid #222;
}

.navbar-inner {
  width: 100%;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg { display: block; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  text-transform: uppercase;
}

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

/* CTA button */
.btn-nav-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
}

.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,0,0.25);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-transform: uppercase;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

/* btn-outline mbi sfond të errët (hero, cta dark) */
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.service-tag {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(244,180,0,0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ============================================================
   CARD BACKGROUNDS
   ============================================================ */
.card-haus {
  background:
    linear-gradient(160deg, rgba(46,40,32,0.45) 0%, rgba(14,12,9,0.55) 100%),
    url('../images/pastrimiizyrave.jpg') center/cover no-repeat;
}

.card-winter {
  background:
    linear-gradient(160deg, rgba(20,28,40,0.45) 0%, rgba(8,12,20,0.55) 100%),
    url('../images/pastuesbote.jpg') center/cover no-repeat;
}

.card-garten {
  background:
    linear-gradient(160deg, rgba(18,26,14,0.45) 0%, rgba(7,13,5,0.55) 100%),
    url('../images/kopshtari.jpg') center/cover no-repeat;
}

.card-entrum {
  background:
    linear-gradient(160deg, rgba(32,24,16,0.45) 0%, rgba(12,9,5,0.55) 100%),
    url('../images/pastrimiisendevengashtepia.jpg') center/cover no-repeat;
}

.card-about {
  background:
    linear-gradient(160deg, rgba(20,20,30,0.35) 0%, rgba(8,8,15,0.45) 100%),
    url('../images/rrethnesh.jpg') center/cover no-repeat;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px 64px;
  background: #1a1a1a;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
}

.breadcrumb a { color: #888; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero {
  display: flex;
  align-items: stretch;
  min-height: 620px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  flex: 0 0 50%;
  padding: var(--section-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-left h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: 16px;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero right — service grid */
.hero-right {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
  padding: 40px 40px 40px 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.service-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  min-height: 130px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.service-grid-card:last-child {
  min-height: 130px;
}

.service-grid-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.sgc-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}

.sgc-arrow {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  flex-shrink: 0;
}

.sgc-arrow svg { width: 10px; height: 10px; }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--gray-light);
  padding: 48px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,180,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,180,0,0.2);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.feature-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   SERVICE SECTIONS (HOMEPAGE)
   ============================================================ */
.service-section {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  overflow: hidden;
  margin: 0 48px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #eeeeee;
}

.service-section.reverse { flex-direction: row-reverse; }

.service-section.bg-white { background: var(--white); }
.service-section.bg-gray  { background: var(--gray-light); }

#sherbimet { padding: 0 0 64px; background: var(--gray-light); }

.service-section-img {
  flex: 0 0 42%;
  min-height: 340px;
}

.service-section-body {
  flex: 1;
  padding: var(--section-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-section-body h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}

.service-section-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 8px 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
}

.chk-icon {
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-icon svg { width: 11px; height: 11px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--yellow);
  padding: 80px 64px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 16px;
  color: rgba(0,0,0,0.65);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-yellow {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cta-section .btn-yellow:hover {
  background: #333;
}

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */

/* Wrapping container to give breathing room around the card */
.service-hero-wrap {
  background: var(--gray-light);
  padding: 48px 48px 48px;
}
.service-hero {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  position: relative;
  margin: 0 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.service-hero-left {
  flex: 0 0 55%;
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle yellow glow top-left */
.service-hero-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,180,0,0.07) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  pointer-events: none;
}

/* Yellow accent bar on right edge */
.service-hero-left::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, transparent, var(--yellow), transparent);
  border-radius: 2px;
}

.service-hero-left h1 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.service-hero-left > .service-tag {
  position: relative;
  z-index: 1;
}

.service-hero-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.service-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.service-hero-right {
  flex: 0 0 45%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

/* Subtle light overlay blending into the left panel */
.service-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}

/* ============================================================
   SERVICE PAGE CONTENT
   ============================================================ */
.service-page-content {
  padding: var(--section-pad);
  background: var(--white);
}

.service-page-content h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.service-page-content .intro-p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #eee;
}

.service-page-content h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  margin-top: 56px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.subservices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.subservice-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid #ebebeb;
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}

.subservice-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-left-color: var(--yellow-dark);
}

.subservice-chk {
  width: 30px;
  height: 30px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(244,180,0,0.3);
}

.subservice-chk svg { width: 13px; height: 13px; }

.subservice-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.subservice-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  background: var(--black);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,180,0,0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-cta h3 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.service-cta p {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

/* ============================================================
   ABOUT STATS
   ============================================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 48px;
}

.about-stat {
  background: var(--dark);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE HERO (About / Contact)
   ============================================================ */
.page-hero {
  padding: 80px 64px;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.page-hero-content {
  max-width: 640px;
}

.page-hero-content h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero-content p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Stats */
.stats-section {
  background: var(--black);
  padding: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* Mission */
.about-mission {
  display: flex;
  align-items: stretch;
  min-height: 360px;
  background: var(--white);
}

.about-mission-text {
  flex: 1;
  padding: var(--section-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about-mission-text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--black);
}

.about-mission-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.about-mission-img {
  flex: 0 0 42%;
}

/* Values */
.about-values {
  background: var(--gray-light);
  padding: var(--section-pad);
}

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

.about-values-header h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(244,180,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(244,180,0,0.2);
}

.value-icon svg { width: 26px; height: 26px; }

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why section */
.about-why {
  background: var(--white);
  padding: var(--section-pad);
}

.about-why-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-why-text {
  flex: 1;
}

.about-why-text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
}

.why-item .chk-icon { flex-shrink: 0; margin-top: 1px; }

.why-item-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.why-item-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-why-aside {
  flex: 0 0 340px;
}

.about-cta-box {
  background: var(--black);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}

.about-cta-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-cta-box p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: var(--section-pad);
  background: var(--white);
}

.contact-form-col {
  flex: 1;
}

.contact-form-col h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  border-left: 4px solid var(--yellow);
  padding-left: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244,180,0,0.15);
}

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

/* Contact Info col */
.contact-info-col {
  flex: 0 0 380px;
}

.contact-info-col h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  border-left: 4px solid var(--yellow);
  padding-left: 14px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border-left: 3px solid var(--yellow);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.contact-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
}

.hours-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--black);
}

.hours-table td:last-child { color: var(--text-muted); text-align: right; }

.hours-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  width: 100%;
  background: var(--black);
  border-top: 2px solid #222;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-logo-sub {
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #888;
  transition: color var(--transition);
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #888;
}

.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: #555;
}

.footer-copy-links {
  display: flex;
  gap: 20px;
}

.footer-copy-links a {
  font-size: 12px;
  color: #555;
  transition: color var(--transition);
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: var(--white);
}

.contact-info {
  background: var(--dark);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(244,180,0,0.1);
  border: 1px solid rgba(244,180,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-val {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.contact-info-val a {
  color: #ccc;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-val a:hover { color: var(--yellow); }

.contact-info-services {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info-services h4 {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.contact-info-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-services ul li a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-services ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-services ul li a:hover { color: var(--yellow); }

.contact-form-wrap {
  padding: 56px 64px;
}

.contact-form-wrap h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req { color: var(--yellow); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: #fafafa;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244,180,0,0.12);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
  margin-top: -8px;
}

.form-feedback {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-feedback--success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.form-feedback--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

  :root { --section-pad: 48px 24px; }

  /* Navbar */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #222;
    padding: 8px 0 16px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a,
  .btn-nav-cta {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 0;
  }

  .navbar { position: sticky; }
  .navbar-inner { position: relative; }

  /* Hero */
  .hero { flex-direction: column; min-height: auto; }
  .hero-left,
  .hero-right { flex: none; width: 100%; }
  .hero-left { padding: 40px 24px 32px; }
  .hero-right { padding: 0 24px 32px; }
  .service-grid-card { min-height: 100px; }

  /* Features */
  .features-bar {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
    gap: 24px;
  }

  /* Service sections */
  .service-section { flex-direction: column !important; margin: 0 16px 24px; border-radius: 12px; }
  .service-section.reverse { flex-direction: column !important; }
  .service-section-img { flex: none; height: 220px; width: 100%; }
  .service-section-body { padding: 40px 24px; }

  /* CTA */
  .cta-section { padding: 60px 24px; }

  /* Service hero */
  .service-hero { flex-direction: column; margin: 0 16px; border-radius: 12px; }
  .service-hero-wrap { padding: 24px 16px 24px; }
  .service-hero-left,
  .service-hero-right { flex: none; width: 100%; }
  .service-hero-left { padding: 40px 24px; }
  .service-hero-right { min-height: 200px; }

  /* Service content */
  .service-page-content { padding: 48px 24px; }
  .subservices-grid { grid-template-columns: 1fr; }

  /* About */
  .stats-section {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
  }

  .about-mission { flex-direction: column; }
  .about-mission-text { padding: 40px 24px; }
  .about-mission-img { flex: none; height: 220px; width: 100%; order: -1; }

  .about-values { padding: 48px 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .about-why { padding: 48px 24px; }
  .about-why-inner { flex-direction: column; gap: 32px; }
  .about-why-aside { flex: none; width: 100%; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stat { padding: 28px 16px; }

  /* Contact */
  .contact-section { flex-direction: column; padding: 40px 24px; gap: 32px; }
  .contact-info-col { flex: none; width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact page */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 40px 24px; }
  .contact-info { padding: 40px 24px; }

  /* Service CTA */
  .service-cta { padding: 48px 24px; }

  /* Page hero */
  .page-hero { padding: 48px 24px; min-height: 220px; }

  /* Breadcrumb */
  .breadcrumb { padding: 12px 24px; }

  /* Footer */
  .footer-inner { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .features-bar { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .service-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat { padding: 24px 12px; border-radius: 8px; }
  .about-stat-num { font-size: 32px; }
  .about-stat-label { font-size: 11px; letter-spacing: 0.5px; }
}

/* ===================== SECTION EYEBROW ===================== */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

/* ===================== WORKING HOURS ===================== */
.hours-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.hours-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.hours-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.hours-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
}

.hours-header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hours-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.hours-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.hours-emergency {
  border-color: rgba(244,180,0,0.3);
}

.hours-icon {
  width: 40px;
  height: 40px;
}

.hours-icon svg {
  width: 100%;
  height: 100%;
}

.hours-day {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}

.hours-time {
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 1px;
}

.hours-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
}

.hours-badge.open {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.hours-badge.closed {
  background: rgba(136,136,136,0.1);
  color: #888;
  border: 1px solid rgba(136,136,136,0.2);
}

.hours-badge.emergency {
  background: rgba(244,180,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(244,180,0,0.3);
}

/* ===================== LOCATION ===================== */
.location-section {
  background: var(--white);
  padding: 80px 0;
}

.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.location-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
}

.location-body p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.loc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.loc-icon svg {
  width: 100%;
  height: 100%;
}

.location-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { height: 280px; order: -1; }
  .hours-inner, .location-inner { padding: 0 24px; }
}

/* ===================== CONTACT MAP ===================== */
.kontakt-map-section {
  width: 100%;
  height: 420px;
  display: block;
}

.contact-map-inline {
  padding: 0;
  min-height: 500px;
  overflow: hidden;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews-section {
  background: var(--gray-light);
  padding: 90px 0;
}

.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}

.reviews-header p {
  color: #555;
  font-size: 1rem;
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #555;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #555;
  padding: 48px;
  font-size: 14px;
}

/* Individual review card */
.review-card-pub {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* New review enters with animation */
.review-card-pub.rcp-new {
  opacity: 0;
  transform: translateY(-12px);
  border-color: rgba(244,180,0,0.4);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 1.5s ease;
}

.review-card-pub.rcp-new.rcp-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card-pub:hover {
  border-color: rgba(244,180,0,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(244,180,0,0.12);
}

.review-card-pub::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 64px;
  color: rgba(244,180,0,0.14);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.rcp-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rcp-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,180,0,0.2) 0%, rgba(244,180,0,0.08) 100%);
  border: 2px solid rgba(244,180,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(244,180,0,0.15);
}

.rcp-meta { flex: 1; }

.rcp-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  display: block;
  line-height: 1.2;
}

.rcp-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.rcp-star {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1;
}

.rcp-star.filled {
  color: #f4b400;
  text-shadow: 0 1px 3px rgba(244,180,0,0.3);
}

.rcp-msg {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  flex: 1;
}

.rcp-time {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

/* View All button */
.reviews-view-all-wrap {
  text-align: center;
  margin: 40px 0 0;
}

#reviews-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  border: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244,180,0,0.25);
}

#reviews-view-all:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(244,180,0,0.35);
}

#reviews-view-all .rva-count {
  background: rgba(0,0,0,0.12);
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 13px;
}

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

.reviews-loading svg {
  animation: spin 1.2s linear infinite;
}

/* Divider */
.reviews-divider {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}

.reviews-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.reviews-divider span {
  position: relative;
  background: var(--gray-light);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Review form */
.review-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 48px;
  align-items: start;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.review-form-icon {
  width: 52px;
  height: 52px;
  background: rgba(244,180,0,0.1);
  border: 1px solid rgba(244,180,0,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.review-form-icon svg {
  width: 24px;
  height: 24px;
}

.review-form-left h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.review-form-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.review-form-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.review-form-perks li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Right side — the form itself */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-form .form-group label {
  color: #444;
}

.review-form input,
.review-form textarea {
  background: var(--white);
  border: 1px solid #ddd;
  color: var(--text-main);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #aaa;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(244,180,0,0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(244,180,0,0.08);
}

.review-form input:-webkit-autofill,
.review-form input:-webkit-autofill:hover,
.review-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: var(--text-main);
  caret-color: var(--text-main);
  border: 1px solid #ddd;
  transition: background-color 5000s ease-in-out 0s;
}

.review-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

/* Stars */
.star-picker {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.star-picker span {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  transition: color 0.12s, transform 0.12s;
  line-height: 1;
}

.star-picker span:hover,
.star-picker span.active {
  color: #f4b400;
  transform: scale(1.15);
}

/* Feedback */
.review-feedback {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  display: none;
}

.review-feedback:not(:empty) { display: block; }
.review-feedback--ok  { background: rgba(74,222,128,0.1);  color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.review-feedback--err { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .review-form-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .reviews-inner { padding: 0 24px; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MODERN ENHANCEMENTS — Hero Orbs & Entrance Animations
   ============================================================ */

/* Make hero overflow-hidden so orbs don't bleed out */
.hero { position: relative; overflow: hidden; }

/* Orb container sits behind all hero content */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Only show orbs inside the left (dark) side */
.hero-left { position: relative; z-index: 1; }
.hero-right { position: relative; z-index: 1; }

.orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(244,180,0,0.14) 0%, transparent 70%);
  top: -200px;
  left: -180px;
  filter: blur(60px);
  animation: orbDrift1 14s ease-in-out infinite;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(244,140,0,0.10) 0%, transparent 70%);
  bottom: -100px;
  left: 60px;
  filter: blur(50px);
  animation: orbDrift2 18s ease-in-out infinite;
}

.orb-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,210,60,0.09) 0%, transparent 70%);
  top: 50%;
  left: 35%;
  filter: blur(40px);
  animation: orbDrift3 11s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(50px, 35px); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  40%      { transform: translate(-40px, -50px); }
  80%      { transform: translate(25px, -25px); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(25px, -35px) scale(1.15); }
}

/* ── Entrance animation for hero elements ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

/* ── Hero heading gradient shimmer ── */
.hero-left h1 {
  background: linear-gradient(120deg, #ffffff 0%, #f4b400 42%, #ffde7a 58%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroHeadingShimmer 6s linear 1.2s infinite;
}

@keyframes heroHeadingShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMATED STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(244,180,0,0.15);
  border-bottom: 1px solid rgba(244,180,0,0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Subtle animated glow line at top */
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,180,0,0.6), transparent);
  animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
  0%   { left: -40%; }
  100% { left: 140%; }
}

.stat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background var(--transition);
}

.stat-strip-item:last-child { border-right: none; }

.stat-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.4s ease;
}

.stat-strip-item:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-strip-item:hover { background: rgba(244,180,0,0.04); }

.ssnum {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -1px;
}

.ssplus {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: rgba(244,180,0,0.6);
  line-height: 1;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 6px;
}

.sslbl {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
}

.ssnum-row {
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

/* ============================================================
   ENHANCED SERVICE CARD HOVER GLOW
   ============================================================ */
.service-grid-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  pointer-events: none;
}

.service-grid-card:hover::after {
  border-color: rgba(244,180,0,0.55);
  box-shadow: inset 0 0 20px rgba(244,180,0,0.06);
}

/* Pulse dot on open badge */
.hours-badge.open::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulseDot 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ============================================================
   RESPONSIVE — Stats strip
   ============================================================ */
@media (max-width: 900px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip-item { padding: 32px 16px; }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .stat-strip-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.05); }
  .stat-strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 520px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SERVICES SECTION — PREMIUM DARK REDESIGN
   ============================================================ */

/* Dark background for the whole section */
#sherbimet {
  background: var(--white);
}

/* ── Section intro header ── */
.services-intro {
  padding: 80px 64px 80px;
  text-align: center;
  background: var(--gray-light);
  border-bottom: none;
  position: relative;
}

.services-intro h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--black);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.services-intro p {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Override bg-white / bg-gray inside sherbimet ── */
#sherbimet .service-section.bg-white,
#sherbimet .service-section.bg-gray {
  background: var(--white);
  border-bottom: none;
}

#sherbimet .service-section:last-child {
  border-bottom: none;
}

#sherbimet .service-section:first-child {
  margin-top: 20px;
}

/* ── Image side ── */
#sherbimet .service-section-img {
  position: relative;
  overflow: hidden;
  flex: 0 0 46%;
}

/* Smooth photo→light fade (seamless blend into text panel) */
#sherbimet .service-section-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, #ffffff 100%);
  pointer-events: none;
}

#sherbimet .service-section.reverse .service-section-img::after {
  background: linear-gradient(to left, transparent 55%, #ffffff 100%);
}

/* ── Text body — light panel ── */
#sherbimet .service-section-body {
  background: var(--white);
  padding: 72px 80px 72px 64px;
  position: relative;
  flex: 1;
}

#sherbimet .service-section.reverse .service-section-body {
  padding: 72px 64px 72px 80px;
}

/* Gold accent line on inner edge */
#sherbimet .service-section-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(244,180,0,0.1) 70%, transparent 100%);
}

#sherbimet .service-section.reverse .service-section-body::after {
  left: auto;
  right: 0;
}

/* Large watermark number behind heading */
#sherbimet .service-section-body::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 190px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ── Typography overrides inside light panel ── */
#sherbimet .service-section-body h2 {
  color: var(--black);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

#sherbimet .service-section-body > p {
  color: var(--text-muted);
  max-width: 500px;
}

/* Service tag — pill redesign */
#sherbimet .service-tag {
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(244,180,0,0.28);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  padding: 4px 12px;
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Feature chips (pill-tag style list) ── */
#sherbimet .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 8px;
}

#sherbimet .service-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 20px;
  padding: 6px 14px;
  letter-spacing: 0.3px;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

#sherbimet .service-list li:hover {
  background: rgba(244,180,0,0.1);
  border-color: rgba(244,180,0,0.35);
  color: var(--yellow);
}

/* Hide the yellow check circles — not needed with pill style */
#sherbimet .chk-icon { display: none; }

/* ── Quick info bar ── */
.svc-quick-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 0 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4px;
}

.sqi {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.sqi svg { color: var(--yellow); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-intro { padding: 56px 24px 40px; }
  #sherbimet .service-section-body { padding: 48px 24px !important; }
  #sherbimet .service-section-body::before { font-size: 110px; right: 12px; }
  .svc-quick-info { gap: 16px; }
  .sqi { white-space: normal; }
}
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 2px solid var(--yellow);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner--hide {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  flex-wrap: wrap;
}

.cookie-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  color: #ccc;
  font-size: 13.5px;
  line-height: 1.5;
}

.cookie-banner__text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.cookie-banner__text em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn--accept {
  background: var(--yellow);
  color: #111;
}

.cookie-btn--accept:hover {
  background: var(--yellow-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
}

.cookie-btn--decline:hover {
  background: #2a2a2a;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner__inner { padding: 16px 20px; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   IMAGE REVEAL ANIMATION
   ============================================================ */
.reveal-img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1.2s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-img.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   IMAGE HOVER / CLICK ANIMATIONS
   (service-section-img, about-mission-img, service-hero-right
    are all background-image divs — animate the div itself)
   ============================================================ */

.service-section-img,
.about-mission-img,
.service-hero-right {
  transform: scale(1);
  filter: brightness(1);
  transition:
    transform  0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter     0.55s ease;
  will-change: transform, filter;
  cursor: pointer;
}

/* mouseover — zoom in */
.service-section-img:hover,
.about-mission-img:hover,
.service-hero-right:hover {
  transform: scale(1.07);
  filter: brightness(1.08);
}

/* ---- Flip on click — toggled via JS (.flipped class) ---- */
.service-section-img.flipped,
.about-mission-img.flipped,
.service-hero-right.flipped {
  transform: scale(1) rotateY(180deg);
  filter: brightness(0.88);
  transition:
    transform  0.5s cubic-bezier(0.4, 0, 0.2, 1),
    filter     0.5s ease;
}

/* ============================================================
   CONTACT PAGE — REDESIGN
   ============================================================ */

/* Info cards row */
.contact-cards-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.contact-cards-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--gray-light);
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.contact-card:hover {
  border-color: rgba(244,180,0,0.45);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(244,180,0,0.12);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(244,180,0,0.1);
  border: 1px solid rgba(244,180,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-label {
  font-size: 11px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-card-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.55;
}

.contact-card-val a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-card-val a:hover { color: var(--yellow); }

/* Main form section */
.kontakt-main-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.kontakt-main-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.kontakt-form-card {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  align-items: start;
}

.kontakt-info-side {
  background: var(--gray-light);
  border-right: 1px solid #ebebeb;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.kontakt-info-side h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.kontakt-info-side p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.kontakt-info-side .contact-info-services {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e0e0e0;
}

.kontakt-info-side .contact-info-services h4 {
  color: #777;
}

.kontakt-info-side .contact-info-services ul li a {
  color: #555;
}

.kontakt-form-side {
  padding: 52px 56px;
}

.kontakt-form-side h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
}

.kontakt-form-side .btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Responsive — contact page */
@media (max-width: 900px) {
  .contact-cards-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .kontakt-main-inner { padding: 0 24px; }
  .kontakt-form-card { grid-template-columns: 1fr; }
  .kontakt-info-side {
    border-right: none;
    border-bottom: 1px solid #ebebeb;
    min-height: unset;
  }
  .kontakt-form-side { padding: 40px 24px; }
}

@media (max-width: 540px) {
  .contact-cards-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-card { padding: 24px 16px; }
  .kontakt-info-side { padding: 36px 24px; }
}