:root {
  --primary: #000000;
  --accent: #22d3ee;
  --accentMid: #0891b2;
  --light: #f0fdfa;
}
body {
  background: #f5f5f5;
}
.btn {
  background: var(--light);
  color: var(--accentMid);
  border: none;
  border-radius: 0;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover {
  color: var(--accentMid);
  transform: translateY(-2px);
}
/*header*/
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.main-nav {
  transition: 0.3s ease;
  background: transparent;
}

.main-nav.scrolled {
  background: var(--accentMid);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.navbar-toggler {
  border: none;
  color: var(--light) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.nav-link {
  color: var(--light) !important;
  font-weight: 500;
}
.brand-logo i {
  color: var(--light) !important;
}
.brand-logo h4 {
  color: var(--light) !important;
}

/* Hero — full viewport slideshow + centered content */
.hero-launch {
  --hero-slide-duration: 9s;
  --hero-fade-duration: 1.8s;
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #f8fafc;
  background: #0a0a0a;
  border-radius: 0;
  overflow: hidden;
}

/* Slideshow — edge-to-edge, flat full-screen images */
.hero-launch__media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  z-index: 0;
  pointer-events: none;
}

.hero-launch__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a;
  overflow: hidden;
}

.hero-launch__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
}

.hero-launch__slide.is-active {
  opacity: 1;
  z-index: 2;
  animation: heroKenBurns var(--hero-slide-duration) ease-out forwards;
}

.hero-launch__slide.is-exiting {
  opacity: 0;
  z-index: 1;
  transition: opacity var(--hero-fade-duration) ease-in-out;
  animation: none;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-launch__slide.is-active {
    animation: none;
    transform: scale(1);
  }

  .hero-launch__slide.is-exiting {
    transition: none;
  }
}

.hero-launch__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.2) 14%,
      transparent 28%
    ),
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 28%,
      rgba(0, 0, 0, 0.22) 48%,
      transparent 68%
    );
}

.hero-launch__inner {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.25rem, 4vh, 3.5rem);
  width: 100%;
  min-height: 0;
  padding-top: calc(var(--site-header-height, 76px) + clamp(0.75rem, 3vh, 2rem));
  padding-bottom: clamp(0.75rem, 2vh, 1.5rem);
  box-sizing: border-box;
}

.hero-launch__title,
.hero-launch__subtitle {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-launch__copy {
  max-width: 52rem;
  margin-bottom: 0;
}

.hero-launch__title {
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #ffffff;
}

.hero-launch__subtitle {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
  color: #cbd5e1;
}

/* Hero feature cards — swipe carousel (3 visible desktop, 1 mobile) */
.hero-cards-carousel {
  width: 100%;
  max-width: 72rem;
  margin-top: clamp(1rem, 2.5vh, 1.75rem);
  text-align: left;
}

.hero-card--clone {
  pointer-events: none;
}

.hero-cards-carousel__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.hero-cards-carousel__viewport:active {
  cursor: grabbing;
}

.hero-cards-carousel__track {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 0.85rem);
  will-change: transform;
}

.hero-cards-carousel__track .hero-card {
  flex: 0 0 auto;
  min-width: 0;
}

.hero-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 9.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(247, 247, 245, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.hero-card:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(247, 247, 245, 0.78);
  color: #0f172a;
  transform: translateY(-2px);
}

.hero-card__content {
  flex: 1 1 52%;
  padding: 1.15rem 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.hero-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-card__badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e293b;
  background: var(--accent-warm, #f97316);
  border-radius: 0;
}

.hero-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #475569;
}

.hero-card__icon {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.32);
}

