/*-----------------------------------*\
  #index.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */
:root{
--gold-crayola: hsl(38, 61%, 73%);
--quick-silver: hsla(0, 0%, 65%, 1);
--davys-grey: hsla(30, 3%, 34%, 1);
--smoky-black-1: hsla(40, 12%, 5%, 1);
--smoky-black-2: hsla(30, 8%, 5%, 1);
--smoky-black-3: hsla(0, 3%, 7%, 1);
--eerie-black-1: hsla(210, 4%, 9%, 1);
--eerie-black-2: hsla(210, 4%, 11%, 1);
--eerie-black-3: hsla(180, 2%, 8%, 1);
--eerie-black-4: hsla(0, 0%, 13%, 1);
--white: hsla(0, 0%, 100%, 1);
--white-alpha-20: hsla(0, 0%, 100%, 0.2);
--white-alpha-10: hsla(0, 0%, 100%, 0.1);
--black: hsla(0, 0%, 0%, 1);
--black-alpha-80: hsla(0, 0%, 0%, 0.8);
--black-alpha-15: hsla(0, 0%, 0%, 0.15);
   

/*cored*/
--loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);
--gradient-1: linear-gradient(to top,hsla(0, 0%, 0%, 0.9),hsla(0, 0%, 0%, 0.7),transparent);


/*foint family*/
--fontFamily-forum: 'Forum', cursive;
--fontFamily-dm_sans: 'DM Sans', sans-serif;

--fontSize-display-1: calc(1.3rem + 6.7vw);
--fontSize-headline-1: calc(2rem + 2.5vw);
--fontSize-headline-2: calc(1.3rem + 2.4vw);
--fontSize-title-1: calc(1.6rem + 1.2vw);
--fontSize-title-2: 2.2rem;
--fontSize-title-3: 2.1rem;
--fontSize-title-4: calc(1.6rem + 1.2vw);
--fontSize-body-1: 2.4rem;
--fontSize-body-2: 1.6rem;
--fontSize-body-3: 1.8rem;
--fontSize-body-4: 1.6rem;
--fontSize-label-1: 1.4rem;
--fontSize-label-2: 1.2rem;

--weight-regular: 400;
--weight-bold: 700;

--lineHeight-1: 1em;
--lineHeight-2: 1.2em;
--lineHeight-3: 1.5em;
--lineHeight-4: 1.6em;
--lineHeight-5: 1.85em;
--lineHeight-6: 1.4em;

--letterSpacing-1: 0.15em;
--letterSpacing-2: 0.4em;
--letterSpacing-3: 0.2em;
--letterSpacing-4: 0.3em;
--letterSpacing-5: 3px;


/*# Spacing*/

--section-space: 70px;


/*# Shadow*/
--shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);


/*# Border Radius*/


--radius-24: 24px;
--radius-circle: 50%;

--transition-1: 250ms ease;
--transition-2: 500ms ease;
--transition-3: 1000ms ease;
}

body {
    background-color: #0f0f0f;
  color: #fff; /* يخلي النص أبيض عشان يبان */
  margin:0;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
 
}


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

button { cursor: pointer; }

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

button { text-align: left; }

select,
ion-icon,
textarea { display: block; }

html {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}




body.nav-active { overflow: hidden; }

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }



/* شكل الهيدر اللي بيلف */
.hero-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  background-color: var(--gold-crayola);
  width: 120px;
  height: 120px;
  padding: 15px;
}

/* الإطار اللي بيلف */
.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

/* الصورة */
.hero-btn img {
  width: 100%;
}

/* الأنيميشن */
@keyframes rotate360 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label { font-weight: var(--weight-bold); }

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.contact-number:is(:hover, :focus-visible) { color: var(--white); }

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}
.contact-number::after{bottom:-5px;}

.text-center { text-align: center; }


.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}
/* الزر الأساسي */
.btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--gold-crayola);
  color: var(--gold-crayola);
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
}

/* الخلفية المتحركة */
.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;   /* مخفية فوق */
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-crayola);
  transition: 0.4s;
  z-index: 1;
}

/* يظهر بس عند hover */
.btn:hover::before {
  bottom: 0;
}

/* النص */



.btn .text { transition: var(--transition-1); }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before { background-color: var(--smoky-black-1); }

.btn-secondary .text-2 { color: var(--white); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);

  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.bg-black-10 { background-color: var(--smoky-black-2); }

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) { color: var(--white); }


.w-100 { width: 100%; }

.move-anim { animation: move 5s linear infinite; }

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder { color: inherit; }

.input-field:focus { border-color: var(--gold-crayola); }

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:last-child {
  left: auto;
  right: 10px;
}
/*serviec1*/
/*-----------------------------------*\
  #GLOBAL SECTION
\*-----------------------------------*/


.bg-black-10 { background-color: var(--smoky-black-2); }

/*-----------------------------------*\
  #GRID
\*-----------------------------------*/

.grid-list {
  display: grid;
  gap: 40px;
}

/*-----------------------------------*\
  #HOVER SHINE EFFECT
\*-----------------------------------*/

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  transform: skewX(-0.08turn) translateX(-180%);
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  pointer-events: none;
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

