@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* ========================================> */
/* ========================================> */
/* Global Section */
/* ========================================> */
/* ========================================> */
:root {
  --color-gold: #b8952a;
}

html {
  scroll-behavior: smooth;
}

a[href^="tel"],
a[href^="mailto"],
a[href^="https://maps"] {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover,
a[href^="https://maps"]:hover {
  color: var(--color-gold);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

header .header-nav a.active-nav {
  color: #b8952a !important;
  position: relative;
}

header .header-nav a.active-nav::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #b8952a;
  border-radius: 50%;
}

.bred {
    border: 2px solid red;
}

.cp {
    cursor: pointer;
}

body {
    background-color: #FAFCFF;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1200px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

/* ========================================> */
/* ========================================> */
/* Header Section */
/* ========================================> */
/* ========================================> */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

header .navbar {
  min-height: 70px;
  padding: 0;
}

.header-logo {
  height: 50px;
  width: auto;
}

.header-nav {
  gap: 35px;
}

.header-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333 !important;
  padding: 0 !important;
  position: relative;
  transition: color 0.2s ease;
}

.header-nav .nav-link::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8952a;
  margin: 4px auto 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #b8952a !important;
}

.header-nav .nav-link.active::after,
.header-nav .nav-link:hover::after {
  opacity: 1;
}

.header-download-btn {
  background: linear-gradient(135deg, #c9a84c, #b8952a);
  color: #ffffff;
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-right: 20px;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.header-download-btn:hover {
  color: #ffffff;
  transform: scale(1.03);
  filter: brightness(1.08);
}

.navbar-toggler {
  border-color: rgba(184, 149, 42, 0.4);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.2);
}

@media (max-width: 767px) {
  .header-nav {
    gap: 0;
    padding: 12px 0;
  }
  .header-nav .nav-link {
    padding: 10px 0 !important;
  }
  .header-download-btn {
    margin: 12px 0 8px;
  }
}

/* ========================================> */
/* ========================================> */
/* Main Section */
/* ========================================> */
/* ========================================> */

body {
  padding-top: 70px;
}

section.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  margin-top: -70px;
  padding: 70px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 1s ease;
}

.hero-video.is-fading {
  opacity: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

main .hero .big-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 32px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  animation: heroFadeIn 1s ease 0.3s both;
}

.hero-content .btns {
  animation: heroFadeIn 1s ease 1s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btns div,
.btns a {
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
}

.btns a.download-app {
    display: inline-block;
    text-decoration: none !important;
    color: rgb(255, 255, 255) !important;
    background-color: rgba(0, 0, 0, 0);
    background-position: 0% 0%;
    background-attachment: scroll;
    background-image: linear-gradient(-180deg, rgb(226, 201, 110) 0%, rgb(177, 137, 48) 96%);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    box-shadow: rgba(177, 137, 48, 0.5) 0px 2px 6px 0px;
}

.btns a.download-app:hover {
    color: rgb(255, 255, 255);
    background: rgb(226, 201, 110);
    background-repeat: repeat;
    box-shadow: rgba(177, 137, 48, 0.5) 0px 2px 6px 0px;
}

.btns a.about-us-btn {
  color: rgb(88, 92, 102) !important;
  background-color: rgba(0, 0, 0, 0);
  background-position: 0% 0%;
  background-attachment: scroll;
  background-image: linear-gradient(-180deg, rgb(255, 255, 255) 0%, rgb(250, 252, 255) 96%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  box-shadow: rgba(158, 160, 166, 0.3) 0px 2px 6px 0px;
}
.btns a.about-us-btn:hover {
    color: rgb(255, 255, 255);
    background: rgb(158, 160, 166);
    background-repeat: repeat;
    box-shadow: rgba(158, 160, 166, 0.3) 0px 2px 6px 0px;
}

.slider-slick {
    margin-top: 40px;
    position: relative;
}

.qcec-projects {
    border-radius: 20px;
    overflow: hidden;
}

.qcec-projects.owl-carousel .owl-stage-outer,
.qcec-projects.owl-carousel .owl-stage {
    height: 500px;
}

.qcec-projects .owl-item {
    height: 500px;
}

.qcec-projects .owl-item > div,
.qcec-projects .slick-slide > div {
    width: 90%;
    height: 500px !important;
    margin: 0 auto;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 16px;
}

.slider-slick .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    pointer-events: none;
}

.slider-slick .owl-nav button {
    pointer-events: all;
}

.slick-prev svg, .slick-next svg {
    fill: #fff;
}

.slick-prev, .slick-next {
    position: absolute;
    z-index: 999;
    padding: 0px;
    border: medium;
    width: 36px;
    min-width: 36px;
    margin: 10px;
    height: 36px;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background: linear-gradient(-180deg, rgb(226, 201, 110) 0%, rgb(177, 137, 48) 96%);
    box-shadow: rgba(177, 137, 48, 0.5) 0px 2px 6px 0px;
    z-index: 3;
    top: 45%;
}

.slick-prev {
    left: -10px;
}

.slick-next {   
    right: -10px;
}

.squares-left, .squares-right {
    position: absolute;
}

.squares-left {
    top: -35px;
    left: -30px;
    z-index: -1;
}

.squares-right {
    bottom: -32px;
    right: -12px;
    z-index: -1;
    transform: rotate(90deg);
}

.slick-dots {
    margin: 0;
}

.slick-dots li {
    list-style: none;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    background: #000;
    padding: 0px;
    border: medium;
    width: 10px;
    margin: 0px 5px;
    height: 10px;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(168, 182, 222, 0.5);
}

.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}


