/* ============================================================
   BATA sh.p.k — Main Stylesheet
   Colors: Navy #0D1B2A | Gold #C9A84C | White #F9F7F3
   ============================================================ */

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

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #142236;
  --navy-light:  #1C3252;
  --gold:        #C9A84C;
  --gold-light:  #E0C270;
  --white:       #FFFFFF;
  --off-white:   #F5F3EE;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A4A6A;
  --text-light:  #B0AFBF;
  --border:      #E2E0D8;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:   0 12px 48px rgba(13,27,42,0.18);
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- UTILITY ---------- */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.gold        { color: var(--gold); }
.gold-text   { color: var(--gold); }
.dark        { color: var(--text-dark); }
.dark-text   { color: var(--text-mid); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--navy); }

.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.8;
}
.section-intro.dark-text { color: var(--text-mid); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-large { padding: 16px 40px; font-size: 1rem; }
.btn-full  { width: 100%; text-align: center; }

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder,
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, #CBD5E0 0%, #A0AEC0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
}
.dark-placeholder {
  background: linear-gradient(135deg, #2A3F5A 0%, #1A2E45 100%);
}
.placeholder-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4A5E72;
  letter-spacing: 0.05em;
}
.dark-placeholder .placeholder-label { color: #8AAEC8; }

/* Image slots */
.image-slot { position: relative; overflow: hidden; }
.image-slot > .slot-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  pointer-events: none;
}
.image-slot > .slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.placeholder-filename {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D3748;
  background: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  border-radius: 6px;
  max-width: 100%;
  word-break: break-all;
}
.dark-placeholder .placeholder-filename,
.hero-image-placeholder .placeholder-filename {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.25);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo-bata {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 700;
}
.logo-shpk {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  margin-left: 2px;
  transform: translateY(3px);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  user-select: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(13, 27, 42, 0.97);
  padding: 20px 0 0;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 0 8%; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-lang {
  display: flex;
  gap: 0;
  padding: 16px 8%;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-lang .lang-btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-right: 8px;
  text-align: center;
}
.mobile-lang .lang-btn:last-child { margin-right: 0; }
.mobile-lang .lang-btn.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 100%;
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 60%, #0D1B2A 100%);
  border: none;
  z-index: 0;
}
.hero-image-placeholder .placeholder-label {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  letter-spacing: 0.1em;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.45) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.hero-shpk {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-shadow: none;
  align-self: center;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; }
.section-light { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.value-cards { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.value-card strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.value-card p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }

.about-image .exp-gallery {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SERVICES — process cards on dark background
   ============================================================ */
.services { padding: 100px 0; text-align: center; }
.section-dark { background: var(--navy); }

/* Override process-card colors for the dark services section */
.section-dark .process-card {
  background: var(--navy-mid);
  border-top: 3px solid rgba(201, 168, 76, 0.65);
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.section-dark .process-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.section-dark .process-card h3 { color: var(--white); }
.section-dark .process-card p  { color: var(--text-light); }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { padding: 100px 0; text-align: center; }
.section-dark-alt { background: var(--navy-mid); }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  margin-bottom: 60px;
}

/* CSS Fade Gallery */
.exp-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: var(--navy);
  flex-shrink: 0;
}
.exp-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.exp-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.exp-gallery-slide--active {
  opacity: 1;
  pointer-events: auto;
}
.exp-gallery-slide .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
}
/* Arrows — overlaid on the image */
.exp-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.exp-gallery-btn:hover {
  background: rgba(201, 168, 76, 0.75);
  border-color: transparent;
}
.exp-gallery-btn--prev { left: 14px; }
.exp-gallery-btn--next { right: 14px; }
/* Dot indicators */
.exp-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.exp-gallery-dot {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.exp-gallery-dot--active {
  background: var(--gold);
  transform: scale(1.4);
}

.exp-bullets { display: flex; flex-direction: column; gap: 28px; }
.exp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.exp-bullet-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.exp-item strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.exp-item p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 24px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-plus { font-size: 1.4rem; }
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   PROCESS CARDS (base styles — used inside services and standalone)
   ============================================================ */
.processes-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
  align-items: center;
  width: 100%;
  padding: 0 8px;
}
.processes-row {
  display: grid;
  width: 100%;
  max-width: 1040px;
  column-gap: 36px;
  row-gap: 28px;
  justify-items: stretch;
}
.processes-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: left;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.process-index {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 600;
}
.process-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   INNOVATION
   ============================================================ */
.innovation { padding: 100px 0; }
.section-navy { background: var(--navy); }

.innovation-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.innovation-text .section-tag { margin-bottom: 18px; }
.innovation-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 0.97rem;
  text-align: center;
}
.innovation-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.inno-feat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  text-align: left;
}
.feat-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; text-align: center; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  text-align: left;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.contact-item p { color: var(--text-mid); font-size: 0.9rem; margin: 0; }

/* Honeypot for FormSubmit — must stay empty */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-honeypot input { position: absolute; left: -9999px; }
.contact-phone-link {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
.contact-phone-link:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}

/* ============================================================
   GOOGLE MAPS SECTION
   ============================================================ */
.map-section { padding: 80px 0 0; }
.map-header { text-align: center; padding-bottom: 48px; }
.map-embed-wrapper { position: relative; width: 100%; line-height: 0; }
.map-iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}
.map-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.map-ph-content { text-align: center; padding: 40px 24px; }
.map-ph-icon { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.map-ph-content h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.map-ph-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.map-code-hint {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 10px 20px;
  display: inline-block;
}
.map-code-hint code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .logo-bata {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand .logo-shpk { font-size: 0.65rem; color: var(--gold); margin-left: 1px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: flex; }
}

@media (max-width: 820px) {
  .about-grid,
  .experience-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image { order: -1; }
  .exp-gallery { height: 320px; }

  .processes-row--3 { grid-template-columns: repeat(2, 1fr); column-gap: 24px; row-gap: 24px; }

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

  .footer-container { grid-template-columns: 1fr; }
  .footer-links ul { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .section-intro { text-align: left; }
  .contact { text-align: left; }
  .contact-form { padding: 28px 20px; }
  .map-iframe { height: 360px; }
}

@media (max-width: 540px) {
  .lang-switcher .lang-sep { display: none; }
  .lang-btn { font-size: 0.72rem; padding: 3px 4px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .container { width: 94%; }
  .process-card { padding: 22px 18px 26px; }
  .processes-rows { gap: 28px; padding: 0; }
  .processes-row--3 { grid-template-columns: 1fr; column-gap: 0; }
  .exp-gallery { height: 260px; }
}