/*-----------------------------------*\
  #IMAGE HOLDER
\*-----------------------------------*/

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

/*-----------------------------------*\
  #BUTTON TEXT
\*-----------------------------------*/

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) { color: var(--white); }

/*-----------------------------------*\
  #SHAPE
\*-----------------------------------*/

 .shape {
  position: absolute;
  display:block;
  max-width: max-content;
  z-index:-1;
}
.w-100{width:100% ;}




/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/
.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
}
/* لازم نقطة قبل preload */
.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--gold-crayola);
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload > * {
  transition: var(--transition-1);
}

/* عند التحميل */
.preload.loaded > * {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
  visibility: hidden; /* ده اللي هيشيل البتاعة الصفرا */
  pointer-events: none; /* وده عشان تعرف تدوس على اللي تحت */
}

/* الدايرة */
.preload .circle {
  width: 112px;
  height: 112px;
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  border-radius: var(--radius-circle);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

/* أنيميشن الدايرة */
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

/* النص */
.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% { background-position: 100%; }
  100% { background-position: 0%; }
}


/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 { font-size: var(--fontSize-headline-1); }

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 { font-size: var(--fontSize-title-1); }

.title-2 { font-size: var(--fontSize-title-2); }

.title-3 { font-size: var(--fontSize-title-3); }

.title-4 { font-size: var(--fontSize-title-4); }

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 { font-size: var(--fontSize-body-3); }
  
.body-4 { font-size: var(--fontSize-body-4); }

.label-1 { font-size: var(--fontSize-label-1); }

.label-2 { font-size: var(--fontSize-label-2); }

/*===================================*
  TOPBAR
*===================================*/
.topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 8px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-alpha-10);
  z-index: 1000;
  color: var(--white);
  font-size: 0.95rem;
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-item .icon {
  color: var(--gold-crayola);
  font-size: 1.2rem;
}

.topbar-item .span {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.topbar .separator {
  width: 1px;
  height: 16px;
  background: var(--white-alpha-20);
}

/*===================================*
  HEADER
*===================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  z-index: 999;
  background: transparent;
  transition: 0.3s ease;
}

.header.active {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  padding-block: 14px;
  box-shadow: var(--shadow-1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.header .logo img {
  width: 135px;
}

/*===================================*
  NAVBAR MOBILE
*===================================*/
.navbar {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100vh;
  background: var(--smoky-black-1);
  padding: 30px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1001;
}

.navbar.active {
  transform: translateX(0);
  opacity: 1;
  right: 0;
  visibility: visible;
}

/*===================================*
  OVERLAY
*===================================*/
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 0%, 0.8);
  opacity: 0;              /* ← ده اللي هيخفيه */
  pointer-events: none;    /* ← وده عشان تعرف تدوس */
  visibility: hidden;      /* ← وده زيادة تأكيد */
  z-index: 2;
  transition: 0.5s ease;
}

/* وده لما المينو تفتح بس */
.overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/*===================================*
  CLOSE BUTTON
*===================================*/
.navbar .close-btn {
  font-size: 2rem;
  color: var(--white);
  margin-left: auto;
  transition: 0.3s;
}

.navbar.active .close-btn {
  transform: rotate(0deg);
}

/*===================================*
  MENU ITEMS (ANIMATION GRILLI STYLE)
*===================================*/
.navbar-list li {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar.active .navbar-list li {
  animation: menuItem 0.5s ease forwards;
}

.navbar.active .navbar-list li:nth-child(1) { animation-delay: 0.1s; }
.navbar.active .navbar-list li:nth-child(2) { animation-delay: 0.2s; }
.navbar.active .navbar-list li:nth-child(3) { animation-delay: 0.3s; }
.navbar.active .navbar-list li:nth-child(4) { animation-delay: 0.4s; }
.navbar.active .navbar-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes menuItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*===================================*
  NAV LINKS
*===================================*/
.navbar-link {
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--gold-crayola);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.navbar-link:hover {
  color: var(--gold-crayola);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  transform: scaleX(1);
}

/*===================================*
  HAMBURGER
*===================================*/
.nav-open-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-alpha-20);
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.nav-open-btn .line {
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  border-radius: 5px;
}

/*===================================*
  CTA BUTTON
*===================================*/
.header .btn {
  display: none;
}

/*===================================*
  DESKTOP
*===================================*/
@media (min-width: 992px) {

  .topbar {
    display: block;
  }

  .header {
    top: 35px;
  }

  .nav-open-btn,
  .navbar .close-btn,
  .overlay {
    display: none;
  }

  .navbar {
    all: unset;
    display: block;
    margin: auto;
  }

  .navbar-list {
    display: flex;
    gap: 35px;
    align-items: center;
  }

  .navbar-list li {
    opacity: 1;
    transform: none;
  }

  .navbar-link {
    font-size: 1.05rem;
  }

  .header .btn {
    display: block;
    padding: 12px 28px;
    letter-spacing: 2px;
  }
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}




.hero .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
  z-index: 1;
}

.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
}

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero .section-subtitle::after { margin-block: 14px 20px; }

.hero-text { margin-block: 10px 40px; }

.hero .btn { margin-inline: auto; }

