/* ===== STYLE.CSS — BAX Menajerlik ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #080808;
  --anthracite: #111111;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --blue: #1a3fff;
  --blue-bright: #2d55ff;
  --blue-dim: rgba(26, 63, 255, 0.12);
  --blue-glow: rgba(26, 63, 255, 0.3);
  --white: #ffffff;
  --off-white: #e8e8e8;
  --muted: #7a7a7a;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(26, 63, 255, 0.25);

  --font-display: 'Bebas Neue', sans-serif;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-blue: 0 8px 40px rgba(26, 63, 255, 0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.page-loaded { opacity: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-main); font-weight: 800; line-height: 1.15; }
.display { font-family: var(--font-display); letter-spacing: 0.04em; }

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue-bright); }
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(26,63,255,0.4);
}
.btn-primary.active {
  background: var(--blue-bright);
  box-shadow: 0 12px 50px rgba(26,63,255,0.45);
  pointer-events: none;
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--blue);
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}
#main-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav a {
  padding: 8px 14px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width 0.3s;
}
nav.main-nav a:hover { color: var(--white); }
nav.main-nav a:hover::after { width: 60%; }
nav.main-nav a.active { color: var(--blue-bright); }
nav.main-nav a.active::after { width: 60%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
  line-height: 1;
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.lang-flag-svg {
  width: 22px;
  height: 16px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lang-code {
  font-size: 10px;
  letter-spacing: 0.06em;
}
.lang-option:hover { color: var(--white); background: var(--surface-2); }
.lang-option.active {
  background: var(--blue);
  color: var(--white);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26,63,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 50%, rgba(26,63,255,0.08) 0%, transparent 60%),
    var(--black);
}
#particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Geometric accent */
.hero-geo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-geo::before, .hero-geo::after {
  content: '';
  position: absolute;
  border: 2px solid var(--blue);
}
.hero-geo::before {
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.hero-geo::after {
  width: 70%;
  height: 70%;
  top: 15%; left: 15%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(52px, 8vw, 100px);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title-accent {
  color: var(--blue-bright);
  display: block;
  text-shadow: 0 0 60px rgba(26,63,255,0.4);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.2s ease both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.6s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.7); opacity: 1; }
}