.hero-card__icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(4.5rem, 12vw, 6.5rem);
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero-cards-carousel {
    max-width: 100%;
    margin-top: clamp(1.25rem, 3vh, 2rem);
  }

  .hero-card {
    min-height: clamp(9rem, 24vw, 11rem);
  }

  .hero-card__content {
    flex: 1 1 56%;
    padding: 1.15rem 1rem 1.15rem 1.2rem;
  }

  .hero-card__icon {
    flex: 0 0 40%;
    padding: 0.85rem 1rem;
  }

  .hero-card__icon img {
    max-height: clamp(5.5rem, 20vw, 7.25rem);
  }

  .hero-card__title {
    font-size: 1.05rem;
  }

  .hero-card__desc {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .hero-launch__copy {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-launch {
    /* Content-sized — not full viewport, not a fixed half-screen */
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .hero-launch__inner {
    flex: none;
    width: 100%;
    gap: clamp(0.65rem, 2.5vw, 0.95rem);
    padding-top: calc(var(--site-header-height, 76px) + 1rem);
    padding-bottom: clamp(1rem, 3vw, 1.35rem);
    padding-left: clamp(1rem, 4vw, 1.25rem);
    padding-right: clamp(1rem, 4vw, 1.25rem);
    justify-content: flex-start;
    align-items: stretch;
    overflow: visible;
    box-sizing: border-box;
  }

  .hero-launch__copy {
    flex-shrink: 0;
  }

  .hero-launch__title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-bottom: 0.45rem;
    line-height: 1.18;
  }

  .hero-launch__subtitle {
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
    line-height: 1.45;
    max-width: 22rem;
  }

  .hero-cards-carousel {
    flex: none;
    margin-top: clamp(0.5rem, 2vw, 0.85rem);
  }

  .hero-card {
    min-height: clamp(6.5rem, 18vw, 7.75rem);
  }

  .hero-card__content {
    padding: 0.75rem 0.75rem 0.75rem 0.95rem;
  }

  .hero-card__icon img {
    max-height: clamp(4.25rem, 14vw, 5.25rem);
  }

  body.page-home .doc-scroll-zone {
    padding-top: clamp(1.75rem, 5vw, 2.5rem);
  }
}
/* Appointment Bar */
.appointment-bar {
  background: var(--light);
  border-radius: 0;
  padding: 18px 20px;
  margin-top: -2.5rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* حقول الفورم */
.form-field {
  border-radius: 0;
  height: 40px;
}

/* زر الحجز */
.make-btn {
  background: var(--accentMid);
  color: #fff;
  font-weight: 600;
  border-radius: 0;
  transition: 0.2s;
}

.make-btn:hover {
  opacity: 0.9;
  color: var(--accentMid);
  transform: translateY(-2px);
}
/* Section reveal (AOS slide-in) */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Documentation scroll zone (below hero) */
.doc-scroll-zone {
  background: #f7f7f5;
  color: #334155;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(4.75rem, 11vw, 7.75rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

body.page-home .doc-scroll-zone {
  margin-top: 0;
  padding-top: clamp(3rem, 7vw, 5rem);
}

.doc-scroll-zone__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 16rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.doc-scroll-zone__main {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.doc-scroll-zone__toc {
  position: sticky;
  top: calc(var(--site-header-height, 76px) + 1.5rem);
  padding-top: 0.25rem;
}

.doc-toc__label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}

.doc-toc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.doc-toc__link {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.doc-toc__link:hover {
  color: #0f172a;
}

.doc-toc__link.is-active {
  color: #0891b2;
  font-weight: 500;
}

.doc-toc__link--child {
  padding-left: 0.85rem;
  font-size: 0.8rem;
}

.doc-prose {
  max-width: 42rem;
}

.doc-section {
  margin-bottom: 2.75rem;
}

.doc-video {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.75rem;
  max-width: 42rem;
}

.doc-video__frame {
  position: relative;
  width: 100%;
  border: 2px solid #000000;
  border-radius: 0;
  background: #000000;
  overflow: hidden;
}

.doc-video__player {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 0;
}

.doc-video__toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 2px solid #000000;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.2s, opacity 0.25s;
  z-index: 2;
}

.doc-video__toggle:hover {
  background: #ffffff;
}

.doc-video.is-playing .doc-video__toggle {
  opacity: 0;
  pointer-events: none;
}

.doc-video.is-playing:hover .doc-video__toggle,
.doc-video.is-playing:focus-within .doc-video__toggle {
  opacity: 1;
  pointer-events: auto;
}

.doc-video.is-paused .doc-video__toggle {
  opacity: 1;
  pointer-events: auto;
}

.doc-section--last {
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.doc-heading {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.doc-heading__mark {
  color: #94a3b8;
  font-weight: 500;
  user-select: none;
}

.doc-subheading {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.doc-phase-anchors {
  position: relative;
}

.doc-phase-anchors .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.doc-video--phases {
  margin-top: 0;
}

.doc-prose p {
  margin: 0 0 1.15rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  text-align: justify;
  hyphens: auto;
}

.doc-prose p:last-child {
  margin-bottom: 0;
}

.home-page-footer {
  position: relative;
  z-index: 5;
  background: var(--footer-bg, #000000);
}

@media (max-width: 991px) {
  .doc-scroll-zone__layout {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .doc-scroll-zone__main {
    padding-right: 0;
  }

  .doc-scroll-zone__toc {
    display: none !important;
  }

  body.page-home .doc-scroll-zone {
    padding-top: clamp(3rem, 8vw, 5rem);
  }
}

/* Features Section */
.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 42px;
  color: var(--accentMid);
  margin-bottom: 6px;
}

.feature-item h5 {
  font-weight: 700;
}

.feature-item p {
  color: #666;
}
/* Stats Section */
.stats-box {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  padding: 28px 35px;
  border-radius: 0;
  color: #fff;
  gap: 15px;
}

.stats-icon {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 8px;
}

.counter {
  font-size: 32px;
  font-weight: 800;
  color: beige;
}

.stats-label {
  color: beige;
  font-size: 14px;
}

/* Testimonial Section */
.testimonial-box {
  border-radius: 0;
  overflow: hidden;
}

/* الصورة */
.testimonial-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* اليمين */
.testimonial-content {
  padding: 35px;
  text-align: center;
}

/* عنوان صغير */
.tag {
  color: var(--accentMid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* رمز الاقتباس */
.quote-icon {
  font-size: 32px;
  color: var(--accentMid);
  margin: 10px 0;
}

/* نص الريفيو */
.testimonial-text {
  color: #666;
  font-style: italic;
  max-width: 420px;
  margin: auto;
}

/* الشخص */
.review-person {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 0;
  object-fit: cover;
}
/*  blog css*/
.blog-card {
  border-radius: 0;
  padding: 12px;
  gap: 12px;
}

.blog-img {
  width: 150px;
  height: 150px;
  border-radius: 0;
  object-fit: cover;
}

.blog-content p {
  color: #666;
  margin: 6px 0;
}

.blog-tag {
  color: var(--accentMid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.read-link {
  color: var(--accentMid);
  font-weight: 600;
  text-decoration: none;
}

.read-link:hover {
  text-decoration: underline;
}
.faq-tag {
  color: var(--accentMid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.accordion-button {
  font-weight: 600;
  background: #f5f8ff;
}

.accordion-button:not(.collapsed) {
  color: #0891b2;
  background: #e8ecff;
}

.accordion-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #eef1ff;
}

.cta-box {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  padding: 28px 35px;
  border-radius: 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* زر الحجز */
.cta-btn {
  background: #ffffff;
  color: #0891b2;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 0;
  transition: 0.2s;
}

.cta-btn:hover {
  background: var(--accentMid);
  color: var(--light);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer Styles */
.footer-section {
  background: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #0891b2;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
}

.footer-contact i {
  color: #0891b2;
  margin-right: 6px;
}

.newsletter-box input {
  border-radius: 0;
}

.newsletter-box button {
  border-radius: 0;
  background: linear-gradient(135deg, #6b63ff, #0891b2);
  color: var(--light);
}

.social-icons i {
  font-size: 18px;
  cursor: pointer;
  color: var(--accentMid);
}

.social-icons i:hover {
  color: #0891b2;
}
.logo {
  color: var(--accentMid) !important;
}