.hero .slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero .slider-item.active .section-subtitle { animation-delay: 500ms; }
.hero .slider-item.active .hero-title { animation-delay: 1000ms; }
.hero .slider-item.active .hero-text { animation-delay: 1.5s; }
.hero .slider-item.active .btn { animation-delay: 2s; }

.hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(40, 12%, 5%);
  font-size: 2.4rem;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid hsl(38, 61%, 73%);
  transition: 0.25s ease;
  z-index: 2;
}

.hero .slider-btn:is(:hover, :focus-visible) {
  background-color: hsl(40, 12%, 5%);
  color: hsl(38, 61%, 73%);
}

.hero .slider-btn.prev { left: 30px; }
.hero .slider-btn.next { right: 30px; }







.btn-border {
  border: 2px solid var(--white);
  padding: 18px 45px;
  background-color: transparent;
  color: var(--white);
}

.btn-border:is(:hover, :focus-visible) {
  background-color: var(--gold-crayola);
  border-color: var(--gold-crayola);
  color: var(--smoky-black-1);
}

/* ================= HERO WRAPPER ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 120px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  max-width: 600px;
  position: relative;
}

/* FEATURE ICON */
.hero-feature-icon {
  width: 70px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;

}

.hero-feature-icon img {
  width: 100%;
}

/* TITLE */
.hero-title {
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1.2;
  margin-block: 20px;
}
.hero-btn {
z-index: 99;
padding:12px ;
top: auto !important;
transform: none !important;
display: grid;
place-content:center ;
width:220px


}
#home{
position: relative;
width:100% ;
height:100% ;
}
 


/* SEPARATOR */
.hero-separator {
  width: 120px;
  margin: 15px 0;
  opacity: 0.8;
}

/* TEXT */
.hero-text {
  color: var(--white-alpha-70);
  margin-bottom: 30px;
}

/* ================= CTA ================= */
.btn-primary {
  position: relative;
  display: inline-block;
  padding: 14px 35px;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 2px;
  overflow: hidden;
  color: antiquewhite;
}

.btn-primary .text-2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

.btn-primary:hover .text-1 {
  transform: translateY(-100%);
}

.btn-primary:hover .text-2 {
  top: 50%;
  transform: translateY(-50%);
}
.btn-primary:hover{
background-color: var(--gold-crayola);


} 
/* ================= HERO IMAGE ================= */
.hero-banner img {
  width: 480px;
  border-radius: 20px;
  object-fit: cover;
  animation: fadeIn 1s ease;
}

/* ================= SIDE ICONS ================= */
.hero-side-icons {

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-icon {

 border-radius: 50%;
 display: grid;
 place-items: center;
 transition: 0.3s;

}



.side-icon:hover {
  background: var(--gold-crayola);
}

/* ================= ANIMATIONS ================= */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-side-icons {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    
  }

  .hero-banner img {
    width: 100%;
  }
}








/* =========================
   ARROWS (ONLY 2 BUTTONS)
========================= */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid var(--gold-crayola);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  color: antiquewhite;
}

.slider-btn:hover {
  background: var(--gold-crayola);
  color: #000;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn ion-icon {
  font-size: 22px;
}


/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/


.service {
  position: relative;
  overflow: hidden;
  background-color: var(--smoky-black-2);
  padding-block: var(--section-space);
  z-index: 1;
}

/* تأثير ورق الشجر في الخلفية زي الأصلي */
.service::before,
.service::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  animation: move 8s linear infinite alternate;
}

.service::before {
  top: 0;
  left: 0;
  background-image: url('../images/shape-1.png');
}

.service::after {
  bottom: 0;
  right: 0;
  background-image: url('../images/shape-2.png');
  animation-delay: 2s;
}

@keyframes move {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(20px) rotate(5deg); }
}

/* subtitle */
.service .section-subtitle {
  color: var(--gold-crayola);
  text-align: center;
  margin-bottom: 10px;
}

.service .section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin: 14px auto 0;
}

/* text */
.service .section-text {
  color: var(--quick-silver);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* GRID */
.grid-list {
  display: grid;
  gap: 30px;
}

/* tablet */
@media (min-width: 575px) {
  .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktop */
@media (min-width: 992px) {
  .grid-list {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  /* الصورة التانية نازلة */
  .grid-list > li:nth-child(2) {
    transform: translateY(70px);
  }
}

/* CARD */
.service-card {
  text-align: center;
  position: relative;
}

/* IMAGE */
.img-holder {
  font-size:70px ;
  position: relative;
  overflow: hidden;
  width: 300px; 
  height:300px ;
  padding:0 ;
  margin:0 ;
  border-radius:30px ;
  

}

/* تأثير الصور زي الهيدر - اللمعة اللي بتعدي */
.card-banner {
  position: relative;
}

.card-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsla(38, 61%, 73%, 0.2), transparent);
  transform: skewX(-15deg);
  transition: 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:is(:hover, :focus-within) .card-banner::before {
  left: 120%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.05);
}

/* OVERLAY */
.card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.2);
  opacity: 0;
  transition: var(--transition-1);
  z-index: 1;
}

.service-card:is(:hover, :focus-within) .card-banner::after {
  opacity: 1;
}