/* ===== STATS ===== */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.stats-header { margin-bottom: 60px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--surface);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item:hover { background: var(--surface-2); }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before { opacity: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  display: block;
  letter-spacing: 0.02em;
}
.stat-number::after { content: '+'; color: var(--blue-bright); }
.stat-label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ===== WHY CARDS ===== */
.why-section { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-image {
  transform: scale(1.06);
}
.service-card-body {
  padding: 28px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.btn-detail {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.btn-detail::after { content: '→'; }
.btn-detail:hover { gap: 10px; }

/* ===== APPLY FORM ===== */
.apply-section { padding: 100px 0; }
.apply-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group select option { background: var(--surface); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,63,255,0.15);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255,68,68,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="file"] {
  padding: 10px 18px;
  cursor: pointer;
}
.field-error {
  font-size: 11px;
  color: #ff6666;
  min-height: 16px;
}
.upload-section {
  margin-top: 8px;
  padding: 20px;
  background: var(--black);
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.upload-section label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.upload-section input[type="file"] {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}
.form-submit {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
#apply-success {
  display: none;
  background: rgba(26,63,255,0.15);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 16px 24px;
  color: var(--blue-bright);
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-main);
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); }
.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-bright); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-bright);
  transition: background 0.3s, border-color 0.3s;
}
.faq-question:hover .faq-icon {
  background: var(--blue-dim);
  border-color: var(--blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  margin-top: 60px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,63,255,0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--border-blue);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-card-label {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  background: #20b358;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* Sabit WhatsApp — sağ alt */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-float-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wa-float .wa-float-icon,
.wa-float .icon-whatsapp-brand {
  width: 30px;
  height: 30px;
  color: #fff;
  fill: #fff;
}
.wa-float .icon-whatsapp-brand path {
  fill: #fff;
}
@keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}
.social-link .icon { width: 18px; height: 18px; }

/* SVG icons */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.icon-lg { width: 32px; height: 32px; }
.icon-sm { width: 16px; height: 16px; }
.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--blue-bright);
  margin-bottom: 16px;
  padding: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
}
.location-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--blue-bright);
}
.location-card-icon .icon { width: 28px; height: 28px; }
.cic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}
.cic-icon .icon { width: 22px; height: 22px; }
.whatsapp-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.whatsapp-card-icon .icon,
.whatsapp-card-icon .icon-whatsapp-brand { width: 28px; height: 28px; color: #fff; }
.whatsapp-card-icon .icon-whatsapp-brand path { fill: #fff; }
.map-placeholder .icon {
  width: 48px;
  height: 48px;
  color: var(--blue-bright);
  margin: 0 auto 8px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-pill .icon { width: 14px; height: 14px; }
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--blue-bright); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals */
.why-card:nth-child(1) { transition-delay: 0.0s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.1s; }
.why-card:nth-child(5) { transition-delay: 0.2s; }
.why-card:nth-child(6) { transition-delay: 0.3s; }
.service-card:nth-child(1) { transition-delay: 0.0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.1s; }
.service-card:nth-child(5) { transition-delay: 0.2s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }

/* ===== KEY ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--blue);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '◆';
  color: rgba(255,255,255,0.4);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-slides { position: relative; min-height: calc(100vh - var(--header-h)); }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
  min-height: calc(100vh - var(--header-h));
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.75) 45%, rgba(8,8,8,0.35) 100%),
    linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.9) 100%);
}
.hero-slide-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.hero-slide-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-media .hero-slide-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95), transparent);
  padding: 48px 8px 12px;
}
.hero-slide-media .hero-stat-box {
  background: rgba(22,22,22,0.75);
  backdrop-filter: blur(8px);
  border: none;
  padding: 12px 8px;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0 100px;
}
.hero-slide-tag {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  display: block;
}
.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-slide h1 em {
  font-style: normal;
  color: var(--blue-bright);
  display: block;
  text-shadow: 0 0 50px rgba(26,63,255,0.35);
}
.hero-slide-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-slide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-stat-box {
  background: rgba(22,22,22,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.hero-stat-box:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}
.hero-stat-box .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  display: block;
}
.hero-stat-box .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover {
  border-color: var(--blue);
  background: var(--blue-dim);
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--blue-bright);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 10;
}

/* ===== SHOWCASE BLOCKS ===== */
.showcase-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.showcase-section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-grid.reverse .showcase-visual { order: 2; }
.showcase-grid.reverse .showcase-content { order: 1; }
.showcase-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.showcase-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(26,63,255,0.25) 0%, transparent 60%);
}
.showcase-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-visual:hover .showcase-photo {
  transform: scale(1.05);
}
.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.showcase-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.showcase-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.showcase-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  display: block;
}
.showcase-stat .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--black) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(26,63,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner h2 span { color: var(--blue-bright); }
.cta-banner p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== LOCATIONS PREVIEW ===== */
.locations-preview { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.location-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}
.location-card.has-photo {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.location-card.has-photo h4,
.location-card.has-photo p {
  padding: 0 20px;
}
.location-card.has-photo p { padding-bottom: 20px; }
.location-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.location-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}
.location-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.location-card p { font-size: 12px; color: var(--muted); }

/* ===== OPPORTUNITY CARDS ===== */
.opportunities-section { padding: 100px 0; }
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.opp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.opp-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.opp-card:hover .opp-card-image {
  transform: scale(1.05);
}
.opp-card-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.opp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.opp-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}
.opp-card:hover::before { transform: scaleX(1); }
.opp-card .opp-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
  display: block;
}
.opp-card h3 { font-size: 20px; margin-bottom: 12px; }
.opp-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; flex: 1; }

/* Service detail page photos */
.service-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: calc(var(--header-h) + 60px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(26,63,255,0.15) 0%, transparent 70%), var(--black);
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb {
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--blue-bright); }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.service-card .btn-detail { cursor: pointer; background: none; border: none; padding: 0; }

/* RTL support */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .hero-slide-inner { direction: rtl; }
[dir="rtl"] .hero-slide-bg::after {
  background: linear-gradient(270deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.5) 55%, transparent 100%);
}
[dir="rtl"] .contact-card:hover { transform: translateX(-4px); }
[dir="rtl"] nav.main-nav a::after { left: auto; right: 50%; transform: translateX(50%); }