:root {
  --bg: #060608;
  --bg2: #0f0f14;
  --bg3: #17171f;
  --surface: #1c1c26;
  --orange: #f5520a;
  --orange2: #ff7a3a;
  --orangeGlow: rgba(245, 82, 10, 0.22);
  --text: #f0ede8;
  --muted: #7a7a8c;
  --border: rgba(255, 255, 255, 0.07);
  --r: 16px;
  --r2: 24px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition:
    opacity 0.7s,
    visibility 0.7s;
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ld-icon {
  font-size: 64px;
  color: var(--orange);
  animation: ldFloat 1.6s ease-in-out infinite;
}
.ld-bar-wrap {
  width: 240px;
  height: 3px;
  background: var(--bg3);
  border-radius: 99px;
  overflow: hidden;
}
.ld-bar {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  animation: ldFill 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ld-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes ldFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes ldFill {
  to {
    width: 100%;
  }
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(6, 6, 8, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-icon {
  color: var(--orange);
  font-size: 26px;
}
.logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 99px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--orangeGlow);
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orangeGlow);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 82, 10, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: -100px;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 82, 10, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: 5%;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.speed-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 82, 10, 0.5),
    transparent
  );
  opacity: 0;
  animation: speedLine 3s linear infinite;
}
@keyframes speedLine {
  0% {
    right: -50%;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    right: 110%;
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 82, 10, 0.35);
  background: rgba(245, 82, 10, 0.08);
  color: var(--orange2);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.hero h1 {
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: 99px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--orangeGlow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.btn-fire:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(245, 82, 10, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 99px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(245, 82, 10, 0.4);
  background: rgba(245, 82, 10, 0.06);
}

.hero-visual {
  flex: 0 0 420px;
  position: relative;
}
.photo-frame-img {
  position: relative;
  width: 360px;
  height: 460px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(245, 82, 10, 0.1);
  margin: 0 auto;
}
.photo-inner-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg3) 0%, var(--surface) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.photo-inner-img:hover {
  background: linear-gradient(160deg, var(--surface) 0%, #222230 100%);
}
.photo-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.photo-placeholder .ti {
  font-size: 52px;
  color: rgba(245, 82, 10, 0.5);
}
.photo-placeholder p {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  max-width: 200px;
}
.photo-label {
  background: rgba(245, 82, 10, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.photo-input {
  display: none;
}

.badge-float {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-float:nth-child(2) {
  animation-delay: 1.2s;
}
.badge-float:nth-child(3) {
  animation-delay: 2.1s;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.bf1 {
  bottom: -24px;
  right: -28px;
}
.bf2 {
  top: 32px;
  left: -36px;
}
.bf3 {
  bottom: 60px;
  left: -36px;
}
.bf-icon {
  font-size: 22px;
  color: var(--orange);
}
.bf-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.bf-sub {
  font-size: 11px;
  color: var(--muted);
}
.frame-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--orange);
  border-style: solid;
}
.frame-corner.tl {
  top: 8px;
  right: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.frame-corner.br {
  bottom: 8px;
  left: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 0;
}
.stat-item {
  background: var(--bg2);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.3s;
}
.stat-item:hover {
  background: var(--surface);
}
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 82, 10, 0.12);
  border: 1px solid rgba(245, 82, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon-wrap .ti {
  font-size: 24px;
  color: var(--orange);
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: 100px 6%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow .ti {
  font-size: 14px;
}
h2.sec-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.svc-card {
  background: var(--bg2);
  padding: 36px 28px;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: right;
}
.svc-card:hover {
  background: var(--surface);
}
.svc-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.svc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 82, 10, 0.1);
  border: 1px solid rgba(245, 82, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(245, 82, 10, 0.2);
  transform: scale(1.08) rotate(-4deg);
}
.svc-icon-wrap .ti {
  font-size: 26px;
  color: var(--orange);
}
.svc-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about {
  background: var(--bg2);
  padding: 100px 6%;
}
.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}
.about-photo-wrap {
  flex: 0 0 340px;
  position: relative;
}
.about-photo-frame {
  width: 320px;
  height: 400px;
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.about-photo-placeholder:hover {
  background: rgba(255, 255, 255, 0.03);
}
.about-photo-placeholder .ti {
  font-size: 56px;
  color: rgba(245, 82, 10, 0.4);
}
.about-photo-placeholder p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  max-width: 180px;
}
.about-photo-input {
  display: none;
}
.about-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px var(--orangeGlow);
}
.about-tag .ti {
  font-size: 20px;
}

.about-content {
  flex: 1;
  min-width: 280px;
}
.about-name {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}
.about-role {
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.about-feat .ti {
  font-size: 18px;
  color: var(--orange);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.area-tag {
  background: rgba(245, 82, 10, 0.1);
  border: 1px solid rgba(245, 82, 10, 0.2);
  color: var(--orange2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-tag .ti {
  font-size: 14px;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 100px 6%;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  right: calc(12.5% + 28px);
  left: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--orange2),
    var(--orange)
  );
  opacity: 0.4;
}
.step {
  text-align: center;
  padding: 16px;
}
.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 82, 10, 0.4);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.step:hover .step-num {
  border-color: var(--orange);
  background: rgba(245, 82, 10, 0.1);
  transform: scale(1.08);
}
.step h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.booking {
  padding: 100px 6%;
  background: var(--bg2);
}
.booking-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.booking-text {
  flex: 1;
  min-width: 280px;
}
.booking-features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
}
.booking-features li .ti {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}
.booking-features li strong {
  color: var(--text);
  font-weight: 700;
}

.form-box {
  flex: 1;
  min-width: 300px;
  background: var(--bg3);
  border-radius: var(--r2);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(245, 82, 10, 0.06);
}
.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.form-head-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 82, 10, 0.12);
  border: 1px solid rgba(245, 82, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-head-icon .ti {
  font-size: 24px;
  color: var(--orange);
}
.form-head h3 {
  font-size: 20px;
  font-weight: 800;
}
.form-head p {
  font-size: 13px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group label .ti {
  font-size: 14px;
  color: var(--orange);
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 82, 10, 0.15);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
select.form-control {
  appearance: none;
  cursor: pointer;
}
select.form-control option {
  background: #1c1c26;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, #c43d00 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 17px;
  font-family: "Cairo", sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--orangeGlow);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    opacity 0.2s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(245, 82, 10, 0.45);
}
.submit-btn .ti {
  font-size: 22px;
}
.submit-btn.loading {
  opacity: 0.65;
  pointer-events: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s,
    visibility 0.35s;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup {
  background: var(--bg3);
  border-radius: var(--r2);
  padding: 52px 44px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(245, 82, 10, 0.2);
  transform: scale(0.85) translateY(40px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.overlay.show .popup {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.popup-close:hover {
  background: rgba(245, 82, 10, 0.2);
  color: var(--orange);
}
.popup-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 82, 10, 0.1);
  border: 1.5px solid rgba(245, 82, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}
@keyframes popBounce {
  from {
    transform: scale(0) rotate(-20deg);
  }
  to {
    transform: scale(1) rotate(0);
  }
}
.popup-icon-wrap .ti {
  font-size: 36px;
  color: var(--orange);
}
.popup h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}
.popup p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.popup-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  text-align: right;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.popup-summary strong {
  color: var(--text);
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 15px 34px;
  border-radius: 99px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.wa-btn .ti {
  font-size: 22px;
}

.reviews {
  padding: 100px 6%;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 60px;
}
.rev-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 30px 26px;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.rev-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 82, 10, 0.2);
}
.rev-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.rev-stars .ti {
  font-size: 16px;
  color: #f5a623;
}
.rev-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 20px;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.rev-name {
  font-size: 14px;
  font-weight: 700;
}
.rev-loc {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rev-loc .ti {
  font-size: 13px;
}

.cta-band {
  margin: 0 6% 100px;
  border-radius: var(--r2);
  background: var(--orange);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
}
.cta-band::after {
  content: "\edc8";
  font-family: "tabler-icons";
  position: absolute;
  font-size: 240px;
  opacity: 0.07;
  right: -20px;
  bottom: -30px;
  color: #fff;
  pointer-events: none;
}
.cta-band-text {
  position: relative;
}
.cta-band h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 900;
  max-width: 440px;
  color: #fff;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}
.cta-band-btn {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--orange);
  padding: 17px 36px;
  border-radius: 99px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-band-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.cta-band-btn .ti {
  font-size: 22px;
}

footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .ti {
  font-size: 22px;
  color: var(--orange);
}
.footer-logo span {
  color: var(--orange);
}
footer p {
  font-size: 13px;
  color: var(--muted);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.footer-contact .ti {
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-inner {
    flex-direction: column;
  }
  .hero-visual {
    order: -1;
    width: 100%;
  }
  .photo-frame {
    width: 100%;
    height: 320px;
  }
  .stats-strip {
    grid-template-columns: 1fr;
    overflow: hidden !important;
  }
  .bf2,.bf3{
        left: -10px !important;
  }
  .bf1{
    right: 0 !important;
  }
  .about-inner {
    flex-direction: column;
  }
  .about-photo-wrap {
    flex: unset;
    width: 100%;
  }
  .about-photo-frame {
    width: 100%;
    height: 320px;
  }
  .booking-inner {
    flex-direction: column;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 40px 28px;
    text-align: center;
    justify-content: center;
  }
  .steps::before {
    display: none;
  }
  .form-box {
    padding: 28px 22px;
  }
  .popup {
    padding: 36px 22px;
  }
}