/* PATTERN (TOP + BOTTOM FIXED) */
.has-before {
  position: relative;
  display: block;
  padding-block: 18px;
}

/* كان عام */
.service .has-before::before,
.service .has-before::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 30px;
  background-image: url('../images/img-pattern.svg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
}

.has-before::before {
  top: 0;
  background-position: top center;
}

.has-before::after {
  bottom: 0;
  background-position: bottom center;
  transition: var(--transition-2);
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::after {
  transform: translateX(-50%) rotateY(0.5turn);
  transition-delay: 300ms;
}

/* TITLE */
.card-title {
  margin-block: 26px 12px;
}

.card-title a {
  color: var(--white);
  transition: var(--transition-1);
}

.card-title a:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

/* BUTTON */
.btn-text {
  color: var(--gold-crayola);
  position: relative;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-5);
  margin-inline: auto;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold-crayola);
  transform: translateX(-50%) scaleX(0.2);
  transform-origin: center;
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.btn-text:is(:hover, :focus-visible)::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--white);
}

/* SHAPES - خليتها ورق الشجر بتتحرك */
.service .shape {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
  filter: brightness(0) invert(1);
  animation: move 10s linear infinite alternate;
}

.service .shape-1 {
  top: 0;
  left: 0;
}

.service .shape-2 {
  bottom: 0;
  right: 0;
  animation-delay: 3s;

}
 /* ===== ABOUT SECTION ===== */

.about {
  padding: 80px 0;
}

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ===== TEXT ===== */

.about-content {
  width: 50%;
}

.about .section-subtitle {
  font-size: 14px;
  color: #c8a97e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about .headline {
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about .section-text {
  font-size: 16px;
  line-height: 1.9;
  color: #aaa;
  text-align: justify;
  margin-bottom: 20px;
}

/* ===== CALL ===== */

.content-label span {
  font-size: 18px;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.contact-number {
  font-size: 18px;
  color: #c8a97e;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}

/* ===== BUTTON ===== */

.about .btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  border: 1px solid #c8a97e;
  color: #c8a97e;
  text-decoration: none;
  transition: 0.3s;
}

.about .btn:hover {
  background: #c8a97e;
  color: #000;
}

/* ===== IMAGE ===== */

.about-banner {
  width: 50%;
  position: relative;
}

.about-banner .w-100 {
  width: 100%;
  border-radius: 10px;
}

/* الزخارف */
.abs-img-1 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
}

.abs-img-2 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
}

.shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ===== TABLET ===== */

@media (max-width: 991px) {

  .about .container {
    flex-direction: column;
    text-align: center;
  }

  .about-content,
  .about-banner {
    width: 100%;
  }

  .about .headline {
    font-size: 32px;
  }

  .about .section-text {
    font-size: 15px;
  }

  .abs-img-1,
  .abs-img-2,
  .shape {
  }
}

/* ===== MOBILE ===== */

@media (max-width: 575px) {

  .about {
    padding: 50px 0;
  }

  .about .container {
    flex-direction: row; /* يخلي الصورة جنب النص */
    gap: 15px;
    align-items: flex-start;
  }

  .about-content {
    width: 55%;
  }

  .about-banner {
    width: 45%;
  }

  .about .headline {
    font-size: 20px;
  }

  .about .section-text {
    font-size: 13px;
    line-height: 1.8;
  }

  .content-label span {
    font-size: 14px;
  }

  .contact-number {
    font-size: 14px;
  }

  .about .btn {
    font-size: 12px;
    padding: 8px 15px;
  }

  
}
 



.special-dish {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--smoky-black-2);
  
}

.special-dish-banner {
  position: relative;
  max-width: max-content;
  margin-inline: auto;
}

.special-dish-banner .img-cover {
  width: 100%;
  height: auto;
}

.special-dish-content { 
  padding-block: 70px;
  position: relative;
  z-index: 2;
}

.special-dish-content .container {
  padding-inline: 15px;
}

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
  width: 28px;
  height: 41px;
}

.special-dish .section-subtitle {
  color: var(--gold-crayola);
  margin-block-end: 12px;
}

.special-dish .section-title {
  margin-block-end: 16px;
  color: var(--white);
}

.special-dish .section-text { 
  margin-block: 16px 40px;
  max-width: 50ch;
  margin-inline: auto;
  color: var(--quick-silver);
}

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-block-end: 40px;
}
.special-dish-badeg{
  background-color: aqua;
}

.special-dish-content .del {
  text-decoration: line-through;
  color: var(--davys-grey);
  font-size: 2.2rem;
  font-family: var(--fontFamily-forum);
}

.special-dish-content .span { 
  color: var(--gold-crayola);
  font-size: 3rem;
  font-weight: var(--weight-regular);
  font-family: var(--fontFamily-forum);
}

/* اخفي صور الديكور في الموبايل عشان هي اللي مبوظة الدنيا */
.special-dish .shape { display: none; }

