
@font-face {
  font-family: "Aquire";
  src: url("../fonts/Aquire-Regular.woff2") format("woff2"),
       url("../fonts/Aquire-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* لو عندك وزن تاني (Bold) حطيه هيك:
@font-face {
  font-family: "Aquire";
  src: url("../fonts/Aquire-Bold.woff2") format("woff2"),
       url("../fonts/Aquire-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

/* Fonts */
:root {
  /* BODY ⇒ Lato */
  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* HEADINGS & NAV ⇒ Aquire */
  --heading-font: "Aquire", "Lato", sans-serif;
  --nav-font: "Aquire", "Lato", sans-serif;
}
/* خلي خلفية الصفحة نفس خلفية الهيرو لحتى يروح الشريط الأبيض */
body.index-page {
  background-color: #f4f8f3;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #101f0c;
  --accent-color: #566C2F;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;
  --nav-hover-color: #566C2F;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #566C2F;
}

/* Presets */
.light-background {
  --background-color: #f4f8f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #7A8C66;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent; /* الهيدر نفسه شفاف دائماً */
  padding: 18px 0;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
  z-index: 997;
  border-bottom: 1px solid transparent;
}

/* الكبسولة اللي بالنص (مو من أول الشاشة لآخرها) */
.header > .container-fluid {
  max-width: 1140px; /* نفس الـ container-xl تقريبا */
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* عند السكрол نعطيها شوية ثبات */
.scrolled .header {
  box-shadow: none; /* ما بدنا ظل على الهيدر نفسه */
  border-color: transparent;
}

.scrolled .header > .container-fluid {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(15, 23, 42, 0.08);
  padding-block: 8px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 15px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 16px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    transition:
      color 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.15s ease;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.25s ease;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a {
    color: #ffffff;
    background-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(86, 108, 47, 0.35);
    transform: translateY(-1px);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(86, 108, 47, 0.35);
  }

  /* Underline effect */
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--nav-hover-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease-out;
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.25s ease;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
  }

  .navmenu .dropdown ul li {
    min-width: 210px;
  }

  .navmenu .dropdown ul a {
    padding: 9px 18px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--nav-dropdown-color);
    border-radius: 0;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile (fixed off-canvas, working) */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    z-index: 10002; /* فوق الأوفرلاي */
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
  }

  /* اللوست تبع اللينكات كـ off-canvas من اليمين */
  .navmenu ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 80px 24px 24px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background-color: #ffffff;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    z-index: 10001;
    border-radius: 18px 0 0 18px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 8px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: 0.25s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: 0.25s ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  /* دروب داون (لو احتجتي لاحقاً) */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 1;
    padding: 8px 0 6px;
    margin: 6px 0 4px 8px;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.25s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.04);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: transparent;
  }

  /* حالة تفعيل الموبايل: أوفرلاي غامق + فتح اللوست */
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
  }

  body.mobile-nav-active .navmenu ul {
    display: block;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 120px 0 40px 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h2 .accent {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 34px;
  border-radius: 999px;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.25s ease;
  margin-left: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 30px;
  transition: 0.25s ease;
  line-height: 0;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  transform: scale(1.05);
  color: color-mix(in srgb, var(--accent-color), transparent 8%);
}

.hero .hero-img {
  max-width: 90%;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.18));
}

/* Icon boxes */
.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.hero .icon-box {
  background: var(--surface-color);
  padding: 38px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-in-out;
  border-radius: 18px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 14px;
  padding-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  font-size: 30px;
  line-height: 1;
  color: var(--accent-color);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .icon-box:hover {
  transform: translateY(-6px);
  background-color: var(--accent-color);
}

.hero .icon-box:hover .title,
.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

.hero .icon-box:hover .icon {
  background: rgba(255,255,255,0.08);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  letter-spacing: 0.18em;
  font-size: 12px;
}

.about .content h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about .content ul i {
  font-size: 1.15rem;
  margin-top: 3px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 999px;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.about .content .read-more i {
  font-size: 18px;
  line-height: 0;
  transition: 0.25s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 14%);
  transform: translateY(-1px);
}

.about .content .read-more:hover i {
  transform: translateX(3px);
}

.about .about-images img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 16px 60px rgba(0, 0, 0, 0.08);
  padding: 40px 26px;
  transition: all 0.25s ease-in-out;
  border-radius: 22px;
  border-bottom: 4px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  transition: ease-in-out 0.25s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 12px 0;
  font-size: 20px;
  transition: ease-in-out 0.25s;
}

.services .service-item p {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }

  .services .service-item:hover .icon {
    transform: translateY(-2px);
  }
}

/* =============================
   ASAS – Contact Section (Architect Style)
   ============================= */

#contact.contact {
  padding: 90px 0;
}