.slick-dots .slick-active button {
    background: linear-gradient(-180deg, rgb(226, 201, 110) 0%, rgb(177, 137, 48) 96%);
    box-shadow: rgba(177, 137, 48, 0.5) 0px 2px 6px 0px;
}

.slick-dots .slick-active button:hover {
    color: rgb(255, 255, 255);
    background: rgb(226, 201, 110);
    box-shadow: rgba(177, 137, 48, 0.5) 0px 2px 6px 0px;
}

/* ========================================> */
/* ========================================> */
/* About Us Section */
/* ========================================> */
/* ========================================> */

section.about-us {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-title-line {
  width: 60px;
  height: 2px;
  background: #b8952a;
  margin: 0 auto 30px auto;
}

.about-text {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 2;
  color: #444;
  direction: rtl;
  text-align: center;
  margin-top: 0;
}

/* ========================================> */
/* ========================================> */
/* Projects Section */
/* ========================================> */
/* ========================================> */

section.projects-section {
  padding: 80px 0;
  background: #faf8f3;
  border-top: 1px solid #ede8dc;
}

.projects-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.projects-title-line {
  width: 60px;
  height: 2px;
  background: #b8952a;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.project-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.project-card .card-img-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #e8dfc8;
}

.project-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.project-card .card-overlay h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.project-card .card-overlay p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.project-card--skeleton {
  pointer-events: none;
  cursor: default;
}

.project-card--skeleton:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.skeleton-shimmer {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: projectShimmer 1.2s ease-in-out infinite;
}

@keyframes projectShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.projects-empty,
.projects-error {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: #666;
}

.projects-error {
  color: #b33;
}

.projects-cta-wrap {
  margin-top: 48px;
}

.projects-view-all-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid #b8952a;
  border-radius: 8px;
  color: #b8952a !important;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.projects-view-all-btn:hover {
  background: linear-gradient(-180deg, rgb(226, 201, 110) 0%, rgb(177, 137, 48) 96%);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: rgba(177, 137, 48, 0.4) 0 4px 12px;
}