/*-----------------------------------*\
  #BUTTON - Grilli Style
\*-----------------------------------*/

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
  margin-inline: auto;
  display: block;
  background-color: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text { transition: var(--transition-1); }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes move {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/* للديسكتوب اكبر من 992px */
@media (min-width: 992px) {
  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    align-items: center;
  }

  .special-dish-content { 
    padding-inline: 50px 25px;
    padding-block: 0;
  }
  
  .special-dish-content .container { 
    position: relative;
    padding-inline: 0;
  }
  
  .special-dish .section-text { margin-inline: 0; }
  .special-dish .section-subtitle::after,
  .special-dish .btn { margin-inline: 0; }
  .special-dish-content .wrapper { justify-content: flex-start; }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -30px;
  }

  /* رجع صور الديكور للديسكتوب بس */
  .special-dish .shape { 
    display: block;
    position: absolute;
    z-index: -1;
    pointer-events: none;
  }
  
  .special-dish .shape-4 { 
    top: 45%; 
    right: 0;
    width: 179px;
    height: 359px;
    position: relative;
    z-index: 3;
  }
  
  .special-dish .shape-9 {
    bottom:-150px;
    margin-left:130px ;
    position: relative;
    width: 300px;
    height: 400px;
   animation: floatShape 6s ease-in-out infinite;

  }
}

/* للديسكتوب الكبير اكبر من 1200px */
@media (min-width: 1200px) {
  .special-dish-content {
    padding: 225px 120px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }
}



/* ============ رفع شارة SPECIAL DISH لفوق ============ */
@media (max-width: 768px) {
  
  /* السكشن كله */
  .dish-section,
  .special-dish {
    position: relative !important;
    padding-top: 60px !important; /* مسافة للشارة */
  }

  /* الشارة اللي فيها نجمة */
  .special-dish-badge,
  .dish-badge,
  .section-subtitle img,
  img[alt*="badge"],
  img[src*="badge"] {
    position: absolute !important;
    top: 15px !important; /* ارفعها فوق خالص */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 50px !important;
    height: auto !important;
    z-index: 10 !important;
  }

  /* النص SPECIAL DISH */
  .section-subtitle,
  .special-dish-text {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
    text-align: center !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    margin-bottom: 10px !important;
  }

  /* العنوان Lobster Tortellini */
  .section-title,
  .dish-title {
    margin-top: 10px !important;
    text-align: center !important;
    font-size: 32px !important;
  }
}








.menu {
  background-color: var(--smoky-black-3);
  padding-block: var(--section-space);
  position: relative;
  overflow: hidden;
}
.menu .shape-5{
z-index:0;
height: auto;
width:500px ;
transform: translateY(-50%);
top: -8;
position: absolute;
margin-right:200px ;
pointer-events: none;


  
}
.menu .section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  height: 12px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.menu .section-title {
  margin-block-end: 40px;
}

.menu .grid-list {
  margin-block-end: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.menu-card .card-banner {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--gold-crayola);
}

.menu-card .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hover\:card:is(:hover, :focus-within) .img-cover {
  opacity: 0.7;
  transform: scale(1.05);
}

.menu-card .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block-end: 10px;
}

.menu-card .card-title {
  color: var(--white);
  font-size: 2.2rem;
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  transition: color 250ms ease;
}

.menu-card .card-title:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.menu-card .badge {
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-family: var(--fontFamily-forum);
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  line-height: 1.4em;
  text-transform: uppercase;
  padding: 2px 10px;
  max-width: max-content;
}

.menu-card .span {
  color: var(--gold-crayola);
  font-family: var(--fontFamily-forum);
  font-size: 2.2rem;
  line-height: 1.2em;
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-card .span::before {
  content: "";
  height: 6px;
  flex-grow: 1;
  border-block: 1px solid var(--white-alpha-20);
}

.menu-card .card-text {
  color: var(--quick-silver);
  font-size: 1.4rem;
  line-height: 1.6em;
  margin-block-start: 10px;
  max-width: 38ch;
}

.menu-text {
  color: var(--quick-silver);
  margin-block-end: 30px;
}

.menu-text .span {
  display: inline-block;
  color: var(--gold-crayola);
}

.menu .btn {
  margin-inline: auto;
  border: 2px solid var(--gold-crayola);
  color: var(--gold-crayola);
  background: transparent;
  margin-left:400px ;
  height:80px;
  max-width:max-content;

}

.menu .btn:is(:hover, :focus-visible) {
  background-color: var(--gold-crayola);
  color: var(--black);
}

/* ديسكتوب: عمودين + الخط في النص */
@media (min-width: 992px) {
  .menu .grid-list {
    position: relative;
    column-gap: 90px;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }
}

@media (min-width: 1200px) {
  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }
}

/* موبايل: عمود واحد */
@media (max-width: 575px) {
  .menu-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .menu-card .title-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .menu-card .span {
    justify-content: center;
  }
  
  .menu-card .span::before {
    display: none;
  }
}






.testi-reservation { padding-block: 0; }

/* Testimonials */
.testi {
  background: url('../images/testimonial-bg.jpg') no-repeat center center;
  background-size: cover;
  padding-block: 120px 350px; /* زودت الـ padding من تحت */
  position: relative;
  z-index: 1;
}

.testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.7);
  z-index: -1;
}

.testi-content { text-align: center; max-width: 70ch; margin-inline: auto; }
.testi .quote { font-size: 7rem; font-family: var(--fontFamily-forum); line-height: 0.7em; color: var(--white); }
.testi .testi-text { color: var(--white); font-size: 3rem; line-height: 1.3em; margin-block: 15px 30px; }

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block-end: 30px;
}

