:root {
  --primary: #23335b;
  --primary-dark: #1a2644;
  --primary-light: #2e4275;
  --secondary: #e08d70;
  --secondary-light: #e9a48c;
  --light: #dce1ee;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7a99;
  --glass-bg: rgba(35, 51, 91, 0.15);
  --glass-border: rgba(220, 225, 238, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 8px 40px rgba(35, 51, 91, 0.12);
  --shadow-hover: 0 20px 60px rgba(35, 51, 91, 0.2);
  --radius: 16px;
  --section-padding: 120px 0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Inter', sans-serif;
  background: #f8f9fc;
  color: var(--text-dark);
  direction: rtl;
  overflow-x: hidden;
}

body.en { direction: ltr; font-family: 'Inter', 'Tajawal', sans-serif; }

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

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  gap: 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(35, 51, 91, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(35, 51, 91, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 32px;
  flex: 1; 
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: var(--transition);
}

body.en .nav-links a::after { right: auto; left: 0; }

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  font-family: inherit;
}

.lang-toggle:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Assest/BG.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 38, 68, 0.88) 0%,
    rgba(35, 51, 91, 0.72) 50%,
    rgba(35, 51, 91, 0.45) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(248, 249, 252, 0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin-left: 400px;

}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224, 141, 112, 0.2);
  border: 1px solid rgba(224, 141, 112, 0.4);
  color: var(--secondary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-title span {
  color: var(--secondary);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(220, 225, 238, 0.85);
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--secondary);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(224, 141, 112, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.8s forwards;
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.hero-cta:hover::before { transform: translateX(0); }

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(224, 141, 112, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 11px;
  color: rgba(220,225,238,0.6);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(224, 141, 112, 0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── ABOUT ─── */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--secondary);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 28px;
}

.section-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 400;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 24px;
  padding: 60px 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(224, 141, 112, 0.12);
  border-radius: 50%;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.about-stat {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.about-stat:last-child { margin-bottom: 0; }

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  color: rgba(220,225,238,0.8);
  font-weight: 400;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}

/* ─── SERVICES ─── */
.services {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f0f3fa 0%, #f8f9fc 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  cursor: default;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 225, 238, 0.5);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

body.en .service-card::before { transform-origin: left; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(35,51,91,0.08), rgba(35,51,91,0.04));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: var(--transition);
}

.service-card:hover .service-icon svg { stroke: var(--white); }

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── INSTAGRAM ─── */
.instagram {
  padding: var(--section-padding);
  background: var(--white);
}

.instagram-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.elfsight-app-715b9ce5-8c88-4292-9937-2145f17c6558 {
  display: none !important;
}

/* Hide Elfsight default elements */
.elfsight-app-715b9ce5-8c88-4292-9937-2145f17c6558 * {
  display: none !important;
}

/* Custom Instagram Grid Styling */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 38, 68, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s ease;
  z-index: 5;
}

.instagram-item:hover .instagram-overlay {
  background: rgba(26, 38, 68, 0.62);
}

.instagram-icon {
  opacity: 0;
  transform: scale(0.8) translateY(6px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.instagram-item:hover .instagram-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.instagram-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.instagram-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-family: inherit;
}

.instagram-follow-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: var(--transition);
}

.instagram-follow-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.instagram-follow-btn:hover svg { fill: var(--white); }

/* ─── WHY US ─── */
.why-us {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 141, 112, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 225, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-us .section-title { color: var(--white); }
.why-us .section-label { color: var(--secondary); }
.why-us .section-label::before { background: var(--secondary); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.why-item {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224, 141, 112, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(224, 141, 112, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: rgba(224, 141, 112, 0.3);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.5;
}

.why-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(220, 225, 238, 0.6);
  line-height: 1.7;
}

/* ─── LOCATION ─── */
.location {
  padding: var(--section-padding);
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.location-card {
  background: linear-gradient(135deg, #f0f3fa, var(--light));
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  height: 400px;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(224, 141, 112, 0.12), transparent);
}

.location-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(35, 51, 91, 0.3);
}

.location-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.5;
}

.location-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.location-address {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 400;
}

.location-map {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-link {

  position: absolute;
  inset: 0; 
  z-index: 2;
  display: block;

}

.map-placeholder {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.map-pin {
  width: 64px;
  height: 64px;
  background: rgba(224, 141, 112, 0.2);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: pulse 2.5s ease infinite;
}

.map-pin svg {
  width: 28px;
  height: 28px;
  fill: var(--secondary);
  stroke: none;
}

.map-placeholder p {
  font-size: 15px;
  color: rgba(220,225,238,0.7);
}

.location-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.04) 39px,
    rgba(255,255,255,0.04) 40px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.04) 39px,
    rgba(255,255,255,0.04) 40px
  );
}