/* خلفية خفيفة فيها شوي mood معماري */
.contact.section.light-background {
  background: radial-gradient(circle at top left, color-mix(in srgb, #566C2F, transparent 75%), transparent 60%),
              radial-gradient(circle at bottom right, color-mix(in srgb, #101f0c, transparent 80%), transparent 65%),
              #f5f7f4;
}

/* الكارد الرئيسي */
.contact-shell {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 30px 26px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.09);
}

/* شريط ديكوري مائل */
.contact-shell::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -40px;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, #566C2F, color-mix(in srgb, #566C2F, transparent 40%));
  opacity: 0.16;
  transform: rotate(-8deg);
}

.contact-shell::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 0.5;
}

.contact-layout {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

/* اليسار: العنوان */
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  margin-bottom: 10px;
  font-family: var(--nav-font);
}

.contact-main-title {
  font-size: clamp(2rem, 2.6vw + 0.6rem, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
}

.contact-main-title br {
  display: block;
}

.contact-main-text {
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  max-width: 320px;
}

/* اليمين: تفاصيل التواصل */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.22s ease-out;
}

.contact-row:hover {
  border-color: color-mix(in srgb, #566C2F, transparent 45%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  background: #ffffff;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, #566C2F, transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: #566C2F;
}

.contact-row h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-row p {
  margin: 0;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Social inline */
.contact-social-inline {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.contact-social-inline > span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* نخصص السوشيال جوّات الكونتاكت بس */
.contact-social-inline .social-links {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.contact-social-inline .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: #ffffff;
  transition: 0.22s ease-out;
}

.contact-social-inline .social-links a:hover {
  border-color: #566C2F;
  background-color: #566C2F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-shell {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .contact-main-text {
    max-width: none;
  }

  .contact-row {
    padding: 9px 10px;
  }
}

@media (max-width: 576px) {
  .contact-main-title {
    font-size: 1.7rem;
  }

  .contact-shell::before,
  .contact-shell::after {
    opacity: 0.12;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* =============================
   Floating Contact FAB
   ============================= */

.fab-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: #566C2F;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: 0.22s ease-out;
}

.fab-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.fab-panel {
  position: relative;
  min-width: 230px;
  padding: 14px 14px 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.22s ease-out;
}

.fab-contact.open .fab-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-panel-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
}

.fab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fab-list li + li {
  margin-top: 6px;
}

.fab-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.fab-link i {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: color-mix(in srgb, #566C2F, transparent 86%);
  color: #566C2F;
}

.fab-link span {
  display: inline-block;
}

.fab-link:hover {
  color: var(--accent-color);
}

.fab-link:hover i {
  background: #566C2F;
  color: #ffffff;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
  font-family: "Aquire";
  src: url("../fonts/Aquire-Regular.woff2") format("woff2"),
       url("../fonts/Aquire-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* لو عندك وزن تاني (Bold) حطيه هيك:
@font-face {
  font-family: "Aquire";
  src: url("../fonts/Aquire-Bold.woff2") format("woff2"),
       url("../fonts/Aquire-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

/* Fonts */
:root {
  /* BODY ⇒ Lato */
  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* HEADINGS & NAV ⇒ Aquire */
  --heading-font: "Aquire", "Lato", sans-serif;
  --nav-font: "Aquire", "Lato", sans-serif;
}
/* خلي خلفية الصفحة نفس خلفية الهيرو لحتى يروح الشريط الأبيض */
body.index-page {
  background-color: #f4f8f3;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #101f0c;
  --accent-color: #566C2F;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;
  --nav-hover-color: #566C2F;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #566C2F;
}

/* Presets */
.light-background {
  --background-color: #f4f8f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #7A8C66;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent; /* الهيدر نفسه شفاف دائماً */
  padding: 18px 0;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
  z-index: 997;
  border-bottom: 1px solid transparent;
}

/* الكبسولة اللي بالنص (مو من أول الشاشة لآخرها) */
.header > .container-fluid {
  max-width: 1140px; /* نفس الـ container-xl تقريبا */
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* عند السكрол نعطيها شوية ثبات */
.scrolled .header {
  box-shadow: none; /* ما بدنا ظل على الهيدر نفسه */
  border-color: transparent;
}

.scrolled .header > .container-fluid {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(15, 23, 42, 0.08);
  padding-block: 8px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 15px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 16px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    transition:
      color 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.15s ease;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.25s ease;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a {
    color: #ffffff;
    background-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(86, 108, 47, 0.35);
    transform: translateY(-1px);
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(86, 108, 47, 0.35);
  }

  /* Underline effect */
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--nav-hover-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease-out;
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.25s ease;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
  }

  .navmenu .dropdown ul li {
    min-width: 210px;
  }

  .navmenu .dropdown ul a {
    padding: 9px 18px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--nav-dropdown-color);
    border-radius: 0;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile (fixed off-canvas, working) */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    z-index: 10002; /* فوق الأوفرلاي */
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
  }

  /* اللوست تبع اللينكات كـ off-canvas من اليمين */
  .navmenu ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 80px 24px 24px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background-color: #ffffff;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    z-index: 10001;
    border-radius: 18px 0 0 18px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 8px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: 0.25s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: 0.25s ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  /* دروب داون (لو احتجتي لاحقاً) */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 1;
    padding: 8px 0 6px;
    margin: 6px 0 4px 8px;
    background-color: var(--nav-dropdown-background-color);
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.25s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.04);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: transparent;
  }

  /* حالة تفعيل الموبايل: أوفرلاي غامق + فتح اللوست */
  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
  }

  body.mobile-nav-active .navmenu ul {
    display: block;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 120px 0 40px 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h2 .accent {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 34px;
  border-radius: 999px;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.25s ease;
  margin-left: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 30px;
  transition: 0.25s ease;
  line-height: 0;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  transform: scale(1.05);
  color: color-mix(in srgb, var(--accent-color), transparent 8%);
}

.hero .hero-img {
  max-width: 90%;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,0.18));
}

/* Icon boxes */
.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.hero .icon-box {
  background: var(--surface-color);
  padding: 38px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-in-out;
  border-radius: 18px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 14px;
  padding-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  font-size: 30px;
  line-height: 1;
  color: var(--accent-color);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hero .icon-box:hover {
  transform: translateY(-6px);
  background-color: var(--accent-color);
}

.hero .icon-box:hover .title,
.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

.hero .icon-box:hover .icon {
  background: rgba(255,255,255,0.08);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  letter-spacing: 0.18em;
  font-size: 12px;
}

.about .content h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about .content ul i {
  font-size: 1.15rem;
  margin-top: 3px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 999px;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.about .content .read-more i {
  font-size: 18px;
  line-height: 0;
  transition: 0.25s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 14%);
  transform: translateY(-1px);
}

.about .content .read-more:hover i {
  transform: translateX(3px);
}

.about .about-images img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 16px 60px rgba(0, 0, 0, 0.08);
  padding: 40px 26px;
  transition: all 0.25s ease-in-out;
  border-radius: 22px;
  border-bottom: 4px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  transition: ease-in-out 0.25s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 12px 0;
  font-size: 20px;
  transition: ease-in-out 0.25s;
}

.services .service-item p {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }

  .services .service-item:hover .icon {
    transform: translateY(-2px);
  }
}

/* =============================
   ASAS – Contact Section (Architect Style)
   ============================= */

#contact.contact {
  padding: 90px 0;
}

/* خلفية خفيفة فيها شوي mood معماري */
.contact.section.light-background {
  background: radial-gradient(circle at top left, color-mix(in srgb, #566C2F, transparent 75%), transparent 60%),
              radial-gradient(circle at bottom right, color-mix(in srgb, #101f0c, transparent 80%), transparent 65%),
              #f5f7f4;
}

/* الكارد الرئيسي */
.contact-shell {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 30px 26px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.09);
}

/* شريط ديكوري مائل */
.contact-shell::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -40px;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, #566C2F, color-mix(in srgb, #566C2F, transparent 40%));
  opacity: 0.16;
  transform: rotate(-8deg);
}

.contact-shell::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 0.5;
}

.contact-layout {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

/* اليسار: العنوان */
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  margin-bottom: 10px;
  font-family: var(--nav-font);
}

.contact-main-title {
  font-size: clamp(2rem, 2.6vw + 0.6rem, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
}

.contact-main-title br {
  display: block;
}

.contact-main-text {
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  max-width: 320px;
}

/* اليمين: تفاصيل التواصل */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.22s ease-out;
}

.contact-row:hover {
  border-color: color-mix(in srgb, #566C2F, transparent 45%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  background: #ffffff;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, #566C2F, transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: #566C2F;
}

.contact-row h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--heading-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-row p {
  margin: 0;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Social inline */
.contact-social-inline {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.contact-social-inline > span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* نخصص السوشيال جوّات الكونتاكت بس */
.contact-social-inline .social-links {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.contact-social-inline .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: #ffffff;
  transition: 0.22s ease-out;
}

.contact-social-inline .social-links a:hover {
  border-color: #566C2F;
  background-color: #566C2F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-shell {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .contact-main-text {
    max-width: none;
  }

  .contact-row {
    padding: 9px 10px;
  }
}

@media (max-width: 576px) {
  .contact-main-title {
    font-size: 1.7rem;
  }

  .contact-shell::before,
  .contact-shell::after {
    opacity: 0.12;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* =============================
   Floating Contact FAB
   ============================= */

.fab-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: #566C2F;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: 0.22s ease-out;
}

.fab-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.fab-panel {
  position: relative;
  min-width: 230px;
  padding: 14px 14px 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.22s ease-out;
}

.fab-contact.open .fab-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-panel-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
}

.fab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fab-list li + li {
  margin-top: 6px;
}

.fab-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.fab-link i {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: color-mix(in srgb, #566C2F, transparent 86%);
  color: #566C2F;
}

.fab-link span {
  display: inline-block;
}

.fab-link:hover {
  color: var(--accent-color);
}

.fab-link:hover i {
  background: #566C2F;
  color: #ffffff;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