.testi .wrapper .separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
  animation: rotate360 15s linear infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}

.testi .profile .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-inline: auto;
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--gold-crayola);
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* Reservation */
.reservation {
  background-color: var(--smoky-black-1);
  padding-block-start: 0;
  
}

.reservation-form {
  margin-block-start: -300px; /* الفورم طالع فوق الصورة */
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--smoky-black-2);
  position: relative;
  z-index: 5;

}

.form-left,
.form-right { padding: 30px 10px 20px;}

.form-left .headline-1 { margin-block-end: 10px; }

.form-text {
  margin-block-end: 40px;
  color: var(--quick-silver);
  font-size: 1.6rem;
}

.form-text .link {
  display: inline;
  color: var(--gold-crayola);
}

.input-wrapper {
  display: grid;
  gap: 20px;
  margin-block-end: 20px;
}

/* مهم: الlabel فوق الحقل */
.input-group .label {
  color: var(--quick-silver);
  font-size: 1.4rem;
  margin-block-end: 10px;
  display: block;
  border-radius:50px ;
  border:0 solid #b7b7b7 ;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  outline: none;
  width: 100%;
  transition: border-color 250ms ease;
}

.input-field::placeholder { color: var(--quick-silver); }
.input-field:focus { border-color: var(--gold-crayola); }

.icon-wrapper { position: relative; }
.icon-wrapper .input-field { padding-inline-start: 45px; }

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--quick-silver);
  --ionicon-stroke-width: 40px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child { left: 15px; }
.icon-wrapper ion-icon:last-child { right: 15px; }

.form-left .btn {
  background-color: var(--gold-crayola);
  color: var(--black);
  margin-block-start: 20px;
  height: 56px;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.form-left .btn:is(:hover, :focus-visible) {
  background-color: var(--white);
}

.form-right {
  background-image: url('../images/form-pattern.png');
  background-repeat: repeat;
 
}

.form-right .headline-1 { margin-block-end: 10px; }

.contact-label {
  margin-block-end: 5px;
  color: var(--white);
  font-weight: var(--weight-bold);
  font-size: 1.6rem;
  margin-top:0 ;
}

.contact-number {
  color: var(--gold-crayola);
  font-size: 3rem;
  font-family: var(--fontFamily-forum);
  margin-inline: auto;
  display: block;
  white-space:nowrap;
  letter-spacing:-0.5px ;

}

.form-right .separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
  margin-inline: auto;
  margin-block: 20px;
}

.form-right .body-4 {
  color: var(--quick-silver);
  line-height: 1.5em;
  font-size: 1.4rem;
}

.form-right .body-4:not(:last-child) { margin-block-end: 25px; }

/* ديسكتوب */
@media (min-width: 768px) {
  .input-wrapper { grid-template-columns: 1fr 1fr; }
  .input-wrapper:last-of-type { grid-template-columns: 1fr; }
}

@media (min-width: 992px) {
  .reservation-form { grid-template-columns: 1.3fr 0.7fr; }
  .form-left { padding: 75px 60px; }
  .form-right { padding: 75px 40px; }
}
   .shape-7{
 bottom: -20px; 
 right:-5PX ;
 z-index: 1;
 animation: floatShape 6s ease-in-out infinite;

}

/* ===============================
   FEATURES SECTION
================================= */

.features {
  position: relative;
  background: #111111;
  padding: 120px 0;
  overflow: hidden;
}

.features .container {
  position: relative;
  z-index: 3;
}

/* ===============================
   HEADINGS
================================= */

.features .section-subtitle {
  color: var(--gold-crayola);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.features .separator {
  width: 100px;
  height: 12px;
  margin: 0 auto 25px;
  background: url("../images/separator.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  display: none;
  
}

.features .section-title {
  font-size: 4.5rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 70px;
}

/* ===============================
   GRID LIST
================================= */

.features .grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: stretch;
}

/* ===============================
   FEATURE CARD
================================= */

.feature-card {
  background: #161616;
  padding: 25px 15px;
  background-color: var(--smoky-black-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:background-color 250ms ease;
  position: relative;
  max-width: max-content;
  max-height: max-content;
  border-radius: 40px;
  z-index:1 ;
  align-items: stretch;
  

}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-crayola);
}

.feature-card .card-icon {
  margin-bottom: 30px;
  font-size: 0.20rem;
margin-block-end:15px ;


}

.feature-card .card-icon img {
  width: 70px;
  height: 55px;
  margin-inline:  auto;
  transform: scale(1.3);
  
}

.feature-card .card-title {
  font-size: 0.8rem;
  color: var(--white);
  margin-block-end:10px ;
}

.feature-card .card-text {
  color: #b7b7b7;
  font-size:0. 4rem;
  line-height: 1.4em;
}

/* ===============================
   SHAPES
================================= */

.features .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}
.features .shape-1 {
  top: 80px;
  left: 0;
  width: 200px;
  z-index: 1;
 animation: floatShape 6s ease-in-out infinite;

}