/* ─── WHATSAPP ─── */
.wa-float {
  position: fixed;
  bottom: 36px;
  left: 36px;
  z-index: 999;
  cursor: pointer;
}

body.en .wa-float { left: auto; right: 36px; }

.wa-btn {
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  position: relative;
  border: none;
  cursor: pointer;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.wa-btn svg { width: 30px; height: 30px; fill: var(--white); }

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease infinite;
}

.wa-label {
  position: absolute;
  right: 72px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

body.en .wa-label { right: auto; left: 72px; }

.wa-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--primary);
}

body.en .wa-label::after {
  right: auto;
  left: -6px;
  border-left: none;
  border-right-color: var(--primary);
}

.wa-float:hover .wa-label { opacity: 1; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 38, 68, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 52px 48px;
  max-width: 460px;
  width: 100%;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
  color: var(--text-muted);
}

body.en .modal-close { left: auto; right: 20px; }
.modal-close:hover { background: var(--secondary); color: var(--white); }

.modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon svg { width: 36px; height: 36px; fill: #25D366; }

.modal-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.7;
}

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.modal-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.modal-option:hover::before { opacity: 1; }
.modal-option:hover { border-color: var(--primary); transform: translateY(-2px); }

.modal-option-icon {
  width: 48px;
  height: 48px;
  background: rgba(35, 51, 91, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.modal-option:hover .modal-option-icon { background: rgba(255,255,255,0.15); }

.modal-option-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  transition: var(--transition);
}

.modal-option:hover .modal-option-icon svg { stroke: var(--white); }

.modal-option-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.modal-option:hover .modal-option-label { color: var(--white); }

.modal-option-number {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  direction: ltr;
}

.modal-option:hover .modal-option-number { color: rgba(255,255,255,0.75); }

/* ─── FOOTER ─── */
.yas-footer {
  background: var(--primary-dark);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.yas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.yas-copy {
  font-size: 14px;
  color: rgba(220, 225, 238, 0.55);
}

.yas-credit a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(220, 225, 238, 0.5);
  font-size: 13px;
  transition: var(--transition);
  direction: ltr;
}

.yas-credit a:hover { color: var(--secondary); }

.yas-credit img {
  height: 22px;
  width: auto;
  opacity: 0.5;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.yas-credit a:hover img { opacity: 0.85; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 141, 112, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(224, 141, 112, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

body.en .mobile-menu-close { left: auto; right: 24px; }

.lang-toggle-mobile { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }
  .nav-inner { gap: 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .lang-toggle-desktop { display: none !important; }
  .lang-toggle-mobile { display: block; margin-top: 16px; font-size: 18px; padding: 12px 32px; }
  .nav-logo img { height: 64px; }

  /* Hero mobile — remove pushed margins, center nicely */
  .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    padding: 0 8px;
    text-align: right;
  }
  body.en .hero-content { text-align: left; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); line-height: 1.2; }
  .hero-sub { font-size: 15px; line-height: 1.9; margin-bottom: 36px; max-width: 100%; }
  .hero-cta { padding: 16px 36px; font-size: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 40px 28px; }
  .modal-options { grid-template-columns: 1fr 1fr; }
  .yas-container { flex-direction: column; text-align: center; }
  .instagram-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .modal-options { grid-template-columns: 1fr 1fr; }
  .wa-float { bottom: 24px; left: 24px; }
  body.en .wa-float { left: auto; right: 24px; }
  .instagram-grid { grid-template-columns: 1fr; }
}

/* ─── EN OVERRIDES ─── */
body.en .section-label::before { display: block; }
body.en .wa-label::after { left: auto; right: -6px; border-right: none; border-left-color: var(--primary); }

/* Hero EN — flip margin to left side */
body.en .hero-content {
  margin-left: 0;
  margin-right: 400px;
  text-align: left;
}
