/* ============================
   ENS REKLAM - STYLE SYSTEM
   Tema: Lacivert Mavi + Gümüş/Beyaz
   ============================ */

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

:root {
  /* Mavi Tema - Logo rengi baz alındı */
  --blue:        #1a3a8f;
  --blue-dark:   #0d2466;
  --blue-mid:    #1e4db7;
  --blue-light:  #2563eb;
  --blue-grad:   linear-gradient(135deg, #0d2466 0%, #1a3a8f 50%, #1e4db7 100%);
  --silver:      #c0c8d8;
  --silver-light:#e8edf5;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --dark:        #0a0f1e;
  --dark-2:      #111827;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-300:    #9ca3af;
  --gray-100:    #f3f4f6;

  /* WA Green */
  --wa:          #25D366;
  --wa-dark:     #1ebe5d;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:    0 4px 24px rgba(10,31,100,0.1);
  --shadow-lg: 0 12px 48px rgba(10,31,100,0.18);
  --shadow-blue: 0 8px 32px rgba(26,58,143,0.3);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--blue-mid);
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title .highlight { color: var(--blue-mid); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-grad);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,58,143,0.4);
  color: var(--white);
}
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 25, 70, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo-link { flex-shrink: 0; }
.header-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--white); }
.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-left: 4px;
}
.nav-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  background: var(--blue-grad);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
  top: -200px; right: -150px;
  animation: floatShape 10s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,150,255,0.4), transparent);
  bottom: -100px; left: -100px;
  animation: floatShape 12s ease-in-out infinite reverse;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  animation: fadeInUp 0.9s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap { margin-bottom: 40px; }
.hero-logo-img {
  height: auto;
  max-width: 750px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
  border-radius: 12px;
}

.hero-slogan {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-slogan em { font-style: normal; color: var(--silver); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.stat { padding: 20px 36px; text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--silver);
  display: block;
}
.stat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 2px; white-space: nowrap; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   SLIDER
   ============================ */
.slider-section {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}
.slider-section .container { margin-bottom: 48px; }

.slider-wrapper { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  gap: 24px;
  padding: 16px calc(50vw - clamp(135px, 15vw, 180px));
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.slide {
  flex: 0 0 clamp(270px, 30vw, 360px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.slide-img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--transition);
}
.slide:hover .slide-img { transform: scale(1.05); }
.slide-info { padding: 18px 22px; }
.slide-cat {
  font-size: 0.72rem;
  color: var(--blue-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.slide-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); }

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1.1rem; color: var(--dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--blue-mid); width: 24px; border-radius: 4px; }

/* ============================
   ABOUT / WHY US
   ============================ */
.about-section { padding: 100px 0; background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 40px;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26,58,143,0.08);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--blue-mid); box-shadow: 0 4px 20px rgba(26,58,143,0.1); transform: translateY(-3px); }
.why-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.why-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-card p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

.about-visual { display: flex; justify-content: center; align-items: center; }
.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
}
.about-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.about-card:hover { transform: scale(1.04); }
.ac-icon { font-size: 1.3rem; margin-bottom: 4px; }
.about-card strong { font-size: 2rem; font-weight: 900; color: var(--dark); }
.about-card span { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }
.ac-1 { top: 0; left: 0; width: 56%; background: var(--blue-grad); }
.ac-1 strong, .ac-1 span, .ac-1 .ac-icon { color: var(--white); }
.ac-2 { top: 22%; right: 0; width: 62%; }
.ac-3 { bottom: 0; left: 10%; width: 60%; background: var(--dark); }
.ac-3 strong, .ac-3 span { color: var(--white); }
.ac-3 .ac-icon { color: var(--silver); }

/* ============================
   SERVICES
   ============================ */