.projects-view-all-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.project-card .card-img-wrapper > a:first-of-type {
  display: block;
  line-height: 0;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================> */
/* ========================================> */
/* Our Team Section */
/* ========================================> */
/* ========================================> */

section.our-team {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f7f3eb;
  border-top: 1px solid #e8dfc8;
  position: relative;
}

.team-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b8952a;
  text-decoration: underline;
  text-underline-offset: 6px;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #888;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Decorative dots and rings container */
.team-area {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tdot, .tring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tdot { background: #b8952a; }
.tring { border: 2px solid #b8952a; background: transparent; }

.td1 { width: 8px;  height: 8px;  top: 20px;  left: 8%; }
.td2 { width: 6px;  height: 6px;  top: 80px;  left: 22%; }
.td3 { width: 9px;  height: 9px;  top: 15px;  right: 10%; }
.td4 { width: 6px;  height: 6px;  top: 100px; right: 25%; }
.tr1 { width: 14px; height: 14px; top: 50px;  left: 5%; }
.tr2 { width: 12px; height: 12px; top: 30px;  right: 5%; }
.tr3 { width: 10px; height: 10px; top: 120px; left: 48%; }

.team-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}

.team-track-wrapper {
  overflow: hidden;
  width: 500px;
}

.team-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: none;
}

.team-item {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.team-item .member-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.4s ease;
  cursor: pointer;
}

.team-item.active .member-avatar {
  width: 150px !important;
  height: 150px !important;
  opacity: 1 !important;
  box-shadow: 0 8px 30px rgba(184,149,42,0.3);
}

.team-item .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-prev-btn, .team-next-btn {
  width: 38px;
  height: 38px;
  background: #b8952a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Member info below slider */
.team-info {
  margin-top: 28px;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b8952a;
}

.member-role {
  font-size: 0.9rem;
  color: #777;
  margin-top: 4px;
}

/* ========================================> */
/* ========================================> */
/* Stats Section */
/* ========================================> */
/* ========================================> */

section.stats-section {
  position: relative;
  min-height: 350px !important;
  padding: 80px 0 !important;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.72);
}

section.stats-section .container {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 60px !important;
  transition: transform 0.3s ease;
  cursor: default;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 3rem !important;
  color: #b8952a;
  margin-bottom: 15px !important;
  display: block;
}

.stat-number {
  font-size: 4.5rem !important;
  font-weight: 800 !important;
  color: #b8952a;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Cairo", sans-serif;
  direction: ltr;
}

.stat-label {
  font-size: 1.2rem !important;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px !important;
  margin-top: 10px !important;
}

.stat-divider {
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, #b8952a, transparent);
  flex-shrink: 0;
}

/* ========================================> */
/* ========================================> */
/* Contractors Section */
/* ========================================> */
/* ========================================> */

section.contractors-section {
  background: #ffffff;
}

.contractors-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.contractors-title-line {
  width: 60px;
  height: 2px;
  background: #b8952a;
  margin: 0 auto 14px auto;
}

.contractors-subtitle {
  color: #888;
  font-size: 1rem;
}

.marquee-outer {
  width: 50%;
  overflow: hidden;
  margin-top: 40px;
  padding-right: 20px;
  margin: 0 auto;
  direction: ltr;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
  will-change: transform;
  gap: 20px;
  padding: 10px 0;
  direction: ltr;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contractor-card {
  background: white;
  border: 1px solid #ede8dc;
  border-radius: 14px;
  padding: 20px 30px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.contractor-card img {
  max-height: 70px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.contractor-card:hover img {
  filter: grayscale(0%);
}

/* ========================================> */
/* ========================================> */
/* App Promo Section */
/* ========================================> */
/* ========================================> */

section.app-promo-section {
  min-height: 400px;
  padding: 60px 0;
  background: linear-gradient(135deg, #dde8f5 0%, #eee8f0 50%, #f5e8e0 100%);
  direction: rtl;
  overflow: hidden;
}

.app-promo-text {
  text-align: right;
  padding: 20px 0;
}

.app-promo-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.3;
}

.app-promo-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 10px;
}

.app-promo-small {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 28px;
}

.app-promo-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
  margin-top: 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  margin: 8px;
  font-size: 0.85rem;
  transition: transform 0.2s;
  line-height: 1.3;
}

.store-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.store-btn i {
  font-size: 1.8rem;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn span small {
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 400;
}

/* Phone mockups */
.app-promo-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.phone-mockup {
  width: 150px;
  height: 300px;
  background: #ffffff;
  border-radius: 28px;
  border: 6px solid #2a2a3a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: absolute;
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  display: block;
  width: 50px;
  height: 8px;
  background: #2a2a3a;
  border-radius: 4px;
  margin: 10px auto 0;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-back {
  transform: rotate(-6deg) translateX(50px) translateY(15px);
  z-index: 1;
  opacity: 0.9;
}

.phone-front {
  transform: rotate(4deg) translateX(-20px) translateY(10px);
  z-index: 2;
}

/* ========================================> */
/* ========================================> */
/* Contact Section */
/* ========================================> */
/* ========================================> */

section.contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f3 100%);
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.contact-title-line {
  width: 60px;
  height: 2px;
  background: #b8952a;
  margin: 0 auto 14px auto;
}

.contact-subtitle {
  color: #888;
  font-size: 1rem;
}

/* Form card */
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.material-input {
  position: relative;
  margin-bottom: 24px;
}

.material-input input,
.material-input textarea {
  width: 100%;
  padding: 16px 16px 8px;
  border: 1.5px solid #d0c8b8;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
  font-family: inherit;
}

.material-input textarea {
  min-height: 130px;
  resize: vertical;
}

.material-input label {
  position: absolute;
  right: 16px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease;
  background: white;
  padding: 0 4px;
}

.material-input textarea ~ label {
  top: 20px;
  transform: none;
}

.material-input input:focus,
.material-input textarea:focus {
  border-color: #b8952a;
}

.material-input input:focus ~ label,
.material-input input:not(:placeholder-shown) ~ label,
.material-input textarea:focus ~ label,
.material-input textarea:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #b8952a;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #c9a84c, #b8952a);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Info cards */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fdf9f3;
  border-radius: 12px;
  padding: 16px 20px;
  border-right: 4px solid #b8952a;
  margin-bottom: 16px;
  direction: rtl;
}

.contact-info-icon {
  font-size: 1.4rem;
  color: #b8952a;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

/* ========================================> */
/* ========================================> */
/* Footer */
/* ========================================> */
/* ========================================> */

.site-footer {
  background: #0f1923;
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  max-height: 55px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8952a;
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.footer-socials a:hover {
  border-color: #b8952a;
  background: rgba(184, 149, 42, 0.12);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-col-line {
  width: 40px;
  height: 2px;
  background: #b8952a;
  margin-bottom: 20px;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: #b8952a;
}

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

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list li i {
  color: #b8952a;
  margin-top: 3px;
  flex-shrink: 0;
}

/* App column */
.footer-app-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 10px;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1.3;
}

.footer-store-btn:hover {
  background: rgba(184, 149, 42, 0.15);
  border-color: #b8952a;
  color: #ffffff;
}

.footer-store-btn i {
  font-size: 1.5rem;
  color: #b8952a;
}

.footer-store-btn span {
  display: flex;
  flex-direction: column;
}

.footer-store-btn span small {
  font-size: 0.68rem;
  opacity: 0.6;
}

/* Divider & bottom bar */
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
}

.footer-bottom {
  padding: 15px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ========================================> */
/* Scroll to top button */
/* ========================================> */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #b8952a;
  color: #ffffff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 149, 42, 0.4);
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}

/* ========================================> */
/* Floating Lang Switcher */
/* ========================================> */

.lang-switcher-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
}

.lang-current-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.lang-current-btn:hover {
  transform: scale(1.1);
}

.lang-current-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lang-dropdown {
  position: absolute;
  bottom: 55px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: none;
  border-radius: 25px;
  padding: 8px 16px 8px 12px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  white-space: nowrap;
  transition: all 0.2s ease;
  transform: translateX(-10px);
  opacity: 0;
}

.lang-dropdown.open .lang-option {
  transform: translateX(0);
  opacity: 1;
}

.lang-dropdown.open .lang-option:nth-child(1) { transition-delay: 0.05s; }
.lang-dropdown.open .lang-option:nth-child(2) { transition-delay: 0.1s; }
.lang-dropdown.open .lang-option:nth-child(3) { transition-delay: 0.15s; }
.lang-dropdown.open .lang-option:nth-child(4) { transition-delay: 0.2s; }
.lang-dropdown.open .lang-option:nth-child(5) { transition-delay: 0.25s; }
.lang-dropdown.open .lang-option:nth-child(6) { transition-delay: 0.3s; }

.lang-option:hover {
  background: #fdf9f3;
  color: #b8952a;
  transform: translateX(4px);
}

.lang-option img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-option.active {
  background: #fdf9f3;
  color: #b8952a;
  border: 1.5px solid #b8952a;
}

/* ========================================> */
/* Testimonials Section */
/* ========================================> */

.testimonials-section {
  background: linear-gradient(135deg, #fdf9f3 0%, #f5efe0 100%);
  padding: 80px 0;
  direction: rtl;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.testimonials-title-line {
  width: 60px;
  height: 3px;
  background: #b8952a;
  border-radius: 2px;
  margin-bottom: 14px;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: #888;
  margin: 0;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  line-height: 1;
  color: #b8952a;
  opacity: 0.18;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin: 0;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0ebe0;
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b8952a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.testimonial-role {
  font-size: 0.78rem;
  color: #999;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonials-section .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.testimonials-section .owl-dot span {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: all 0.3s;
}

.testimonials-section .owl-dot.active span {
  background: #b8952a;
  width: 24px;
  border-radius: 4px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 25px;
  padding: 8px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.rating-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.stars-gold {
  color: #f4b400;
  font-size: 1rem;
}

.reviews-count {
  color: #888;
  font-size: 0.9rem;
}

