/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #0F2A4A; /* Corporate Navy */
  --primary-light: #1A3E6D;
  --gold: #B38B4D; /* Refined Gold */
  --gold-light: #D4AF72;
  --gold-dark: #8C6A36;
  --bg: #F4F6F8; /* Light gray background */
  --bg-soft: #FFFFFF; /* Pure white for sections */
  --surface: #FFFFFF;
  --text: #2C353E;
  --text-dark: #121820;
  --muted: #64707D;
  --line: #E2E8EE;
  --radius: 8px; /* More formal, slightly rounded */
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.1);
  --container: 1200px;
  --header-h: 80px;
  --topbar-h: 40px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== LAYOUT ===== */
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

/* ===== TOPBAR ===== */
.topbar {
  height: var(--topbar-h);
  background: var(--primary);
  border-bottom: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar-left a:hover { color: var(--gold-light); }
.lang-badge {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: background 0.3s;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-logo-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap.small { width: 36px; height: 36px; }
.brand-svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.brand-text span {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-top: 0.25rem;
  font-weight: 600;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-nav > a {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.site-nav > a:hover { color: var(--primary); background: rgba(15,42,74,0.05); }
.site-nav > a.active:not(.nav-cta) { color: var(--primary); background: rgba(15,42,74,0.07); }
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.4rem !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 14px rgba(179,139,77,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,139,77,0.4) !important;
  background: var(--gold-dark) !important;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--topbar-h));
  min-height: 560px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15,42,74,0.9) 0%,
    rgba(15,42,74,0.6) 50%,
    rgba(15,42,74,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 8rem;
  max-width: 700px;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.slide-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.slide-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.slide-title .gold { color: var(--gold-light); }

.slide-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 54ch;
  margin-bottom: 2.2rem;
}

.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(179,139,77,0.3);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(179,139,77,0.4); background: var(--gold-dark); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.btn-outline:hover { border-color: #fff; color: #121820; background: #fff; }

/* SLIDER CONTROLS */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}
.slider-btn:hover { border-color: #fff; background: rgba(255,255,255,0.2); }

.slider-dots { display: flex; gap: 0.6rem; align-items: center; }
.dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: var(--gold-light); width: 48px; }

/* SOCIAL */
.hero-social {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}
.hero-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.hero-social a:hover { border-color: var(--gold-light); background: var(--gold-light); color: var(--primary); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative;
  z-index: 5;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3.5rem;
}
.stat-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-item span { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; font-weight: 500; }
.stat-divider { width: 1px; height: 50px; background: var(--line); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-dark { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-head h2, .split-copy h2, .contact-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.section-desc { color: var(--muted); max-width: 60ch; margin: 0 auto; line-height: 1.8; font-size: 1.05rem; }

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15,42,74,0.15);
  box-shadow: var(--shadow-hover);
}

.product-icon {
  width: 56px;
  height: 56px;
  background: rgba(179,139,77,0.1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.product-icon svg { width: 30px; height: 30px; }

.product-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.product-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.product-card ul {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}
.product-card ul li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.product-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover { gap: 0.7rem; color: var(--gold); }

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--text-dark); }
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-item.filtered-out { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Placeholder shown until real project photos are added to /Resimler */
.gallery-item.no-image img { display: none; }
.gallery-item.no-image::before {
  content: '📷';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  opacity: 0.35;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: linear-gradient(0deg, rgba(15,42,74,0.92) 0%, rgba(15,42,74,0.5) 60%, transparent 100%);
  color: #fff;
}
.gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.gallery-title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; }

.gallery-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.gallery-cta p { color: var(--muted); font-size: 1.05rem; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,16,26,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-figure { max-width: min(90vw, 900px); text-align: center; }
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin: 0 auto;
}
.lightbox-figure figcaption { color: rgba(255,255,255,0.85); margin-top: 1rem; font-size: 0.95rem; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ===== NEDEN ESEN ===== */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-copy p { color: var(--muted); line-height: 1.8; margin-top: 1rem; font-size: 1.05rem; }

.benefit-stack { display: grid; gap: 1.25rem; }
.benefit-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-item:hover { border-color: rgba(179,139,77,0.3); box-shadow: var(--shadow); }

.benefit-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.benefit-item strong { display: block; font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.benefit-item p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.process-step:hover .step-num {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.process-step p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-copy p { color: var(--muted); line-height: 1.8; margin: 1.2rem 0; font-size: 1.05rem; }

.contact-info { display: grid; gap: 1.25rem; margin-top: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(179,139,77,0.1);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.contact-info-item strong { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-item a, .contact-info-item span { color: var(--text-dark); font-weight: 600; font-size: 1.05rem; }
.contact-info-item a:hover { color: var(--primary); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-weight: 500;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,42,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Centered contact section (info only, no form) */
.contact-wrap-solo { display: block; }
.contact-copy-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.contact-copy-centered p { max-width: 55ch; margin-left: auto; margin-right: auto; }
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 1.1rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.footer-copy { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-top {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-top:hover { color: var(--gold-light); }

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(18,140,126,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 42px rgba(18,140,126,0.4); }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  padding: 4rem 0;
}
.emergency-inner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: 0 16px 40px rgba(15,42,74,0.25);
  position: relative;
  overflow: hidden;
}
.emergency-inner::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.emergency-content {
  flex: 1;
  color: #fff;
  position: relative;
  z-index: 2;
}
.emergency-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.15); /* Soft Red */
  color: #ff8a8a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.emergency-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.emergency-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
}
.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.btn-emergency {
  background: #dc2626; /* Red for emergency */
  color: #fff;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}
.btn-emergency:hover {
  background: #b91c1c;
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: rgba(15,42,74,0.2);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--surface);
}
.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--bg);
}
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px; /* arbitrary max height */
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ===== FOOTER SEO ===== */
.footer-seo {
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: center;
}
.footer-seo strong {
  color: rgba(255,255,255,0.8);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  font-size: 0.95rem;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-text {
  font-weight: 700;
  color: var(--text-dark);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-logos span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 0.5rem;
}
.mobile-sticky-bar .sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
}
.sticky-call {
  background: var(--primary);
  color: #fff;
}
.sticky-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .process-grid::before { display: none; }
  .split-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info-row { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .trust-logos { justify-content: center; gap: 1rem; }
  .emergency-inner { padding: 3rem; }
}

@media (max-width: 768px) {
  .topbar { height: auto; }
  .topbar-inner { flex-wrap: wrap; gap: 0.4rem 1rem; padding: 0.5rem 0; }
  .topbar-left { gap: 1rem; font-size: 0.78rem; }
  .topbar-left a:last-child { display: none; }
  .lang-badge { font-size: 0.72rem; padding: 0.15rem 0.55rem; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 1.5rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 99;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-left: 0 !important; margin-top: 1rem; }

  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-item { padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); }
  .stat-divider { display: none; }
  .stat-item strong { font-size: 1.7rem; }

  .hero { min-height: 620px; }
  .hero-content { padding-top: 2rem; padding-bottom: 7rem; }
  .slide-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .slide-desc { font-size: 1rem; }
  .hero-social { display: none; }

  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.75rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .gallery-item figcaption { padding: 1rem 0.85rem 0.75rem; }
  .gallery-title { font-size: 0.88rem; }
  .gallery-filters { gap: 0.45rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }

  .emergency-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2.25rem 1.5rem;
    gap: 1.75rem;
  }
  .emergency-content h2 { font-size: 1.7rem; }
  .emergency-actions { width: 100%; }
  .emergency-actions .btn { width: 100%; }

  .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 40px; height: 40px; }

  .mobile-sticky-bar { display: flex; gap: 0.5rem; }
  .whatsapp-float { display: none; } /* Hide floating button since sticky bar has it */
  body { padding-bottom: 60px; } /* Add padding so footer content isn't hidden by sticky bar */
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
  .contact-form { padding: 1.75rem; }
  .emergency-content h2 { font-size: 1.5rem; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