.services-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}
.services-section .section-title { color: var(--white); }
.services-section .section-sub { color: rgba(255,255,255,0.45); }
.services-section .section-label { color: var(--silver); }
.services-section .section-label::before { background: var(--silver); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.service-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--silver));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { background: rgba(26,58,143,0.15); border-color: rgba(26,58,143,0.4); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.service-card--cta {
  background: linear-gradient(135deg, rgba(26,58,143,0.25), rgba(30,77,183,0.1));
  border-color: rgba(26,58,143,0.35);
  display: flex; flex-direction: column;
}
.service-card--cta .btn { margin-top: 18px; width: fit-content; }

/* ============================
   PRODUCTS
   ============================ */
.products-section { padding: 100px 0; background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--transition); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(26,58,143,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span { color: var(--white); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; }
.product-info { padding: 20px 22px; }
.product-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.product-info p { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 12px; line-height: 1.6; }
.product-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26,58,143,0.1);
  color: var(--blue-mid);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================
   PROCESS SECTION
   ============================ */
.process-section {
  padding: 100px 0;
  background: var(--off-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(26,58,143,0.08);
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-mid); }
.process-step:hover .process-icon { background: var(--blue-grad); color: var(--white); }
.process-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid rgba(26,58,143,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.process-num {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-mid);
  opacity: 0.5;
  letter-spacing: 0.06em;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ============================
   CONTACT - Centered (no form, no map)
   ============================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.contact-info-cards {
  display: flex;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(26,58,143,0.08);
  transition: var(--transition);
  flex: 1;
  min-width: 200px;
}
.contact-info-card:hover { border-color: var(--blue-mid); box-shadow: 0 4px 16px rgba(26,58,143,0.1); }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: 0.75rem; font-weight: 700; color: var(--gray-500); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-card p,
.contact-info-card a { font-size: 0.95rem; color: var(--dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--blue-mid); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--wa);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.whatsapp-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  color: var(--white);
}

/* Floating WA */
.floating-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.12); color: var(--white); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================
   PRODUCT MODAL
   ============================ */
.product-modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,15,40,0.8);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.35s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  font-size: 1rem;
  color: var(--dark);
  z-index: 10;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--blue); color: var(--white); }
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px 20px 0;
}
.modal-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  transition: transform var(--transition);
  cursor: zoom-in;
}
.modal-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/8;
}
.modal-gallery img:hover { transform: scale(1.02); }
.modal-info {
  padding: 28px;
}
.modal-title { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.modal-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--dark-2); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.38); margin-top: 16px; margin-bottom: 24px; line-height: 1.7; max-width: 270px; }
.footer-logo { height: 95px; width: auto; object-fit: contain; object-position: left; }
.footer-logo-link { display: inline-block; }

.social-links { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-2px); }

.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-links a:hover { color: var(--silver); padding-left: 4px; }
.footer-contact p { font-size: 0.84rem; color: rgba(255,255,255,0.38); margin-bottom: 9px; }
.footer-contact a { color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-contact a:hover { color: var(--silver); }

.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.18);
}
.alaz-link {
  color: var(--silver);
  font-weight: 600;
  transition: var(--transition);
}
.alaz-link:hover { color: var(--white); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .modal-gallery { grid-template-columns: repeat(2, 1fr); }
  .modal-gallery img:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 74px; }
  .header-logo { height: 56px; }

  /* Mobile Nav */
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 300px);
    background: var(--blue-dark);
    padding: 90px 28px 40px;
    box-shadow: -8px 0 48px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 6px; }
  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; border-radius: 10px; color: rgba(255,255,255,0.85); }
  .nav-wa { display: flex; text-align: left; width: 100%; border-radius: 10px; margin-left: 0; margin-top: 8px; }

  /* Hero */
  .hero-logo-img { max-width: 380px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 14px 18px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Why cards */
  .why-cards { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-step { padding: 22px 16px; }

  /* Services, Products */
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }

  /* Contact */
  .contact-info-card { min-width: 100%; }
  .contact-info-cards { flex-direction: column; }

  /* Modal */
  .modal-panel { max-height: 95vh; border-radius: var(--radius-lg); }
  .modal-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .modal-gallery { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.4rem; }
  .stat p { font-size: 0.72rem; }
  .hero-logo-img { max-width: 280px; }
  .slider-track { gap: 14px; }
}