/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1200px) {
  .features .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }

  .features .grid-list {
    grid-template-columns: 1fr;
  }

  .features .section-title {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }

  .features .shape {
    display: none;
  }
}

/* SECTION */
.event-section {
  background: #0d0d0d;
  padding: 120px 0;
  text-align: center;
}

/* CONTAINER */
.event-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-subtitle {
  color: burlywood;
  letter-spacing: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.separator {
  width: 100px;
  height: 2px;
  background: burlywood;
  margin: 20px auto;
  display: none;
}

.section-title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 60px;
  font-family: serif;
}

/* GRID */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD (زي ما هو) */
.event-card {
  background: #111;
  overflow: hidden;
  transition: 0.4s;
}

.event-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.event-image {
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.event-card:hover .event-image img {
  transform: scale(1.08);
}

/* DATE */
.event-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
}

/* TEXT */
.event-category {
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
}

.event-heading {
  color: #fff;
  padding: 0 15px;
  font-size: 20px;
}

/* BUTTON (في النص) */
.event-btn {
  display: block;
  width: fit-content;
  margin: 25px auto 30px;
  padding: 12px 28px;
  border: 1px solid burlywood;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* حركة الزرار بس */
.event-btn:hover {
  transform: translateY(-5px);
   background: burlywood;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

/*-----------------------------------*\
  #FOOTER - FIXED FOR MOBILE
\*-----------------------------------*/

/* ============ الديسكتوب ============ */
.footer {
  /* صورة الاكل الخضرا الخلفية */
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: 90% center;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

/* اوفرلاي اسود متدرج */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(0,0,0,0.95) 0%, 
    rgba(0,0,0,0.9) 55%, 
    rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.footer-top {
  padding-block: 70px;
  position: relative;
  z-index: 2;
}

.footer .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* اللينكات */
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'DM Sans', sans-serif;
  transition: 0.25s ease;
}

.footer-link:hover { color: #E4C290; }

/* بوكس الفورم */
.footer-brand {
  width: 430px;
  padding: 35px 30px;
  text-align: center;
  
  /* الباترن المربعات الرمادي جوه البوكس */
  background-color: #121111;
  background-image: url('../images/footer-form-bg.png');
  background-size: 200px;
  background-repeat: repeat;
  
  position: relative;
}

/* الزخرفة الدهبي الطويلة حوالين البوكس */
.footer-brand::before,
.footer-brand::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-image: url('../images/footer-form-pattern.svg');
  background-repeat: repeat-y;
  background-size: 15px auto;
  background-position: center;
}
.footer-brand::before { left: -18px; }
.footer-brand::after { right: -18px; }

.footer-brand .logo { 
  margin-bottom: 15px;
}
.footer-brand .logo img { width: 120px; }

.footer-brand .address,
.footer-brand .body-4 {
  color: #A6A6A6;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 3px;
  display: block;
  font-family: 'DM Sans', sans-serif;
}

.footer-brand .wrapper { margin-block: 15px 20px; }

.footer-brand .title-1 {
  color: #fff;
  font-size: 32px;
  font-family: 'Forum', cursive;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-brand .span {
  color: #A6A6A6;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}
.footer-brand .span .off { color: #fff; }

/* الفورم */
.footer.input-wrapper {
display: inline-block;  height: 100px;
  width: 50%px;
}

.icon-wrapper {
  flex: 1;
  position: relative;
  background-color: #1A1A1A;
  border: 1px solid #E4C290;
  border-right: none;
}

.input-field {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 0 10px 0 45px;
  font-family: 'DM Sans', sans-serif;
}

.input-field::placeholder { color: #A6A6A6; }

.icon-wrapper ion-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #E4C290;
  pointer-events: none;
}

 .footer .input-wrapper .btn {
  max-width: 400px;
  height: 56px;
  background-color: #E4C290;
  color: #000;
  border: 1px solid #E4C290;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

/* ============ الموبايل ============ */
@media (max-width: 768px) {
  
  .footer { background-position: 85% center; }
  
  .footer::before {
    background: linear-gradient(90deg, 
      rgba(0,0,0,0.98) 0%, 
      rgba(0,0,0,0.95) 60%, 
      rgba(0,0,0,0.3) 100%);
  }

  .footer-top { padding-block: 30px; }

  .footer .container {
    justify-content: center;
    position: relative;
    min-height: 340px;
  }

  /* البوكس */
 .footer-brand {
    width: 220px;
    padding: 12px 8px;
  }

 .footer-brand::before,
 .footer-brand::after {
    width: 8px;
    background-size: 8px auto;
  }
 .footer-brand::before { left: -10px; }
 .footer-brand::after { right: -10px; }

  /* اللينكات */
 .footer-list {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    gap: 4px;
  }
 .footer-list:first-of-type { left: 8px; }
 .footer-list:last-of-type { right: 8px; }

 .footer-link {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  /* محتوى البوكس */
 .footer-brand .logo img { 
    width: 50px;
    margin-bottom: 3px;
  }

 .footer-brand .address,
 .footer-brand .body-4 {
    font-size: 9px;
    margin-bottom: 1px;
  }

 .footer-brand .title-1 {
    font-size: 16px;
    margin-block: 4px 1px;
  }

 .footer-brand .span {
    font-size: 9px;
  }
 .footer-brand .wrapper { margin-block: 4px 8px; }

  /* الفورم */
 .input-wrapper { height: 70px; width:100% ; }

 .input-field {
    font-size: 9px;
    padding: 0 3px 0 18px;
  }

 .icon-wrapper ion-icon {
    left: 3px;
    font-size: 12px;
  }
 .footer.input-wrapper .btn {
  max-width: 400px;

}
  

}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-crayola);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 4;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--smoky-black-1);
  color: var(--gold-crayola);
}




    /* =========================
   MEDIA QUERIES
========================= */

/* responsive for larger than 575px screen */
@media (min-width: 575px) {

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-title {
    font-size: 3.6rem;
  }

}


/* responsive for larger than 768px screen */
@media (min-width: 768px) {

  .container {
    max-width: 720px;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 4.2rem;
  }

}


/* responsive for larger than 992px screen */
@media (min-width: 992px) {

  .container {
    max-width: 960px;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 5rem;
  }

}


/* responsive for larger than 1200px screen */
@media (min-width: 1200px) {

  .container {
    max-width: 1140px;
  }

  .hero-title {
    font-size: 6rem;
  }

}


/* responsive for larger than 1400px screen */
@media (min-width: 1400px) {

  .container {
    max-width: 1320px;
  }

}
@media (max-width: 768px) {

  /* 1. السكشن كله */
 .about {
    padding-block: 40px!important;
    overflow: hidden!important;
  }

 .about .container {
    display: block!important; /* رجعنا block مش flex */
    padding-inline: 20px!important;
    text-align: center!important;
  }

 .about-content {
    width: 100%!important;
    margin-bottom: 40px!important; /* مسافة بين النص والصور */
  }

  /* 2. الصورة الكبيرة هي الاساس */
 .about-banner {
    display: block!important;
    position: relative!important;
    width: 100%!important;
    max-width: 280px!important; /* صغرها للموبايل */
    height: auto!important;
    margin: 0 auto!important;
  }

 .about-banner img {
    width: 100%!important;
    height: auto!important;
    border-radius: 5px!important;
  }

  /* 3. الصورة المربعة الصغيرة - تحت شمال */
 .abs-img {
    display: block!important;
    position: absolute!important;
    bottom: -20px!important; /* طالعة من تحت */
    left: -20px!important; /* طالعة من الشمال */
    width: 120px!important; /* حجمها صغير */
    height: 120px!important;
    z-index: 2!important;
    border-radius: 5px!important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4)!important;
  }

 .abs-img img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover!important;
    border-radius: 5px!important;
  }

  /* 4. البادچ المدورة - فوق يمين */
 .badge-2 {
    display: block!important;
    position: absolute!important;
    top: -25px!important; /* طالعة من فوق */
    right: -25px!important; /* طالعة من اليمين */
    width: 90px!important;
    height: 90px!important;
    z-index: 3!important;
    animation: rotate360 15s linear infinite!important;
  }

  /* 5. اظبط النصوص */
 .about .section-title {
    font-size: 2rem!important;
    line-height: 0.95!important;
    letter-spacing: -1px!important;
  }

 .about .section-text {
    font-size: 1.1rem!important;
    line-height: 1.1!important;
  }

 .contact-number {
    font-size: 1.8rem!important;
  }
}

/* حركة الدوران للبادچ */
@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
  

 
@media (max-width: 768px) {

  /* ... باقي كود About زي ما هو ... */

  /* اظبط زرار READ MORE */
 .about .btn {
    width: auto!important;
    min-width: 140px!important; /* العرض */
    height: 45px!important; /* الطول */
    font-size: 1.3rem!important; /* حجم الخط */
    letter-spacing: 1.5px!important; /* المسافة بين الحروف */
    padding: 0 25px!important;
    margin: 0 auto!important;
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    line-height: 1!important;
  }

  /* لو الزرار ليه before و after */
 .about .btn .text,
 .about .btn .text-2 {
    font-size: 1.3rem!important;
    line-height: 1!important;
  }
}
  
 /* ============ رفع اللوجو لفوق بعيد عن المينيو ============ */

/* للديسكتوب */
.header {
  padding-block-start: 30px !important; /* مسافة من فوق */
}

.header .container {
  align-items: flex-start !important; /* خلي كله يبدأ من فوق */
}

.header .logo {
  margin-top: -10px !important; /* ارفع اللوجو 10px لفوق */
  position: relative !important;
  z-index: 10 !important;
}

.header .navbar {
  margin-top: 10px !important; /* نزل المينيو 10px لتحت */
}

/* للموبايل */
@media (max-width: 768px) {
  
  .header {
    padding-block: 15px !important;
    height: auto !important;
  }

  .header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important; /* مهم عشان يطلع فوق */
  }

  /* اللوجو */
  .header .logo {
    margin-top: -8px !important; /* ارفعه لفوق */
    position: relative !important;
    top: 0 !important;
  }

  .header .logo img {
    width: 100px !important; /* صغره شوية لو كبير */
    height: auto !important;
  }

  /* زرار المينيو */
  .nav-toggle-btn {
    margin-top: 5px !important; /* نزل الزرار شوية */
  }
} 





   


  



  
 