/*
Theme Name: Saint
Theme URI: https://github.com/
Author: Hossam Hamdy (Saint Hossam)
Author URI: https://github.com/
Description: Custom WordPress theme base styles by Hossam Hamdy (Saint Hossam).
Version: 1.0.0
Text Domain: saint
*/

/* ========================
   Fonts (Variable fallback)
======================== */

/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Black.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Black.woff") format("woff");*/
/*  font-weight: 900;*/
/*  font-style: normal;*/
/*}*/

/* Extra */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-ExtraBold.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-ExtraBold.woff") format("woff");*/
/*  font-weight: 800;*/
/*  font-style: normal;*/
/*}*/

/* Bold */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Bold.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Bold.woff") format("woff");*/
/*  font-weight: 700;*/
/*  font-style: normal;*/
/*}*/

/* Medium */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Medium.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Medium.woff") format("woff");*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*}*/

/* Regular */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Regular.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Regular.woff") format("woff");*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*}*/

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
}


/* ========================
   Design Tokens
======================== */
:root {
  --primary-c: #b89469;
  --secondary-c: #313537;
  --font-main: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fa, .fas, .far, .fal, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fas, .fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab, .fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}


/* ========================
   Page Navigation
======================== */
.wp-pagenavi {
  margin-top: 60px;
  --pg-size: 44px;
  --pg-radius: 12px;
  --pg-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  --pg-shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  line-height: 1;
  user-select: none;
}

.wp-pagenavi .pages {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: color-mix(in srgb, #000 70%, transparent);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--pg-shadow);
  font-weight: 500;
}

.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
  display: inline-grid;
  place-items: center;
  min-inline-size: var(--pg-size);
  min-block-size: var(--pg-size);
  border-radius: var(--pg-radius);
  background: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  box-shadow: var(--pg-shadow);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease,
    color 0.25s ease, border-color 0.25s ease;
}

.wp-pagenavi a.page,
.wp-pagenavi a.larger,
.wp-pagenavi a.smaller {
  background: #fff;
}

.wp-pagenavi a:hover {
  transform: translateY(-2px);
  box-shadow: var(--pg-shadow-hover);
  color: var(--secondary-c);
  border-color: var(--secondary-c) !important;
  background: color-mix(in srgb, #f0f0f0 10%, #fff 90%);
}

.wp-pagenavi span.current {
  background: var(--secondary-c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px
    color-mix(in srgb, var(--secondary-c) 28%, transparent);
  pointer-events: none;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  font-weight: 700;
}

.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover {
  transform: translateY(-2px) scale(1.06);
}

.wp-pagenavi .disabled {
  opacity: 0.4;
  pointer-events: none;
}

.wp-pagenavi a:focus-visible {
  outline: none;
  box-shadow: var(--pg-shadow-hover),
    0 0 0 4px color-mix(in srgb, var(--secondary-c) 25%, transparent);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .wp-pagenavi {
    --pg-size: 38px;
    gap: 8px;
  }
  .wp-pagenavi .pages {
    display: none;
  }
}

/* ========================
   RTL Tweaks
======================== */
html[dir="rtl"]
  :where(input[type="email"], input[type="tel"], input[type="url"]),
.chip__text,
.contact-card li a,
.footer-line a {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

html[dir="rtl"]
  :where(
    input[type="email"],
    input[type="tel"],
    input[type="url"]
  )::placeholder {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] input::placeholder {
  direction: rtl;
  text-align: right;
}

/* ========================
   Reset
======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-c, #78581b) #fff;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary-c, #78581b);
  border-radius: 15px;
}

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

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

img,
svg,
video,
canvas,
iframe {
  max-inline-size: 100%;
  max-block-size: 100%;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none !important;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
  appearance: none;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ========================
  Base
======================== */
html {
  font-size: clamp(16px, 15px + 0.3vw, 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #faf7f2;
  color: var(--primary-c);
  font-family: var(--font-main);
  line-height: 1.7;
  margin: 0;
}

main.wrap {
  position: relative;
  overflow: hidden;
  inset-inline-start: 0;
  transition: inset-inline-start 0.7s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul:not(.faq-item ul, .singlePage-content ul ),
ol:not(.singlePage-content ol) {
  list-style: none;
}

blockquote {
  quotes: none;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono",
    monospace;
}

/* ========================
   Typography
======================== */
h1 {
  font-weight: 800;
  font-size: 2.4rem;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

h3 {
  font-weight: 500;
  font-size: 1.4rem;
}

h4,
h5,
h6 {
  font-weight: 400;
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--primary-c);
}

/*--------------------------------------------------------------
 Breadcrumb Area
--------------------------------------------------------------*/
.breadcrumb-area {
  position: relative;
  padding: 50px;
  margin-bottom: 60px;
  background: linear-gradient( 135deg, var(--primary-c) 0%, #020617 55%, #181721 100% );
  color: #edefca;
  overflow: hidden;
}

.breadcrumb-area::before,
.breadcrumb-area::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb-area::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.18) 0%,
    transparent 70%
  );
}

.breadcrumb-area::after {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(
    circle,
    rgba(84, 120, 146, 0.35) 0%,
    transparent 70%
  );
}

.breadcrumb-area .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
 Breadcrumb Title
--------------------------------------------------------------*/
.page-tit {
  position: relative;
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* .page-tit::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 18px;
  bottom: -28px;
  width: 170px;
  height: 16px;
  background: url("<?php echo esc_url( THEME_IMG_DIR ); ?>line.webp") no-repeat
    center;
  background-size: contain;
} */

/*--------------------------------------------------------------
 Breadcrumb Links 
--------------------------------------------------------------*/
.breadcrumb-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #FFF;
  gap: 6px;
  font-weight: 700;
}

.breadcrumb-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  direction: rtl;
}

.breadcrumb-links li {
  display: inline-flex;
  align-items: center;
  color: rgba(237, 239, 202, 0.85);
}

.breadcrumb-links a {
  color: var(--primary-c);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--secondary-c);
  transition: all 0.25s ease;
}

.breadcrumb-links a:hover {
  background: var(--primary-c);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.breadcrumb-links .separator {
  color: rgba(237, 239, 202, 0.5);
  font-size: 12px;
  padding: 0 3px;
}

/*--------------------------------------------------------------
 Breadcrumb Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .breadcrumb-area {
    padding: 55px 0 45px;
    margin-bottom: 40px;
  }

  .page-tit::after {
    bottom: -22px;
    width: 140px;
  }

  .breadcrumb-links {
    margin-top: 35px;
    font-size: 13px;
  }

  .breadcrumb-links a {
    padding: 5px 10px;
  }
}


/*custom-header-btn*/ 
.custom-header-buttons {
    display: flex;
    gap: 12px;
}

.custom-header-btn {
    background: var(--primary-c, #b89469);
    color: #fff;
    padding: 10px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(184, 148, 105, 0.10);
    letter-spacing: 0.5px;
    display: inline-block;
}

.custom-header-btn:hover,
.custom-header-btn:focus {
    background: var(--secondary-c, #313537);
    color: #fff;
    box-shadow: 0 6px 18px rgba(49, 53, 55, 0.13);
    outline: none;
}

/* Responsive for mobile */
@media (max-width: 991px) {
    .custom-header-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .custom-header-btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 13px 0;
    }
}
/*----------------------------------------------------
 Main Button Styles
----------------------------------------------------*/
.main-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  min-width: 175px;
  height: 50px;
  border-radius: 40px;
  background: transparent;
  text-decoration: none;
  overflow: hidden;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  padding-block: 0;
  padding-inline-start: 20px;
  padding-inline-end: 5px;
}

.main-btn:hover {
  background: transparent;
  transition: 1.9s;
}

.main-btn::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-c);
  border-radius: 40px;
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.4s ease;
  transform-origin: inline-end center;
}

.main-btn:hover::before {
  width: 50px;
  opacity: 0.3;
}

.btn-bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 50px;
  height: 50px;
  background: var(--secondary-c);
  border-radius: 40px;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: inline-end center;
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  padding-inline-end: 55px;
  padding-inline-start: 0;
  transition: color 0.3s ease 0.2s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-circle {
  position: absolute;
  inset-inline-end: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 4;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.main-btn:hover .btn-bg {
  width: 100%;
}

.main-btn:hover .btn-text {
  color: #fff;
  transform: translateX(5px);
}

.main-btn:hover .btn-circle {
  transform: translateX(3px) scale(1.08);
}

.main-btn:hover .btn-circle i {
  animation: arrowPush 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes arrowPush {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-10px);
    opacity: 0.6;
  }
  70% {
    transform: translateX(3px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.main-btn:active {
  transform: scale(0.97);
}

.main-btn:active::before {
  width: 45px;
}

.main-btn,
.main-btn::before,
.btn-bg,
.btn-text,
.btn-circle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform;
}

.normal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  padding-inline: 50px;
  border-radius: 30px;
  background: var(--c-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: "bahijSans", "Cairo", Arial, sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.normal-btn .text {
  position: relative;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.normal-btn [class*="circle"] {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  pointer-events: none;
}

.normal-btn .circle1 {
  inset-inline-start: -20%;
  inset-block-start: -20%;
  inline-size: 40px;
  block-size: 40px;
}

.normal-btn .circle2 {
  inset-inline-end: -15%;
  inset-block-start: 50%;
  inline-size: 60px;
  block-size: 60px;
}

.normal-btn .circle3 {
  inset-inline-start: 20%;
  inset-block-end: -30%;
  inline-size: 50px;
  block-size: 50px;
}

.normal-btn .circle4 {
  inset-inline-end: 30%;
  inset-block-start: -25%;
  inline-size: 35px;
  block-size: 35px;
}

.normal-btn .circle5 {
  inset-inline-start: 50%;
  inset-block-start: 50%;
  inline-size: 45px;
  block-size: 45px;
  transform: translate(-50%, -50%);
}

.normal-btn:hover .circle1 {
  animation: floatCircle1 2s ease-in-out infinite;
}

.normal-btn:hover .circle2 {
  animation: floatCircle2 2.5s ease-in-out infinite 0.2s;
}

.normal-btn:hover .circle3 {
  animation: floatCircle3 2.3s ease-in-out infinite 0.4s;
}

.normal-btn:hover .circle4 {
  animation: floatCircle4 2.7s ease-in-out infinite 0.1s;
}

.normal-btn:hover .circle5 {
  animation: floatCircle5 2.4s ease-in-out infinite 0.3s;
}

.normal-btn:hover .text {
  transform: scale(1.05);
}

.normal-btn:hover {
  background: #3d5a73;
  box-shadow: 0 8px 20px rgba(44, 74, 96, 0.3);
  transform: translateY(-2px);
}

@keyframes floatCircle1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(30px, -30px) scale(1.5);
    opacity: 0.4;
  }
}

@keyframes floatCircle2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-40px, 20px) scale(1.3);
    opacity: 0.5;
  }
}

@keyframes floatCircle3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-20px, -40px) scale(1.4);
    opacity: 0.35;
  }
}

@keyframes floatCircle4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(25px, 35px) scale(1.6);
    opacity: 0.3;
  }
}

@keyframes floatCircle5 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.25;
  }
}


/*----------------------------------------------------
 Section Titles
----------------------------------------------------*/
.sec-tit {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  position: relative;
  display: table;
  margin: 0 auto 60px;
}

.sec-tit::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  right: 50%;
  transform: translateX(50%);
  width: 4.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 148, 105, 0), var(--primary-c), rgba(184, 148, 105, 0));
}
/*----------------------------------------------------
 Header & Navigation
----------------------------------------------------*/
#main-header {
  position: relative;
  padding-block: clamp(10px, 0.9vw, 14px);
  /* backdrop-filter: saturate(130%) blur(6px); */
  animation: hdr-pop 1s var(--easing) both;
  animation-delay: 0.8s;
  z-index: 1001;
}

/*.header-home {*/
/*  background: radial-gradient(circle at top right, rgba(184, 148, 105, 0.18), transparent 55%), radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.12), transparent 55%), #0b0c0d;*/
/*}*/

#main-header .header-logo img {
  max-block-size: calc(clamp(64px, 6vw, 92px) - 25px);
  inline-size: auto;
}

header .header-actions {
  gap: 15px;
}

.header-inside .main-menu .nav-list > li > a {
  color: var(--secondary-c);
}

#main-header.header-on-video {
  position: absolute;
  inset-inline: 0;
  top: 0;
  margin-inline: auto;
  margin-block: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes hdr-pop {
  from {
    transform: translateY(-200%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

#main-header > div:nth-child(1) > div:nth-child(1) {
  opacity: 0;
}

.fixed-header {
  position: fixed;
  left: 0;
  right: 0;
  background: #faf7f2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  overflow: hidden;
  transition: top 0.6s ease, opacity 0.5s ease;
  top: -120px;
  z-index: 1002;
  padding-block: clamp(8px, 0.8vw, 12px);
  overflow: clip;
}

.fixed-header.visible {
  top: 0;
  opacity: 1;
}

.fixed-header .header-logo img {
  max-block-size: calc(clamp(64px, 6vw, 92px) - 40px);
  inline-size: auto;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 8px;
  border-radius: 8px;
  background: var(--primary-c);
  color: #f9fafb;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease,
    color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lang-btn:hover {
  background: var(--secondary-c);
  border-color: var(--secondary-c);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.lang-btn:hover::before {
  opacity: 1;
}

.lang-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--primary-c);
  outline-offset: 2px;
}

.lang-flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

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

.lang-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-c);
}

.lang-btn:hover .lang-flag {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7),
              0 6px 10px rgba(0, 0, 0, 0.4);
}

.header-inside .main-menu .nav-list > li > a {
  color: var(--secondary-c);
}

.lang-text {
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .lang-btn {
    padding: 0.18rem 0.6rem;
    font-size: 0.75rem;
  }

  header .header-actions {
  gap: 0;
}

  .lang-flag {
    width: 20px;
    height: 20px;
  }
  .fix-icons {
  inset-inline-start: 5px;
  }

    .header-logo img {
    max-block-size: calc(clamp(64px, 6vw, 92px) - 32px) !important;
  }
}

.contact-btn:active {
  transform: translateY(0) scale(0.98);
}

.icon-btn:active {
  transform: scale(0.95);
}

.contact-btn,
.contact-btn [class*="circle"],
.icon-btn,
.icon-btn::before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.contact-input[type="file"] {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 13px;
  cursor: pointer;
  color: #6b7280;
}

.contact-input[type="file"]::file-selector-button {
  margin-inline-start: 8px;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-c);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(113, 172, 78, 0.35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-input[type="file"]::file-selector-button:hover {
  background: var(--secondary-c);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(28, 46, 13, 0.5);
}

.contact-input[type="file"]::-webkit-file-upload-button {
  margin-inline-start: 8px;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-c);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(113, 172, 78, 0.35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--secondary-c);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(28, 46, 13, 0.5);
}


@media (max-width: 1199.92px) {
  #main-header .main-menu .nav-list > li > a {
  padding-inline: 0;
}
}


.wpcf7-form-control.wpcf7-file {
    display: none; 
}

.custom-cv-upload-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 16px 22px;
    background: #faf7f2;
    border: 2px dashed var(--primary-c, #b89469);
    border-radius: 16px;
    font-size: 16px;
    color: var(--secondary-c, #313537);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-weight: 500;
    position: relative;
}
.custom-cv-upload-label:hover, .custom-cv-upload-label:focus-within {
    border-color: var(--secondary-c, #313537);
    box-shadow: 0 3px 16px rgba(184, 148, 105, 0.11);
}
.custom-cv-upload-label .cv-upload-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    background: var(--primary-c, #b89469);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
}
.custom-cv-filename {
    margin-right: 10px;
    color: var(--primary-c, #b89469);
    font-size: 15px;
    font-weight: 600;
}
@media (max-width: 576px) {
    .custom-cv-upload-label {
        padding: 14px 14px;
        font-size: 15px;
    }
}

/* مربع الموافقة العصري */
.cf7-acceptance {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  background: #faf7f2;
  border-radius: 12px;
  font-size: 15.5px;
  color: var(--secondary-c, #313537);
  cursor: pointer;
  transition: border 0.2s;
}

.cf7-acceptance input[type="checkbox"] {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 2px solid var(--primary-c, #b89469);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  margin-left: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.cf7-acceptance input[type="checkbox"]:checked {
  background: var(--primary-c, #b89469);
  border-color: var(--primary-c, #b89469);
}

.cf7-acceptance input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 13px;
  position: absolute;
  left: 3px; top: 0px;
}
.cf7-acceptance .wpcf7-list-item-label {
  padding-right: 6px;
}
@media (max-width: 576px) {
  .cf7-acceptance { padding: 12px 10px; font-size: 15px;}
}

.cf7-acceptance label {
    display: flex;
    align-items: center;
}
/*----------------------------------------------------
 HomeSlider / Video Section
----------------------------------------------------*/
.main_banner {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main_banner:not(.main_banner--video) {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}

.main_banner--video video.greatest-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
  transition: filter 0.5s ease;
  will-change: transform;
}

.main-caption {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.headline-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.headline-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .headline-title {
    font-size: 2rem;
  }
  .main-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}




/*----------------------------------------------------
 HomeAbout Section
----------------------------------------------------*/
.about {
  background: #faf7f2;
  overflow: hidden;
  position: relative;
}

.about-hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 18px;
  position: relative;
  margin-bottom: 25px;
  /* opacity: 0;
  animation: fadeUpIn 1s ease forwards;
  animation-delay: 0.2s; */
}

.about-title {
  color: var(--primary-c);
  font-family: 'Tajawal', sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.18;
  position: relative;
  z-index: 2;
  /* opacity: 0;
    animation: fadeUpIn 1s ease forwards;
  animation-delay: 0.4s; */
  text-shadow: 0 2px 14px #b8946910;
}

.about-hero-decor.about-decor-anim {
  display: inline-block;
  height: 5px;
  max-width: 50px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--secondary-c));
  box-shadow: 0 2px 18px #b8946926;
  animation: decorBarStretch 2.4s cubic-bezier(.59,-0.22,.41,1.18) infinite alternate;
}

@keyframes decorBarStretch {
  0%   { width: 10px; opacity: 1; }
  100% { width: 50px; opacity: 0.8;}
}

.about-text {
  color: var(--secondary-c);
  font-size: 1.13rem;
  font-family: 'Tajawal', sans-serif;
  /* opacity: 0;
  transform: translateY(25px);
  animation: fadeUpIn 1s ease forwards; */
  animation-delay: 0.6s;
}

.about_url {
    /* opacity: 0;
  animation: fadeUpIn 1s ease forwards;
  animation-delay: 0.8s; */
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: 18px;
  max-width: 92%;
  max-height: 360px;
  margin: 0 auto;
  box-shadow: 0 7px 36px #b8946915;
  position: relative;
  will-change: transform, box-shadow, filter;
  cursor: pointer;
  /* animation: popIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
  opacity: 0; */
}

.about-img-wrapper img.about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.about-img-wrapper:hover,
.about-img-wrapper:focus {
  box-shadow:
    0 20px 40px rgba(184, 148, 105, 0.45),
    0 10px 14px rgba(184, 148, 105, 0.3);
}

.about-img-wrapper:hover img.about-img,
.about-img-wrapper:focus img.about-img {
  transform: scale(1.08) rotate(-1.8deg) translateY(-8px);
  filter: brightness(1.05) saturate(1.15);
}

.about-block {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px #b8946912;
  padding: 1.7rem 1.1rem 1.7rem 1.4rem;
  min-height: 176px;
  display: flex;
  align-items: start;
  gap: 18px;
  /* opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 1s ease forwards;
  animation-delay: 1.1s; */
  transition: box-shadow 0.35s ease;
  cursor: pointer;
  will-change: box-shadow;
}

.about-block:hover,
.about-block:focus-within {
  box-shadow:
    0 16px 48px rgba(184, 148, 105, 0.35),
    0 6px 26px rgba(184, 148, 105, 0.1);
  transform: translateY(-4px);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.about-block-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 13px;
  background: #f5ede2;
  box-shadow: 0 2px 16px #b8946918;
  object-fit: contain;
  margin-top: 0.1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, box-shadow;
}

.about-block-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.35s ease;
}

.about-block:hover .about-block-icon,
.about-block:focus-within .about-block-icon {
  transform: rotate(15deg) scale(1.15);
  box-shadow:
    0 14px 22px rgba(184, 148, 105, 0.55),
    0 2px 8px rgba(184, 148, 105, 0.2);
}

.about-block:hover .about-block-icon img,
.about-block:focus-within .about-block-icon img {
  transform: rotate(360deg);
}

.about-block-title {
  color: var(--primary-c);
  font-family: 'Tajawal', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.46rem;
  transition: color 0.35s ease;
}

.about-block:hover .about-block-title,
.about-block:focus-within .about-block-title {
  color: var(--primary-c);
}

.about-block-text {
  color: var(--secondary-c);
  font-size: 1.06rem;
  font-family: 'Tajawal', sans-serif;
}

@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 991.98px) {
  .about-title {
    font-size: 1.48rem;
  }
  .about .gy-5 {
      flex-direction: column-reverse;
  }
  .about-img {
    max-width: 100%;
    max-height: 250px;
  }
  .about-block {
    padding: 1.1rem 0.6rem 1.1rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .about-title {
    font-size: 1.13rem;
  }
  .about {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }
  .about-img {
    max-width: 80vw;
    border-radius: 13px;
  }
  .about-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .about-block-icon {
    margin: 0 auto;
  }
}


/*----------------------------------------------------
 HomeServices Section
----------------------------------------------------*/
.services {
  position: relative;
  padding: 5rem 0;
  background:
    #064437;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.service-block {
  position: relative;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.92);
  border-radius: 1.25rem;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.service-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
  height: 220px;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.service-block:hover .service-thumb img {
  transform: scale(1.08);
}

.service-block:hover .service-overlay {
  opacity: 0.8;
}

.service-content {
  padding: 1.8rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.service-block:hover {
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(184, 148, 105, 0.35);
  transform: translateY(-0.5rem);
  border-color: rgba(184, 148, 105, 0.6);
}

.service-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(184, 148, 105, 0.25), rgba(184, 148, 105, 0.08));
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.service-icon img,
.service-icon svg {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: invert(1);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
  display: block;
}

.service-block:hover .service-icon {
  transform: translateY(-4px);
  background: radial-gradient(circle at top, rgba(184, 148, 105, 0.4), rgba(184, 148, 105, 0.16));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(184, 148, 105, 0.5);
}

.service-block:hover .service-icon img,
.service-block:hover .service-icon svg {
  transform: scale(1.08) translateY(-1px);
  filter: invert(1) drop-shadow(0 0.4rem 0.8rem rgba(184, 148, 105, 0.45));
}

.service-title {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.service-title a {
  transition: color 0.35s ease;
}

.service-excerpt {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  transition: color 0.35s ease;
}

.service-block:hover .service-title a {
  color: var(--primary-c) !important;
}

.service-block:hover .service-excerpt {
  color: #ffffff;
}

.service-actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFF;
  background: var(--primary-c);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(184, 148, 105, 0.25);
}

.btn-service:hover {
  background: #ffffff;
  color: #0b0c0d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(184, 148, 105, 0.4);
}

.btn-whatsapp {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
  line-height: 1;
}

/*----------------------------------------------------
 HomeNews Section
----------------------------------------------------*/
.news-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); 
  border-color: var(--primary-c);
}

.news-thumb-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-thumb {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-c);
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.news-date .day {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.news-date .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.news-body {
  padding: 15px 1.5rem 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-label {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-c);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.news-title {
  margin: 10px 0;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: 'Tajawal', sans-serif;
}

.news-title a {
  color: #1a1a1a !important;
  transition: color 0.3s;
}

.news-card:hover .news-title a {
  color: var(--primary-c) !important;
}

.news-excerpt {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-footer .read-more {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s, padding 0.3s;
  display: inline-flex;
  align-items: center;
}

.news-card:hover .read-more {
  color: var(--primary-c);
  padding-right: 5px;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.wp-pagenavi a, .wp-pagenavi span {
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    padding: 8px 14px !important;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}
.wp-pagenavi span.current, 
.wp-pagenavi a:hover {
    background: var(--primary-c) !important;
    color: #000 !important;
    border-color: var(--primary-c) !important;
}



/*----------------------------------------------------
 HomeStats Section
----------------------------------------------------*/
.home-stats {
    position: relative;
    padding: 80px 0;
    background: #064437;
    color: #f9fafb;
    overflow: hidden;
}

.home-stats::before,
.home-stats::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 148, 105, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.home-stats::before {
    top: -120px;
    right: -120px;
}
.home-stats::after {
    bottom: -120px;
    left: -120px;
}

.home-stats .container {
    position: relative;
    z-index: 1;
}

.home-stats__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    color: #f5f5f5;
}

.stats-content {
    padding: 1rem 0;
}

.stats-content .stat_tit {
    font-size: 4.3rem;
    font-weight: 700;
    color: var(--primary-c);
    margin-bottom: 5px;
}

html[dir='ltr'] .stats-content .stat_tit {
    line-height: 95px;
}

.stats-content .stat_content {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #dedede;
}

.home-stats__grid {
    --gap: 1.2rem;
}

.home-stats__item {
    background: rgba(17, 17, 17, 0.92);
    border-radius: 18px;
    padding: 1.5rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.8) inset;
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: none;
    transition:
        transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        border-color 0.45s ease,
        background 0.45s ease;
}

.home-stats__item.is-animating {
    opacity: 0;
    transform: translateY(18px);
}

.home-stats__item.is-visible {
    animation: fadeUp 0.6s ease-out forwards;
}

.home-stats__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 148, 105, 0.25), transparent 60%);
    opacity: 0;
    transform: translateX(-30%);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.home-stats__item:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(184, 148, 105, 0.8);
    background: radial-gradient(circle at top left, rgba(49, 53, 55, 0.96), rgba(17, 17, 17, 0.9));
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(184, 148, 105, 0.45);
}

.home-stats__item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.home-stats__content {
    position: relative;
    z-index: 1;
}

.home-stats__number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.35rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    letter-spacing: 0.02em;
    direction: rtl;
}

.home-stats__number::after {
    font-size: 1.1rem;
    color: var(--primary-c);
}

.home-stats__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #b3b3b3;
}

.home-stats__item:hover .home-stats__number {
    color: var(--primary-c);
}
.home-stats__item:hover .home-stats__label {
    color: #f0f0f0;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .home-stats {
        padding: 60px 0;
    }

    .home-stats__title {
        margin-bottom: 1.8rem;
    }

    .home-stats__item {
        padding: 1.2rem 1rem;
    }

    .home-stats__number {
        font-size: 1.7rem;
    }
}

@media (max-width: 575.98px) {
    .home-stats__item {
        border-radius: 14px;
    }

    .home-stats__number {
        font-size: 1.5rem;
    }
}

/*----------------------------------------------------
 HomeCert Section
----------------------------------------------------*/
.cert {
  position: relative;
  padding: 5rem 0;
  background: #faf7f2;
  overflow: hidden;
}

.cert::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.cert .container {
  position: relative;
  z-index: 1;
}

.cert-header {
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cert-title {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--primary-c);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.cert-subtitle {
  font-family: "Tajawal", sans-serif;
  font-size: 0.98rem;
  color: #000;
  margin: 0;
}

.cert-grid {
  row-gap: 1rem;
}

.cert-item {
  position: relative;
}

.cert-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cert-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #101010;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 379px;
}

.cert-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.45s ease;
}

.cert-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.05), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cert-zoom-icon {
  position: absolute;
  inset: auto 0 0 auto;
  width: 55px;
  height: 55px;
  border-radius: 999px 0 0 0;
  background: linear-gradient(135deg, var(--primary-c), rgba(184, 148, 105, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050506;
  font-size: 0.9rem;
  transform: translate(100%, 100%);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.cert-zoom-icon i {
  position: relative;
  font-size: 25px;
  bottom: -5px;
  inset-inline-start: -4px;
}

.cert-img-wrap:hover,
.cert-link:focus .cert-img-wrap {
  transform: translateY(-6px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(184, 148, 105, 0.5);
  border-color: rgba(184, 148, 105, 0.7);
  background: radial-gradient(circle at top, rgba(184, 148, 105, 0.15), #101010);
}

.cert-img-wrap:hover .cert-img,
.cert-link:focus .cert-img {
  transform: scale(1.06);
  filter: brightness(1.03) saturate(1.1);
}

.cert-img-wrap:hover::before,
.cert-link:focus .cert-img-wrap::before {
  opacity: 1;
}

.cert-img-wrap:hover .cert-zoom-icon,
.cert-link:focus .cert-zoom-icon {
  opacity: 1;
  transform: translate(0, 0);
}

.cert .sec-tit {
  color: var(--primary-c);
}

@media (max-width: 991.98px) {
  .cert {
    padding: 3.2rem 0;
  }

  .cert-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 767.98px) {
  .cert {
    padding: 2.5rem 0;
  }

  .cert-title {
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------
 HomeProjects Section
----------------------------------------------------*/
.projects {
  position: relative;
  padding: 5rem 0;
  background: #faf7f2;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 105, 0.15), transparent 60%),
    radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.08), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.projects .container {
  position: relative;
  z-index: 1;
}

.projects .sec-tit {
  color: var(--primary-c);
}
.project-card {
  position: relative;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.project-thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
  max-height: 190px;
  background: #e7dfd3;
}

.project-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(49, 53, 55, 0.6);
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
}

.project-thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.project-overlay-badge {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  padding: 0.4rem 1rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-c), #d2a87a);
  color: #ffffff;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.18);
}

html[dir='rtl'] .project-overlay-badge {
  border-radius: 999px 0 0 0;
  padding: 0.4rem 1rem 0.4rem 1.3rem;
}

html[dir='ltr'] .project-overlay-badge {
  border-radius: 0 9999px 0 0;
    padding: 0.4rem 1.3rem 0.4rem 1rem;
}

.project-content {
  padding: 1.3rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-title {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary-c);
  margin: 0;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.project-excerpt {
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(49, 53, 55, 0.78);
}

.project-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-c);
  text-decoration: none;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.project-readmore::after {
  content: "›";
  font-size: 0.95rem;
  transform: translateY(1px);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 45px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(184, 148, 105, 0.35);
  border-color: rgba(184, 148, 105, 0.5);
  background: #ffffff;
}

.project-card:hover .project-thumb {
  transform: scale(1.07);
  filter: brightness(1.02) saturate(1.12);
}

.project-card:hover .project-thumb-wrap::before {
  opacity: 1;
}

.project-card:hover .project-overlay-badge {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .project-title {
  color: var(--primary-c);
  transform: translateY(-1px);
}

.project-card:hover .project-readmore {
  transform: translateX(-3px);
  color: #a77b45;
}

.projects_url .main-btn {
  margin-top: 0.5rem;
}

@media (max-width: 991.98px) {
  .projects {
    padding: 3.2rem 0;
  }

  .project-thumb-wrap {
    max-height: 180px;
  }
}

@media (max-width: 767.98px) {
  .projects {
    padding: 2.5rem 0;
  }

  .projects .sec-tit {
    font-size: 1.4rem;
  }

  .project-card {
    border-radius: 1rem;
  }

  .project-thumb-wrap {
    border-radius: 1rem 1rem 0 0;
  }
}

/*----------------------------------------------------
 HomeTerminals Section
----------------------------------------------------*/
.testimonials {
  position: relative;
  padding: 5rem 0;
  background: #064437;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 105, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.12), transparent 60%);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .sec-tit {
  font-family: "Tajawal", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.testimonials .sec-tit::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  right: 50%;
  transform: translateX(50%);
  width: 4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 148, 105, 0), var(--primary-c), rgba(184, 148, 105, 0));
}

.testimonials-carousel .testimonial-item {
  padding: 0.5rem;
}

.testimonial-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(184, 148, 105, 0.14), rgba(8, 9, 13, 0.96));
  border-radius: 1.35rem;
  padding: 1.7rem 1.6rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
  font-family: "Tajawal", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.24, 0.82, 0.21, 1),
    box-shadow 0.45s cubic-bezier(0.24, 0.82, 0.21, 1),
    border-color 0.4s ease,
    background 0.4s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.5), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  pointer-events: none;
}

.testimonial-quote-mark {
  position: absolute;
  inset-inline-start: 1.4rem;
  top: 0.4rem;
  font-size: 4.3rem;
  line-height: 1;
  color: var(--primary-c);
  text-shadow: 0 0 26px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  user-select: none;
}

.testimonial-text-wrap {
  position: relative;
  margin-top: 0.8rem;
}

.testimonial-text {
  position: relative;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(229, 231, 235, 0.92);
  font-style: italic;
}

.testimonial-text::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  bottom: -0.7rem;
  width: 34%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 148, 105, 0), rgba(184, 148, 105, 0.9));
  opacity: 0.7;
}

.testimonial-rating {
  position: relative;
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.t-star {
  font-size: 1rem;
  transition: transform 0.35s ease, filter 0.35s ease, color 0.35s ease;
}

.t-star-full {
  color: var(--primary-c);
}

.t-star-empty {
  color: rgba(75, 85, 99, 0.75);
}

.testimonial-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 105, 0.9);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.8);
  flex-shrink: 0;
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.24, 0.82, 0.21, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

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

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.testimonial-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f9fafb;
}

.testimonial-role {
  font-size: 0.86rem;
  color: rgba(156, 163, 175, 0.9);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 1),
    0 0 0 1px rgba(184, 148, 105, 0.45);
  border-color: rgba(184, 148, 105, 0.7);
  background: radial-gradient(circle at top left, rgba(184, 148, 105, 0.2), rgba(8, 9, 13, 0.98));
}

.testimonial-card:hover .testimonial-avatar {
  transform: translateY(-2px);
  border-color: rgba(184, 148, 105, 1);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(184, 148, 105, 0.7);
}

.testimonial-card:hover .t-star-full {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.65));
}

.testimonials-carousel .owl-nav {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 105, 0.7);
  background: radial-gradient(circle at top, rgba(184, 148, 105, 0.4), rgba(8, 9, 13, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 0.9rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.85);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
  background: radial-gradient(circle at top, rgba(184, 148, 105, 0.9), rgba(8, 9, 13, 1));
  border-color: rgba(184, 148, 105, 1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 1);
  transform: translateY(-2px);
  color: #050505;
}

.testimonials-carousel .owl-nav button.owl-prev:focus,
.testimonials-carousel .owl-nav button.owl-next:focus {
  outline: none;
}

.testimonials-carousel .owl-nav i {
  font-size: 1rem;
}


.testimonials-carousel .owl-dots {
  margin-top: 1.4rem;
}

.testimonials-carousel .owl-dot span {
  transition: all 0.3s ease !important;
}

.testimonials-carousel .owl-dot.active span {
  width: 20px !important;
  background: var(--primary-c) !important;
}

@media (max-width: 767.98px) {
  .testimonials {
    padding: 3rem 0;
  }

 .sec-tit {
    font-size: 1.6rem !important;
  }
  
  .footer-interest-box {
      text-align: center;
  }

  .testimonial-card {
    border-radius: 1.1rem;
    padding: 1.5rem 1.35rem 1.4rem;
  }

  .testimonial-quote-mark {
    font-size: 3.6rem;
    inset-inline-start: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonials-carousel .owl-nav {
    top: 52%;
  }
}

/*----------------------------------------------------
 HomeClients Section
----------------------------------------------------*/
.clients {
  overflow: hidden;
}

.clients .sec-tit {
    color: var(--primary-c);
}

.clients-carousel-wrapper {
  margin-bottom: 30px;
}

.clients-carousel-wrapper:last-child {
  margin-bottom: 0;
}

.clients-carousel-mask {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

#clients-carousel-1 .item,
#clients-carousel-2 .item {
  display: flex;
  padding: 20px 25px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(14, 14, 14, 0.04), 0 4px 4px 0 rgba(211, 211, 211, 0.06);
  height: 140px;
}

#clients-carousel-1 .item img,
#clients-carousel-2 .item img {
  width: 170px;
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
  aspect-ratio: 170.90/100.00;
}

.client-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.clients .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  border: none;
  outline: none;
  padding: 0;
  width: 40px;
  height: 40px;
}

.clients .owl-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.clients .owl-carousel .owl-nav button.owl-next {
  right: -50px;
}

.clients .owl-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
}
/*----------------------------------------------------
 HomeContact Section
----------------------------------------------------*/
.contact-block-pro {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 105, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.12), transparent 60%),
    #faf7f2;
  overflow: hidden;
}

.contact-block-pro::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(184, 148, 105, 0.2), transparent 65%);
  opacity: 0.75;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.contact-block-pro::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 62%);
  inset-inline-start: -160px;
  inset-block-end: -220px;
  opacity: 0.2;
  filter: blur(1px);
  animation: contact-orbit 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes contact-orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -20px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(80px, 10px, 0) scale(1.02);
  }
}

.contact-block-pro .container {
  position: relative;
  z-index: 1;
}

.contact-block-pro .contact-map-wrap,
.contact-block-pro .contact-form-wrap {
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.45s ease-out,
    border-color 0.35s ease-out,
    background 0.35s ease-out;
}

.contact-block-pro.is-inview .contact-map-wrap {
  transition-delay: 0.1s;
}

.contact-block-pro.is-inview .contact-form-wrap {
  transition-delay: 0.25s;
}

.contact-form-wrap .sec-tit {
  color: var(--primary-c);
}

@media (max-width: 991.98px) {
  .contact-block-pro {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .contact-block-pro {
    padding: 3.5rem 0;
  }
}

.contact-block-pro .container {
  position: relative;
  z-index: 1;
}

.contact-map-wrap {
  height: 100%;
}

.contact-map-embed {
  height: 100%;
  min-height: 260px;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: 1.2rem;
  background: #e5ded2;
  color: rgba(49, 53, 55, 0.8);
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem 1.9rem;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
}

.contact-form-wrap .sec-tit {
  display: inline-block;
  text-align: start;
}

.contact-intro {
  font-family: "Tajawal", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(49, 53, 55, 0.8);
  margin: 0;
}

.cf7-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cf7-col {
  flex: 1 1 0;
  min-width: 0;
}

.cf7-col-full {
  flex: 0 0 100%;
}

.cf7-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  color: #4b5563;
}

.wpcf7 form p {
  margin: 0;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.7rem 0.9rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  color: #111827;
  background: #f9fafb;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}

.wpcf7 textarea {
  max-height: 120px;
  resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #b89469;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(184, 148, 105, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.cf7-submit-wrap {
  text-align: start;
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b89469, #d2a87a);
  color: #ffffff;
  cursor: pointer;
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #a77b45, #c7955f);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.25);
}

.wpcf7 form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top-width: 1px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(22, 163, 74, 0.06);
  color: #16a34a;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border: 1px solid rgba(220, 38, 38, 0.4);
  background: rgba(248, 113, 113, 0.05);
  color: #b91c1c;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border: 1px solid rgba(234, 179, 8, 0.5);
  background: rgba(254, 243, 199, 0.25);
  color: #FFF;
  direction: inherit;
}

.wpcf7 input.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.wpcf7 input.is-error:focus {
  border-color: #dc2626;
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.35),
    0 12px 30px rgba(127, 29, 29, 0.18);
}


.wpcf7 input.wpcf7-not-valid {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.32),
    0 14px 32px rgba(185, 28, 28, 0.28);
  animation: cInputShake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.wpcf7-not-valid-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.06);
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
  animation: tipIn 0.32s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.wpcf7-not-valid-tip::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/*div.wpcf7-response-output {*/
/*  margin: 16px 0 0;*/
/*  border-radius: 999px;*/
/*  padding: 10px 18px;*/
/*  font-size: 14px;*/
/*  border: 1px solid rgba(15, 23, 42, 0.2);*/
/*  background: var(--primary-c);*/
/*  color: #f9fafb;*/
/*  opacity: 0;*/
/*  transform: translateY(6px);*/
/*  animation: formAlertIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;*/
/*}*/

div.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border-color: rgba(22, 163, 74, 0.5);
}

div.wpcf7-response-output.wpcf7-validation-errors,
div.wpcf7-response-output.wpcf7-aborted {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.55);
}

.contact-block-pro .contact-map-wrap,
.contact-block-pro .contact-form-wrap {
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.45s ease-out,
    border-color 0.35s ease-out,
    background 0.35s ease-out;
}


.contact-block-pro.is-inview .contact-map-wrap {
  transition-delay: 0.1s;
}

.contact-block-pro.is-inview .contact-form-wrap {
  transition-delay: 0.25s;
}

@keyframes contact-orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -20px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(80px, 10px, 0) scale(1.02);
  }
}

@media (max-width: 991.98px) {
  .contact-block-pro {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .contact-block-pro {
    padding: 3.5rem 0;
  }

  .contact-form-wrap {
    padding: 1.6rem 1.4rem;
  }

  .contact-map-embed,
  .contact-map-placeholder {
    min-height: 220px;
  }
}

/*----------------------------------------------------
Footer
----------------------------------------------------*/
/* ========== Footer Base ========== */
.footer {
  position: relative;
  background: radial-gradient(circle at top right, rgba(184, 148, 105, 0.28), transparent 60%),
              radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.18), transparent 55%),
              #050505;
  color: #e5e7eb;
  font-family: "Tajawal", sans-serif;
  overflow: hidden;
}

.footer .in_footer {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  z-index: 1;
}

/* headings */
.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #f9fafb;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  inset-inline-end: 0;
  width: 2.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 148, 105, 0), rgba(184, 148, 105, 0.95));
}

/* logo & contact column */
.footer-col-brand {
  text-align: start;
}

.footer-badge img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand-text {
    text-align: start;
}

.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.88);
  margin-top: 0.55rem;
  gap: 0.4rem;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--primary-c);
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-c);
  font-size: 0.8rem;
  margin-inline-end: 0.25rem;
}

/* menus */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.4rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.footer-nav a::before {
  content: "›";
  font-size: 0.8rem;
  color: rgba(184, 148, 105, 0.9);
  margin-inline-start: 0.15rem;
  margin-inline-end: 0.25rem;
  transform: translateY(1px);
}

.footer-nav a:hover {
  color: var(--primary-c);
  transform: translateX(-2px);
}

/* social icons */
.sh-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.sh-social-icon {
  text-decoration: none;
}

.sh-social-icon__circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(148, 163, 184, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.sh-social-icon__circle svg {
  width: 16px;
  height: 16px;
}

.sh-social-icon:hover .sh-social-icon__circle {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #b89469, #e8c89a);
  color: #050505;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(184, 148, 105, 0.8);
}

/* interest box (instead of newsletter) */
.footer-interest-box {
  margin-top: 0.4rem;
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.2);
}

.footer-interest-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 0.8rem;
}

.footer-interest-btn{
display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b89469, #d2a87a);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.footer-interest-btn:hover {
  background: linear-gradient(135deg, #a77b45, #c7955f);
  color: #FFF;
  transform: translateY(-1px);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(248, 250, 252, 0.16);
}

/* footer bottom */
.footer-bottom {
  border-top: 1px solid var(--secondary-c);
  padding: 0.9rem 0;
  background: #000;
}

.footer-copy p {
  font-size: 0.85rem;
  color: rgba(156, 163, 175, 0.9);
}

.footer-copy a {
  color: rgba(229, 231, 235, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copy a:hover {
  color: var(--primary-c);
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(156, 163, 175, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-c);
}

/* fixed WhatsApp button */
.fix-icons.btn-whatsapp {
  position: fixed;
  inset-block-end: 120px;
  inset-inline-start: 18px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  padding: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.fix-icons.btn-whatsapp img {
  width: 50px;
  height: 50px;
  display: block;
}

.fix-icons.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(240, 253, 250, 0.35);
}

/* WhatsApp popup */
.whatsapp-popup {
  position: fixed;
  inset-block-end: 190px;
  inset-inline-start: 18px;
  max-width: 320px;
  width: 100%;
  z-index: 999;
}

.whatsapp-popup-content {
  position: relative;
  background: #0b1120;
  border-radius: 1.1rem;
  padding: 1rem 0.9rem 1rem;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(31, 41, 55, 0.9);
  color: #e5e7eb;
  font-family: "Tajawal", sans-serif;
}

.whatsapp-close {
  position: absolute;
  inset-inline-end: 0.5rem;
  inset-block-start: 0.4rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.1rem;
  cursor: pointer;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.whatsapp-header h3 {
  font-size: 0.98rem;
  margin: 0;
}

.whatsapp-body p {
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  color: rgba(209, 213, 219, 0.9);
}

#whatsapp-message {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: #e5e7eb;
  font-size: 0.86rem;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.6rem;
  resize: vertical;
}

.whatsapp-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  color: #ecfdf5;
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.whatsapp-send-btn i {
  font-size: 1rem;
}

.whatsapp-send-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(16, 185, 129, 0.7);
}

/* responsive */
@media (max-width: 991.98px) {
  .footer .in_footer {
    padding: 3rem 0 2rem;
  }

  .footer-col-brand {
    text-align: center;
  }

  .sh-social-icons {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .fix-icons.btn-whatsapp {
    inset-block-end: 14px;
    inset-inline-start: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-popup {
    inset-inline-start: 12px;
    inset-block-end: 80px;
    max-width: calc(100% - 24px);
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .d-flex {
    gap: 0.5rem;
  }
}

/*----------------------------------------------------
page Contact Interest Section
----------------------------------------------------*/
.contact-block--interest {
  position: relative;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 105, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.12), transparent 60%),
    #faf7f2;
  overflow: hidden;
}

.contact-block--interest .container {
  position: relative;
  z-index: 1;
}

.interest-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2.2rem 2rem;
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

.interest-intro {
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(55, 65, 81, 0.9);
}

.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin-top: 0.5rem;
}

.interest-field {
  flex: 1 1 calc(50% - 0.6rem);
  min-width: 0;
}

.interest-field-full {
  flex: 0 0 100%;
}

.interest-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  color: #4b5563;
}

.interest-label .required {
  color: #dc2626;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.65rem 0.9rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.9rem;
  color: #111827;
  background: #f9fafb;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

 .wpcf7 input::placeholder,
 .wpcf7 textarea::placeholder {
  color: rgba(148, 163, 184, 0.95);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #b89469;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(184, 148, 105, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2.2rem;
  border-radius: 999px;
  border: none;
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b89469, #d2a87a);
  color: #ffffff;
  cursor: pointer;
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #a77b45, #c7955f);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  border-top-width: 1px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(22, 163, 74, 0.06);
  color: #16a34a;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: 1px solid rgba(234, 179, 8, 0.5);
  background: rgba(254, 243, 199, 0.25);
  color: #FFF;
}


.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
  border-color: rgba(220, 38, 38, 0.8) !important;
  background: #fef2f2;
}

@media (max-width: 767.98px) {
  .contact-block--interest {
    padding: 3.5rem 0;
  }

  .interest-card {
    padding: 1.8rem 1.4rem;
  }

  .interest-field {
    flex: 0 0 100%;
  }
}

/*----------------------------------------------------
loader
----------------------------------------------------*/
:root {
    --background: #121621;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__content {
    text-align: center;
}

.site-preloader__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #6c7486;
}

body.is-loading {
    overflow: hidden;
}

/* ============= 3D Boxes Loader ============= */

.loader {
    --duration: 3s;
    --primary: rgba(39, 94, 254, 1);
    --primary-light: #2f71ff;
    --primary-rgba: rgba(39, 94, 254, 0);
    width: 200px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    margin-inline: auto;
}

@media (max-width: 480px) {
    .loader {
        zoom: 0.44;
    }
}

.loader::before,
.loader::after {
    --r: 20.5deg;
    content: "";
    width: 320px;
    height: 140px;
    position: absolute;
    right: 32%;
    bottom: -11px;
    background: var(--background);
    transform: translateZ(200px) rotate(var(--r));
    animation: mask var(--duration) linear forwards infinite;
}

.loader::after {
    --r: -20.5deg;
    right: auto;
    left: 32%;
}

.loader .ground {
    position: absolute;
    left: -50px;
    bottom: -120px;
    transform-style: preserve-3d;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
}

.loader .ground div {
    transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
        translateZ(100px) scale(0);
    width: 200px;
    height: 200px;
    background: var(--primary);
    background: linear-gradient(
        45deg,
        var(--primary) 0%,
        var(--primary) 50%,
        var(--primary-light) 50%,
        var(--primary-light) 100%
    );
    transform-style: preserve-3d;
    animation: ground var(--duration) linear forwards infinite;
}

.loader .ground div::before,
.loader .ground div::after {
    --rx: 90deg;
    --ry: 0deg;
    --x: 44px;
    --y: 162px;
    --z: -50px;
    content: "";
    width: 156px;
    height: 300px;
    opacity: 0;
    background: linear-gradient(
        var(--primary),
        var(--primary-rgba)
    );
    position: absolute;
    transform: rotateX(var(--rx)) rotateY(var(--ry))
        translate(var(--x), var(--y)) translateZ(var(--z));
    animation: ground-shine var(--duration) linear forwards infinite;
}

.loader .ground div::after {
    --rx: 90deg;
    --ry: 90deg;
    --x: 0;
    --y: 177px;
    --z: 150px;
}

.loader .box {
    --x: 0;
    --y: 0;
    position: absolute;
    animation: var(--duration) linear forwards infinite;
    transform: translate(var(--x), var(--y));
}

.loader .box > div {
    background-color: var(--primary);
    width: 48px;
    height: 48px;
    position: relative;
    transform-style: preserve-3d;
    animation: var(--duration) ease forwards infinite;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
}

.loader .box > div::before,
.loader .box > div::after {
    --rx: 90deg;
    --ry: 0deg;
    --z: 24px;
    --y: -24px;
    --x: 0;
    content: "";
    position: absolute;
    background-color: inherit;
    width: inherit;
    height: inherit;
    transform: rotateX(var(--rx)) rotateY(var(--ry))
        translate(var(--x), var(--y)) translateZ(var(--z));
    filter: brightness(var(--b, 1.2));
}

.loader .box > div::after {
    --rx: 0deg;
    --ry: 90deg;
    --x: 24px;
    --y: 0;
    --b: 1.4;
}

/* positions لكل box */
.loader .box0 {
    --x: -220px;
    --y: -120px;
    left: 58px;
    top: 108px;
}

.loader .box1 {
    --x: -260px;
    --y: 120px;
    left: 25px;
    top: 120px;
}

.loader .box2 {
    --x: 120px;
    --y: -190px;
    left: 58px;
    top: 64px;
}

.loader .box3 {
    --x: 280px;
    --y: -40px;
    left: 91px;
    top: 120px;
}

.loader .box4 {
    --x: 60px;
    --y: 200px;
    left: 58px;
    top: 132px;
}

.loader .box5 {
    --x: -220px;
    --y: -120px;
    left: 25px;
    top: 76px;
}

.loader .box6 {
    --x: -260px;
    --y: 120px;
    left: 91px;
    top: 76px;
}

.loader .box7 {
    --x: -240px;
    --y: 200px;
    left: 58px;
    top: 87px;
}

.loader .box0 {
    animation-name: box-move0;
}
.loader .box0 > div {
    animation-name: box-scale0;
}

.loader .box1 {
    animation-name: box-move1;
}
.loader .box1 > div {
    animation-name: box-scale1;
}

.loader .box2 {
    animation-name: box-move2;
}
.loader .box2 > div {
    animation-name: box-scale2;
}

.loader .box3 {
    animation-name: box-move3;
}
.loader .box3 > div {
    animation-name: box-scale3;
}

.loader .box4 {
    animation-name: box-move4;
}
.loader .box4 > div {
    animation-name: box-scale4;
}

.loader .box5 {
    animation-name: box-move5;
}
.loader .box5 > div {
    animation-name: box-scale5;
}

.loader .box6 {
    animation-name: box-move6;
}
.loader .box6 > div {
    animation-name: box-scale6;
}

.loader .box7 {
    animation-name: box-move7;
}
.loader .box7 > div {
    animation-name: box-scale7;
}

/* ============= Keyframes لكل box ============= */

/* box 0 */
@keyframes box-move0 {
    12% {
        transform: translate(var(--x), var(--y));
    }
    25%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale0 {
    6% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    14%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 1 */
@keyframes box-move1 {
    16% {
        transform: translate(var(--x), var(--y));
    }
    29%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale1 {
    10% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    18%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 2 */
@keyframes box-move2 {
    20% {
        transform: translate(var(--x), var(--y));
    }
    33%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale2 {
    14% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    22%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 3 */
@keyframes box-move3 {
    24% {
        transform: translate(var(--x), var(--y));
    }
    37%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale3 {
    18% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    26%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 4 */
@keyframes box-move4 {
    28% {
        transform: translate(var(--x), var(--y));
    }
    41%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale4 {
    22% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    30%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 5 */
@keyframes box-move5 {
    32% {
        transform: translate(var(--x), var(--y));
    }
    45%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale5 {
    26% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    34%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 6 */
@keyframes box-move6 {
    36% {
        transform: translate(var(--x), var(--y));
    }
    49%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale6 {
    30% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    38%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 7 */
@keyframes box-move7 {
    40% {
        transform: translate(var(--x), var(--y));
    }
    53%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale7 {
    34% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    42%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes ground {
    0%,
    65% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(0);
    }
    75%,
    90% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(1);
    }
    100% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(0);
    }
}

@keyframes ground-shine {
    0%,
    70% {
        opacity: 0;
    }
    75%,
    87% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

@keyframes mask {
    0%,
    65% {
        opacity: 0;
    }
    66%,
    100% {
        opacity: 1;
    }
}




/*----------------------------------------------------
top button
----------------------------------------------------*/
.scroll-top{
  position:fixed;
  bottom:26px;
  inset-inline-start:26px; 
  width:46px;
  height:46px;
  border:none;
  padding:0;
  border-radius:50%;
  background:#FFF;
  cursor:pointer;
  z-index:999;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease,visibility .25s ease,transform .25s ease,box-shadow .25s ease;
}
.scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.scroll-top:hover{
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.scroll-top i {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:14px;
  color:var(--primary-c);
  pointer-events:none;
}


.scroll-top__progress{
  width:100%;
  height:100%;
  transform:rotate(-90deg);
}
.scroll-top__track{
  fill:none;
  stroke:#e5e7eb;
  stroke-width:2.5;
}
.scroll-top__indicator{
  fill:none;
  stroke:var(--primary-c);
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-dasharray:0;
  stroke-dashoffset:0;
  transition:stroke-dashoffset .1s linear;
}

@media(max-width:575.98px){
  .scroll-top{
    bottom:18px;
    left:18px;
  }
}

/*----------------------------------------------------
 WhatsApp
----------------------------------------------------*/
.wa-fab {
  position: fixed;
  inset-inline-start: 18px;
  inset-block-end: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-float 3s ease-in-out infinite,
    wa-pulse 2.6s ease-in-out infinite;
  box-shadow: none !important;
}

/*.home .wa-fab {*/
/*    display: none;*/
/*}*/
.wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.35) 0%,
    rgba(37, 211, 102, 0.25) 35%,
    rgba(37, 211, 102, 0) 60%
  );
  animation: wa-ring 1.6s ease-out infinite;
  z-index: -1;
}

.wa-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.wa-fab:hover img {
  animation: wa-bounce 0.9s ease forwards, wa-spin 0.9s ease forwards;
  filter: hue-rotate(-15deg) brightness(1.1) saturate(1.3);
  opacity: 0.98;
}

@keyframes wa-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes wa-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.25));
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes wa-bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  30% {
    transform: scale(1.15) translateY(-4px);
  }
  50% {
    transform: scale(0.95) translateY(2px);
  }
  70% {
    transform: scale(1.1) translateY(-2px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes wa-spin {
  0% {
    rotate: 0deg;
  }
  40% {
    rotate: 8deg;
  }
  70% {
    rotate: -6deg;
  }
  100% {
    rotate: 0deg;
  }
}

@media (max-width: 480px) {
  .wa-fab {
    width: 56px;
    height: 56px;
    inset-inline-start: 14px;
    inset-block-end: 185px;
  }
}

/*----------------------------------------------------
 Pages Inside
----------------------------------------------------*/

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.service-block {
  background: var(--secondary-c);
}

/* ((single projects)) */
.project-single {
  position: relative;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 105, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(184, 148, 105, 0.12), transparent 60%),
    #f4f5f7;
  /* overflow: hidden; */
}

.project-single .container {
  position: relative;
  z-index: 1;
}

/* ===== Gallery ===== */
.property-gallery {
  position: relative;
  margin-bottom: 1.8rem;
}

.property-gallery-main {
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow:
    0 24px 55px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  background: #020617;
}

.property-gallery-item {
  position: relative;
  margin: 0;
}

.property-gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.9s ease,
    filter 0.6s ease;
}

.property-gallery-main .owl-item.active .property-gallery-item img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* thumbnails */
.property-gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.property-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.property-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.8);
  border-radius: 999px;
}

.property-gallery-thumbs .owl-thumb-item {
  border: none;
  padding: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: 0 0 80px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.65;
}

.property-gallery-thumbs .owl-thumb-item img {
  width: 100%;
  height: 68px;
  object-fit: cover;
  display: block;
}

.property-gallery-thumbs .owl-thumb-item.active,
.property-gallery-thumbs .owl-thumb-item:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.4),
    0 0 0 1px rgba(248, 250, 252, 0.4);
}

/* ===== Category badges ===== */
.property-cat {
  margin-bottom: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.property-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ===== Main content card ===== */
.property-data {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem 1.6rem;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  animation: project-fade-up 0.7s ease-out both;
}

@keyframes project-fade-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.property-exp {
  margin-bottom: 1.6rem;
  font-family: "Tajawal", sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(55, 65, 81, 0.95);
}

/* section titles */
.property-sec-tit {
  font-family: "Tajawal", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-sec-tit::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b89469;
}

.property-sec-tit::after {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b89469, rgba(184, 148, 105, 0.1));
}

.property-sec-sub {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

/* components */
.property-components {
  margin-bottom: 1.6rem;
}

.property-componentItem {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 0.8rem 0.7rem;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.property-componentItem:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(15, 23, 42, 0.03);
}

.property-componentItem-icon img {
  width: 100%;
  max-width: 42px;
}

.property-componentItem-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}

.property-componentItem-tit {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: rgba(75, 85, 99, 0.95);
}

/* additional info */
.property-additional {
  margin-bottom: 1.6rem;
}

.property-additionalItem {
  padding: 0.6rem 0.7rem;
  border-radius: 0.9rem;
  background: #f9fafb;
  margin-bottom: 0.4rem;
}

.property-additionalItem-info {
  font-size: 0.88rem;
}

.property-additionalItem-tit {
  font-weight: 600;
  color: #111827;
}

.property-additionalItem-des {
  text-align: start;
  color: #4b5563;
}

/* facilities / fixtures */
.property-dataIcon {
  margin-bottom: 1.6rem;
}

.property-dataIconItem {
  background: #f9fafb;
  border-radius: 0.9rem;
  padding: 0.6rem 0.6rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.property-dataIconItem--full {
  padding-inline: 0.85rem;
}

.property-dataIconItem:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(15, 23, 42, 0.04);
}

.property-dataIconItem-icon img {
  max-width: 32px;
}

.property-dataIconItem-tit {
  font-size: 0.88rem;
  color: #111827;
}

/* address */
.property-address-wrap {
  margin-bottom: 1.6rem;
}

.property-address {
  font-size: 0.92rem;
  color: #4b5563;
}

/* map */
.property-map-wrap {
  margin-bottom: 1.6rem;
}

.property-map iframe {
  width: 100%;
  border-radius: 1.1rem;
  border: none;
  min-height: 260px;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.3),
    0 0 0 1px rgba(15, 23, 42, 0.1);
}

/* description */
.property-des {
  margin-bottom: 1.8rem;
}

.property-des-content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #374151;
}

/* owner & notes */
.owner-details,
.notes {
  margin-bottom: 1.4rem;
}

.hold-onwer-details {
  padding: 0.6rem 0.7rem;
  border-radius: 0.9rem;
  background: #f9fafb;
  margin-bottom: 0.4rem;
}

.main_owner_details {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

/* ===== Sidebar ===== */
.project-sidebar {
  position: sticky;
  top: 110px;
}

.project-sidebar-card {
  background: radial-gradient(circle at top left, rgba(184, 148, 105, 0.16), transparent 55%),
              #020617;
  border-radius: 1.4rem;
  padding: 1.8rem 1.5rem;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
  animation: project-sidebar-fade 0.8s ease-out 0.1s both;
}

@keyframes project-sidebar-fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-single .project-title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 0.75rem;
}

.property-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-c);
  margin-bottom: 0.5rem;
}

.property-contactDetails {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 1rem;
}

/* contact buttons */
.property-contact-links {
  margin-top: 0.2rem;
}

.property-contact-linkItem a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.4rem;
  padding: 0.55rem 0.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease;
}

.property-contact-linkItem-whatsapp {
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  color: #ecfdf5;
}

.property-contact-linkItem-phone {
  background: linear-gradient(135deg, #b89469, #d2a87a);
  color: #0b1120;
}

.property-contact-linkItem a i {
  font-size: 1rem;
}

.property-contact-linkItem a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.7);
}

.property-address-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.property-meta-label {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.property-meta-value {
  font-size: 0.9rem;
  color: #4b5563;
}

.facility-status-badge-wrap {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}

.facility-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #fde68a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* responsive */
@media (max-width: 991.98px) {
  .project-sidebar {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .project-single {
    padding: 3.5rem 0;
  }

  .property-gallery-item img {
    height: 260px;
  }

  .project-sidebar-card {
    padding: 1.4rem 1.3rem;
  }
}


/*--------------------------------------------------------------
 FAQ
--------------------------------------------------------------*/
.faq-section {
  padding: 70px 0;
  background: #ffffff;
}

.faq-title {
  color: var(--secondary-c);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  width: 100%;
  border: 1px solid rgba(184, 148, 105, 0.35);
  border-radius: 999px;
  background: #ffffff;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-c);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.16s ease;
}

.faq-question:hover {
  border-color: var(--primary-c);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, var(--secondary-c), #111315);
  color: #f9fafb;
  border-color: transparent;
}

.faq-question-text {
  flex: 1;
  padding-inline-end: 16px;
  line-height: 1.6;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 105, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--primary-c);
  background: #ffffff;
  flex-shrink: 0;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    transform 0.28s ease,
    border-color 0.22s ease,
    box-shadow 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  background: var(--primary-c);
  border-color: var(--primary-c);
  color: #ffffff;
  transform: rotate(45deg);
  box-shadow: 0 6px 18px rgba(184, 148, 105, 0.45);
}

.faq-answer {
  display: none;
  border-radius: 22px;
  background: #f8f6f3;
  padding: 16px 22px 18px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #4b4f55;
  border: 1px solid rgba(184, 148, 105, 0.25);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    padding: 12px 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 18px;
  }
}
/*--------------------------------------------------------------
 News Card - Base Styles
--------------------------------------------------------------*/
.news-card {
  margin-bottom: 30px;
  display: flex; /* Enable flex for equal height */
  flex-direction: column;
  height: 100%; /* Fill parent height */
}

.news-card__item {
  display: flex;
  flex-direction: column;
  height: 100%; /* Fill news-card height */
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(34, 52, 72, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.news-card__item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-c), var(--primary-c));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  will-change: transform; /* Performance hint */
}

.news-card__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(34, 52, 72, 0.18);
}

.news-card__item:hover::before {
  transform: scaleY(1);
}

/*--------------------------------------------------------------
 News Card - Image
--------------------------------------------------------------*/
.news-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.news-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0) 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* Don't block image interactions */
}

.news-card__thumb .card-img-top {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform; /* Performance hint */
}

.news-card__item:hover .card-img-top {
  transform: scale(1.06);
}

.news-card__item:hover .news-card__thumb::after {
  opacity: 1;
}

/*--------------------------------------------------------------
 News Card - Body (Flexible Height)
--------------------------------------------------------------*/
.news-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}

.news-card .card-title {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
  /* min-height: 60px; */
  display: flex;
  align-items: flex-start;
}

.news-card .card-title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.news-card .card-title a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--primary-c);
  transition: width 0.3s ease;
}

.news-card__item:hover .card-title a {
  color: var(--primary-c);
}

.news-card__item:hover .card-title a::after {
  width: 100%;
}

.news-card .exc {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*--------------------------------------------------------------
 News Card - Footer (Sticky to Bottom)
--------------------------------------------------------------*/
.news-card .global-url {
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid rgba(34, 52, 72, 0.08);
  padding-top: 14px;
  margin-top: auto;
}

.news-card:hover .main-btn .btn-bg {
  width: 100%;
}

.news-card:hover .main-btn .btn-text {
  color: #fff;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
 News Card - Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .news-card__thumb .card-img-top {
    height: 210px;
  }
  
  .news-card .card-title {
    font-size: 19px;
    min-height: 57px;
  }
}

@media (max-width: 576px) {
  .news-card__thumb .card-img-top {
    height: 200px;
  }

  .news-card .card-body {
    padding: 18px 18px 16px;
  }

  .news-card .card-title {
    font-size: 18px;
    min-height: auto;
  }

  .news-card .exc {
    -webkit-line-clamp: 4;
  }
}

/*--------------------------------------------------------------
 Performance Optimizations
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .news-card__item,
  .news-card__item::before,
  .news-card__thumb::after,
  .card-img-top,
  .card-title a::after,
  .main-btn .btn-bg,
  .main-btn .btn-text {
    transition: none !important;
  }
}
/*--------------------------------------------------------------
 End News Card Styles
--------------------------------------------------------------*/

.singlePage .whyus-row {
  margin-top: 0;
}

.simple-faq {
  &::before,
  &::after {
    display: none;
  }
}

.singlePage {
  margin-bottom: 70px;
}

.singlePage {
  .singlePage-img {
    inline-size: min(100%, 860px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: translateZ(0);
    margin-block-end: clamp(16px, 3vw, 28px);

    img {
      display: block;
      inline-size: 100%;
      block-size: auto;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.6s ease;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06),
        transparent 30%,
        rgba(0, 0, 0, 0.1)
      );
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    &::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.42) 40%,
        transparent 75%
      );
      transform: translateX(-130%) skewX(-14deg);
      transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
      pointer-events: none;
    }

    &:hover,
    &:focus-within {
      img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.03);
      }
      &::before {
        opacity: 0.35;
      }
      &::after {
        transform: translateX(130%) skewX(-14deg);
      }
    }
  }

  .singlePage-content {
    text-align: justify;
    max-inline-size: 78ch;
    margin-inline: auto;
    font-size: clamp(16px, 1.15vw + 0.5rem, 18.5px);
    line-height: 1.85;
    color: color-mix(in srgb, var(--c-black) 92%, transparent);

    > * {
      margin-block: clamp(12px, 1.5vw, 20px);
    }
    > :first-child {
      margin-block-start: 0;
    }
    > :last-child {
      margin-block-end: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: var(--c-black);
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0.2px;
    }
    h1 {
      font-size: clamp(28px, 2.6vw + 0.5rem, 40px);
    }
    h2 {
      font-size: clamp(24px, 2.2vw + 0.4rem, 34px);
      position: relative;
    }
    h3 {
      font-size: clamp(20px, 1.6vw + 0.35rem, 28px);
    }
    h4 {
      font-size: clamp(18px, 1.2vw + 0.3rem, 22px);
    }

    p {
      color: #000;
    }

    a {
      color: var(--secondary-c);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.25s ease, text-underline-offset 0.25s ease,
        background 0.25s ease;
    }
    a:hover {
      color: var(--secondary-c-hover);
      text-underline-offset: 5px;
      background: color-mix(in srgb, var(--c-secondary) 12%, transparent);
    }

    ul,
    ol {
      padding-inline-start: 1.25em;
    }
    li {
      margin-block: 0.35em;
    }
    ul li::marker {
      color: var(--c-secondary);
    }
    ol li::marker {
      color: var(--secondary-c);
      font-weight: 700;
    }

    blockquote {
      margin: clamp(14px, 2vw, 20px) 0;
      padding: 16px 18px;
      border-inline-start: 4px solid var(--secondary-c);
      background: color-mix(
        in srgb,
        var(--c-secondary) 16%,
        var(--c-white) 84%
      );
      border-radius: 12px;
      color: color-mix(in srgb, var(--c-black) 92%, transparent);
    }

    :where(img, .wp-block-image img) {
      max-inline-size: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
    }
    figure {
      margin: clamp(10px, 2vw, 18px) 0;
      text-align: center;
    }
    figcaption {
      font-size: 0.9em;
      color: #6f6f6f;
      margin-top: 8px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      background: var(--c-white);
    }
    thead th {
      background: color-mix(
        in srgb,
        var(--secondary-c) 14%,
        var(--c-white) 86%
      );
      color: var(--c-black);
      text-align: start;
      font-weight: 800;
    }
    th,
    td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    tbody tr:hover {
      background: color-mix(
        in srgb,
        var(--c-secondary) 12%,
        var(--c-white) 88%
      );
    }

    code,
    kbd {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
        "Liberation Mono", monospace;
      background: #f4f6f7;
      padding: 0.15em 0.35em;
      border-radius: 6px;
      font-size: 0.95em;
    }
    pre {
      background: #0f172a;
      color: #e2e8f0;
      padding: 16px 18px;
      border-radius: 12px;
      overflow: auto;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    }
    pre code {
      background: transparent;
      padding: 0;
      color: inherit;
    }

    hr {
      border: 0;
      height: 2px;
      background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--c-black) 16%, transparent),
        transparent
      );
      margin-block: clamp(18px, 3vw, 28px);
      border-radius: 2px;
    }

    .wp-block-button__link,
    .button,
    .btn {
      background: var(--secondary-c);
      color: var(--c-white);
      border-radius: 999px;
      padding: 10px 18px;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s ease, box-shadow 0.25s ease,
        background 0.25s ease;
    }
    .wp-block-button__link:hover,
    .button:hover,
    .btn:hover {
      background: var(--secondary-c-hover);
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
  }

  @media (max-width: 576px) {
    .singlePage-img {
      border-radius: 14px;
    }
  
    .singlePage-content {
      padding-inline: 6px;
    }
  }

  @media (min-width: 1400px) {
    .singlePage-content {
      max-inline-size: 82ch;
    }
    
  }
}

.singlePage a:focus-visible,
.singlePage .wp-block-button__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary-c) 25%, transparent);
  border-radius: 12px;
}

.svc-archive {
  .svc-archive__title {
    font-weight: 800;
  }

  .svc-card {
    background: var(--c-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    }

    .svc-link {
      display: grid;
      color: inherit;
      text-decoration: none;
      height: 100%;
    }

    .svc-media {
      position: relative;
      aspect-ratio: 16/7;
      background: #eee;
      overflow: hidden;

      img {
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      .svc-media__ph {
        inline-size: 100%;
        block-size: 100%;
        background: #e9ecef;
      }
    }

    &:hover .svc-media img {
      transform: scale(1.06);
    }

    .svc-body {
      text-align: center;
      padding: 18px 16px 20px;

      .svc-icon {
        inline-size: 99px;
        block-size: 99px;
        padding: 19px;
        margin: -55px auto 10px;
        border-radius: 50%;
        background: var(--c-white);
        display: grid;
        place-items: center;
        transform: translateY(0) scale(1);
        transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
          box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease;

        img {
          max-block-size: 65px;
          filter: brightness(0) saturate(100%) invert(48%) sepia(9%)
            saturate(1063%) hue-rotate(128deg) brightness(91%) contrast(94%);
          transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        i {
          font-size: 28px;
          color: var(--c-white);
          transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
      }

      .svc-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--c-black);
        margin: 10px 0 16px;
      }

      .svc-excerpt {
        color: #000;
        line-height: 25px;
        font-size: 18px;
        margin: 0 0 16px;
      }

      .svc-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--secondary-c);
        font-weight: 700;
        position: relative;
        transition: color 0.3s ease;

        i {
          transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
      }
    }

    &:hover .svc-icon {
      transform: translateY(-4px) scale(1.06);
    }

    &:hover .svc-icon img,
    &:hover .svc-icon i {
      transform: translateY(-1px) scale(1.06);
    }

    &:hover .svc-cta i {
      transform: translateX(-4px);
    }
  }

  [dir="ltr"] .svc-card:hover .svc-cta i {
    transform: translateX(4px);
  }
}

.singlePage.posts-section [class*="col-"] {
  margin-bottom: 30px;
}

.header-inside {
  background: #fff !important;
}

.singlePage.simple-faq .contact-form,
.singlePage.consult .contact-form {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--primary-c);
  border-radius: 14px;
  padding: 22px 28px 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.form-note {
  font-size: 20px;
  font-weight: 500;
}

.singlePage.simple-faq .contact-form {
  background: #ffffff;
}

.singlePage.consult .contact-form {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px) brightness(1.24);
  backdrop-filter: blur(10px) brightness(1.24);
  border: 6px solid var(--primary-c);
  border-radius: 14px;
  isolation: isolate;
}

.singlePage .wpcf7-form-control-wrap {
  max-width: 100%;
}

.singlePage.simple-faq .contact-form .form-title,
.singlePage.simple-faq .contact-form > h2,
.singlePage.consult .contact-form .form-title,
.singlePage.consult .contact-form > h2 {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  color: #000;
}

.singlePage.simple-faq .contact-form .row.g-3,
.singlePage.consult .contact-form .row.g-3 {
  row-gap: 14px;
  column-gap: 18px;
}

.singlePage.simple-faq .contact-form .form-label,
.singlePage.consult .contact-form .form-label {
  display: block;
  text-align: right;
  margin-bottom: 8px;
  font-weight: 800;
  color: #000;
}

.singlePage.simple-faq .contact-form .contact-input.form-control,
.singlePage.consult .contact-form .contact-input.form-control {
  display: block;
  width: 100%;
  height: 44px;
  background: #f3f0ec;
  border: 2px solid #8ba4a2;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}
.singlePage.simple-faq .contact-form textarea.contact-input,
.singlePage.consult .contact-form textarea.contact-input {
  min-height: 90px;
  height: auto;
  resize: vertical;
}

.singlePage.simple-faq .contact-form .contact-input:focus,
.singlePage.consult .contact-form .contact-input:focus {
  border-color: var(--primary-c);
  background: #f7f4f0;
  box-shadow: 0 0 0 3px rgba(82, 122, 120, 0.15);
}

.singlePage.simple-faq .contact-form .cf7-btn-wrap,
.singlePage.consult .contact-form .cf7-btn-wrap {
  text-align: center;
  margin-top: 6px;
}
.singlePage.simple-faq .contact-form .main-btn,
.singlePage.consult .contact-form .main-btn {
  width: 185px;
}

.singlePage.simple-faq .wpcf7 form .wpcf7-response-output,
.singlePage.consult .wpcf7 form .wpcf7-response-output {
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  border: 2px solid #ceb9a3;
  background: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #bb2124;
    background: #bb2124;
}
.singlePage.simple-faq .wpcf7-not-valid,
.singlePage.consult .wpcf7-not-valid {
  border-color: #c24 !important;
  background: #fff4f4 !important;
}
.singlePage.simple-faq .wpcf7 .wpcf7-not-valid-tip,
.singlePage.consult .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .singlePage.simple-faq .contact-form,
  .singlePage.consult .contact-form {
    padding: 18px 16px 22px;
    border-width: 3px;
    border-radius: 12px;
  }
  .singlePage.simple-faq .contact-form .main-btn,
  .singlePage.consult .contact-form .main-btn {
    width: 100%;
  }
}

.singlePage.simple-faq .contact-form .form-title,
.singlePage.consult .contact-form .form-title {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  color: #000;
}

.hero-title {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  margin: 0 0 80px;
  padding: 18px 20px;

  color: #fff;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.25;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  background-image: var(--hero-title-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

.hero-title > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .hero-title {
    padding: 14px 16px;
  }
}

@media (pointer: coarse) {
  .hero-title {
    background-attachment: scroll;
  }
}

.page-id-2764 .wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--consult-bg) center/cover no-repeat;
}

.page-id-2764 .wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

/*----------------------------------------------------
 Global Responsive
----------------------------------------------------*/
@media (max-width: 1399.96px) {
  .contact-card {
    left: 35% !important;
  }

  .header-logo img {
    max-block-size: calc(clamp(64px, 6vw, 92px) + 21px) !important;
  }

  .main-btn span {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .nav-list {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .site-sidebar,
  .sidebar-overlay {
    display: none !important;
  }

  .nav-list > li.menu-item {
    position: relative;
  }

  .nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 12px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.25s ease;
  }
  
  .nav-list > li.active > a {
      color: var(--primary-c) !important;
  }

  .header-home .nav-list > li > a  {
    color: var(--secondary-c);
  }

  .header-inside .nav-list > li > a {
    color: #000;
  }

  .nav-list > li > a:hover,
  .nav-list > li > a:focus {
    color: var(--primary-c);
  }

  .nav-list > .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-inline-start: 6px;
    color: var(--c-black);
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .nav-list > .menu-item-has-children:hover > a::after,
  .nav-list > .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
    color: var(--secondary-c);
  }

  .nav-list > .menu-item-has-children.active > a::after,
  .nav-list > .menu-item-has-children.current-menu-item > a::after,
  .nav-list > .menu-item-has-children.current_page_item > a::after,
  .nav-list > .menu-item-has-children.current-menu-ancestor > a::after,
  .nav-list > .menu-item-has-children.current_page_ancestor > a::after,
  .nav-list > .menu-item-has-children.current-menu-parent > a::after {
    color: var(--secondary-c);
  }

  .nav-list > li > .sub-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    z-index: 50;
    transform-origin: 0 0 0;
    min-width: 260px;
    padding: 10px;
    list-style: none;
    background: radial-gradient(
        600px 300px at 110% -10%,
        color-mix(in srgb, var(--secondary-c) 10%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--c-white) 96%, transparent),
        color-mix(in srgb, var(--c-white) 88%, transparent)
      );
    border: 1px solid color-mix(in srgb, var(--c-black) 8%, transparent);
    border-radius: 16px;
    box-shadow: 0 18px 44px color-mix(in srgb, var(--c-black) 14%, transparent);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    will-change: opacity, transform;
  }

  .nav-list > li.menu-item-has-children:hover > .sub-menu,
  .nav-list > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-list .sub-menu > li {
    position: relative;
  }

  .nav-list .sub-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: color-mix(in srgb, var(--c-black) 85%, var(--c-white) 15%);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .nav-list .sub-menu > li > a:hover,
  .nav-list .sub-menu > li > a:focus {
    background: color-mix(in srgb, var(--c-secondary) 24%, var(--c-white) 76%);
    color: var(--c-black);
    transform: translateY(-1px);
  }

  .nav-list .sub-menu > li:not(:last-child) > a {
    margin-bottom: 6px;
  }

  .nav-list .sub-menu > li.menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--c-black);
    transition: transform 0.2s ease, color 0.2s ease;
    margin-inline-start: 10px;
    line-height: 1;
  }

  html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a::after {
    content: "\f054";
  }

  html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a::after {
    content: "\f053";
  }

  .nav-list .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    inset-inline-start: 100%;
    min-width: 240px;
    padding: 10px;
    background: var(--c-white);
    border: 1px solid color-mix(in srgb, var(--c-black) 8%, transparent);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--c-black) 12%, transparent);
    transform-origin: top start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  .nav-list .sub-menu > li.menu-item-has-children:hover > .sub-menu,
  .nav-list .sub-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .btn-nav,
  .mobile-nav-list,
  .dd-trigger {
    display: none !important;
  }
}

/* Max-width: 992px */
@media (max-width: 992px) {
  .main-caption .headline-title {
    position: relative;
    font-size: clamp(45px, 5vw, 44px);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .sidebar-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        1200px 600px at 20% -10%,
        rgba(82, 122, 120, 0.18),
        transparent 60%
      ),
      radial-gradient(
        900px 520px at 120% 110%,
        rgba(206, 185, 163, 0.16),
        transparent 65%
      );
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .sidebar-overlay.is-open::before {
    opacity: 0.12;
  }

  @supports (backdrop-filter: blur(6px)) {
    .sidebar-overlay {
      backdrop-filter: blur(3px) saturate(110%);
    }

    .sidebar-overlay.is-open {
      backdrop-filter: blur(6px) saturate(120%);
    }
  }

  .site-sidebar {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    inline-size: min(100vw, 400px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: radial-gradient(
        900px 420px at 120% -10%,
        rgba(82, 122, 120, 0.16),
        transparent 50%
      ),
      radial-gradient(
        700px 360px at -10% 110%,
        rgba(206, 185, 163, 0.18),
        transparent 55%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.86)
      );
    border-inline-start: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 20px 0 70px rgba(0, 0, 0, 0.16);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  html[dir='rtl'] .site-sidebar {
      transform: translateX(100%);
  }
  
   html[dir='ltr'] .site-sidebar {
      transform: translateX(-100%);
  }

  html[dir='rtl'] .site-sidebar.is-open,
  html[dir='ltr'] .site-sidebar.is-open  {
    transform: translateX(0);
  }

  .site-sidebar .sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-sidebar .sidebar-head .sidebar-logo img {
    max-height: 40px;
    display: block;
    width: 100%;
  }

  .site-sidebar .sidebar-head .logo-text {
    font-weight: 800;
    color: var(--primary-c);
  }

  .site-sidebar .sidebar-head .sidebar-close {
    inline-size: 46px;
    block-size: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
  }

  .site-sidebar .sidebar-nav {
    padding: 12px;
    overflow: auto;
    scrollbar-width: thin;
  }

  .site-sidebar .sidebar-nav .sidebar-menu {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.1;
    min-block-size: 56px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li > a:hover {
    background: rgba(82, 122, 120, 0.08);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.active > a,
  .site-sidebar .sidebar-nav .sidebar-menu > li > a.active {
    background: var(--primary-c);
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.has-dropdown > a {
    padding-inline-end: 62px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .dd-trigger {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #000;
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    inline-size: 38px;
    block-size: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .dd-trigger::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.is-open > a .dd-trigger {
    background: rgba(206, 185, 163, 0.24);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.is-open > a .dd-trigger::before {
    transform: rotate(-180deg);
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu {
    display: none;
    padding: 8px 10px 14px;
    margin: 0 14px 14px;
    border-inline-start: 2px solid #ceb9a3;
    background: rgba(206, 185, 163, 0.16);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li {
    border: 0;
    background: transparent;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.active span {
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li a {
    position: relative;
    display: block;
    font-weight: 500;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li a:hover {
    background: rgba(206, 185, 163, 0.26);
    color: #000;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.has-dropdown > a {
    padding-inline-end: 62px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.is-open > a .dd-trigger {
    background: rgba(206, 185, 163, 0.24);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.is-open > a .dd-trigger::before {
    transform: rotate(-180deg);
  }

  .site-sidebar .sidebar-cta {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
  }

  .site-sidebar .sidebar-cta .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--primary-c);
    border: 1px solid var(--primary-c);
    font-weight: 400;
    transition: background 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
      color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-cta .ghost-btn:hover {
    background: var(--primary-c);
    color: #fff;
    transform: translateY(-1px);
  }

  .hamburger {
    inline-size: 50px;
    block-size: 46px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .hamburger span {
    display: block;
    inline-size: 24px;
    block-size: 2px;
    background: var(--primary-c);
    border-radius: 2px;
  }

  .header-inside .hamburger span {
    background: var(--secondary-c) ;
  }

  header .main-menu .nav-list > li > a {
    padding-inline: 5px;
    font-size: 15px;
  }

  .service-card__overlay {
    padding: 20px;
  }
}

@media (max-width: 991.96px) {
  .services  .service-card {
    padding: 20px;
  }

  .sec-tit {
  margin-bottom: 55px;
  }

  .contact-block {
    padding: 0 0 50px;
  }

  .home-stats {
    padding: 71px 0 50px;
  }

  .wpcf7 .wpcf7-form-control-wrap {
    max-width: 100%;
  }

  .contact-block .hold_contact .contact-form textarea.contact-input {
    max-width: 100%;
  }

  .section-banner__image-wrap {
    display: flex;
    justify-content: center;
  }

  .section-banner__content {
    text-align: center;
  }

  .contact-row {
    flex-direction: column-reverse;
  }

  .contact-photo {
    object-fit: none;
  }

  .footer .footer-badge img {
    height: 145px;
  }

  .main-caption {
    transform: translateY(-35%);
  }
}
@media (min-width: 1200px) {
  #main-header .main-menu,
  #fixed-header .main-menu {
    justify-self: center;
    text-align: center;
  }

  #main-header .header-actions,
  #fixed-header .header-actions {
    justify-self: end;
  }
}

@media (max-width: 991.96px){
  footer .hold-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-badge {
    display: flex;
    justify-content: center;
  }
}

/* Max-width: 768px */
@media (max-width: 768px) {
  .main-caption .headline-title {
    font-weight: 700;
    margin-bottom: 27px;
  }

  .main-caption {
    transform: translateY(0);
  }

  .greatest-background {
    min-height: 350px;
  }

  .about .about-tabs .row {
    gap: 0;
  }

  .sec-tit {
    font-size: 39px;
  }

  #main-header.header-on-video {
    position: relative !important;
  }
}

/* Max-width: 576px */
@media (max-width: 576px) {
  .stats .stats-wrap .stat-box {
    min-width: 160px;
  }
.cf7-col {
        min-width: 100%;
    }
  .site-sidebar {
    position: fixed;
    inline-size: min(90vw, 400px);
  }

  .contact-form {
    margin-top: 40px;
  }

  .simple-faq .faq-q {
    font-size: 16px;
  }

  .txt {
    width: calc(100% - 28px);
  }


  .headline-title {
    line-height: 35px;
  }

  .whyus,
  .partners {
    margin-top: 40px;
  }

  .posts-section .post-card .post-body .post-title {
    font-size: 15px;
    line-height: 23px;
  }

  .posts-section .post-card .post-body .post-meta time {
    font-size: 15px;
  }

  .posts-section .post-card .post-body .post-cta {
    width: 36px;
    height: 36px;
  }

  .posts-section .post-card .post-body .post-cta i {
    font-size: 20px;
    line-height: 36px;
  }

  .hold_contact_photo {
    max-height: 390px !important;
  }

  .contact-photo {
    width: 100%;
    max-height: 387px;
    object-fit: cover;
    display: block;
    object-fit: cover;
  }
}

/* Max-width: 380px */
@media (max-width: 380px) {
  .main-btn span {
    font-size: 14px;
  }

  .gap-4 {
    gap: 0.9rem !important;
  }

  .posts-section .post-card .post-body .post-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
  }
}

/* Max-width: 1500px */
@media (max-width: 1500px) {
  .main-caption .headline-title {
    line-height: 1.5;
  }
}

/* Media Queries: hover support */
@media (hover: hover) {
  .sidebar-menu > li:hover .dd-trigger {
    transform: translateY(-50%) scale(1.04);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .sidebar-overlay,
  .site-sidebar,
  .dd-trigger::before {
    transition: none !important;
  }
}

/*----------------------------------------------------
Search
----------------------------------------------------*/

/*--------------------------------------------------------------
 Custom Search - Overlay Shell
--------------------------------------------------------------*/
.custom-search-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-c) 0%, #1a2838 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.custom-search-form::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

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

.custom-search-form.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*--------------------------------------------------------------
 Custom Search - Close Button
--------------------------------------------------------------*/
.search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(237, 239, 202, 0.1);
  border: 2px solid #edefca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

.custom-search-form.active .search-overlay-close {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition-delay: 0.3s;
}

.search-overlay-close i {
  color: #edefca;
  font-size: 24px;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  background: #edefca;
  transform: rotate(90deg) scale(1.1);
}

.search-overlay-close:hover i {
  color: var(--primary-c);
}

/*--------------------------------------------------------------
 Custom Search - Wrapper & Title
--------------------------------------------------------------*/
.search-wrapper {
  max-width: 800px;
  width: 90%;
  position: relative;
  z-index: 2;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-search-form.active .search-wrapper {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.search-overlay-title {
  color: #edefca;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-search-form.active .search-overlay-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/*--------------------------------------------------------------
 Custom Search - Input Container
--------------------------------------------------------------*/
.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #edefca;
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.custom-search-form.active .search-input-container {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.5s;
}

.search-input-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-c),
    #edefca,
    var(--primary-c)
  );
  border-radius: 60px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.search-input-container:focus-within::before {
  opacity: 1;
  animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.search-input-container:focus-within {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
 Custom Search - Input + Buttons
--------------------------------------------------------------*/
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 22px 30px;
  font-size: 20px;
  color: var(--primary-c);
  outline: none;
  font-family: inherit;
  font-weight: 500;
}

.search-input::placeholder {
  color: rgba(34, 52, 72, 0.5);
  transition: color 0.3s ease;
}

.search-input:focus::placeholder {
  color: rgba(34, 52, 72, 0.3);
}

.search-submit-btn {
  background: var(--primary-c);
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  font-weight: 600;
  color: #edefca;
  position: relative;
  overflow: hidden;
}

.search-submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(237, 239, 202, 0.3);
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.search-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.search-submit-btn i,
.search-submit-btn span {
  position: relative;
  z-index: 1;
}

.search-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(34, 52, 72, 0.4);
}

.search-submit-btn:active {
  transform: scale(0.98);
}

.search-clear-btn {
  background: transparent;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s ease;
  color: var(--primary-c);
}

.search-clear-btn:hover {
  background: rgba(34, 52, 72, 0.1);
  transform: rotate(90deg);
}

.search-input:not(:placeholder-shown) ~ .search-clear-btn {
  display: flex;
}

/*--------------------------------------------------------------
 Custom Search - Suggestions Wrapper
--------------------------------------------------------------*/
.search-suggestions {
  margin-top: 20px;
  background: #edefca;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.search-suggestions.active {
  max-height: 380px;
  opacity: 1;
  padding: 10px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Scrollbar */
.search-suggestions.active::-webkit-scrollbar {
  width: 8px;
}

.search-suggestions.active::-webkit-scrollbar-track {
  background: rgba(34, 52, 72, 0.05);
  border-radius: 10px;
}

.search-suggestions.active::-webkit-scrollbar-thumb {
  background: rgba(34, 52, 72, 0.4);
  border-radius: 10px;
}

.search-suggestions.active::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 52, 72, 0.7);
}

/*--------------------------------------------------------------
 Custom Search - Suggestions Header & Footer
--------------------------------------------------------------*/
.suggestions-header {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 10px 22px 8px;
  background: #edefca;
  border-bottom: 1px solid rgba(34, 52, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.results-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 52, 72, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-c);
}

.results-count-badge i {
  font-size: 13px;
}

.suggestions-footer {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 10px 20px 8px;
  background: #edefca;
  border-top: 1px solid rgba(34, 52, 72, 0.08);
}

.view-all-results {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--primary-c);
  color: #edefca;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.view-all-results i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.view-all-results:hover {
  background: #2a4059;
  box-shadow: 0 4px 12px rgba(34, 52, 72, 0.4);
  transform: translateY(-1px);
}

.view-all-results:hover i {
  transform: translateX(-3px);
}

/*--------------------------------------------------------------
 Custom Search - Suggestion Items
--------------------------------------------------------------*/
.suggestions-group {
  padding: 8px 0;
}

.suggestions-group:not(:last-of-type) {
  border-bottom: 2px solid rgba(34, 52, 72, 0.08);
}

.group-label {
  padding: 8px 20px;
  background: rgba(34, 52, 72, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-c);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.group-label i {
  font-size: 14px;
  opacity: 0.7;
}

.suggestions-group:first-child .group-label {
  padding-top: 2px;
}

.suggestion-item {
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(34, 52, 72, 0.06);
  color: var(--primary-c);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  animation: slideInLeft 0.25s ease both;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: rgba(34, 52, 72, 0.06);
  padding-inline-start: 26px;
}

.suggestion-item.selected {
  background: rgba(34, 52, 72, 0.12);
}

.suggestion-thumb,
.suggestion-thumb-placeholder {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 52, 72, 0.08);
}

.suggestion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-thumb-placeholder i {
  color: var(--primary-c);
  opacity: 0.6;
  font-size: 18px;
}

.suggestion-content {
  flex: 1;
}

.suggestion-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-c);
}

.suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 4px;
}

.suggestion-date,
.suggestion-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 52, 72, 0.05);
  color: rgba(34, 52, 72, 0.9);
}

.suggestion-meta i {
  font-size: 11px;
  opacity: 0.7;
}

.suggestion-excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-top: 2px;
}

.suggestion-arrow {
  margin-inline-start: 6px;
  font-size: 14px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.suggestion-item:hover .suggestion-arrow,
.suggestion-item.selected .suggestion-arrow {
  transform: translateX(-3px);
  opacity: 0.9;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
 Custom Search - Loading / Error / No Results
--------------------------------------------------------------*/
.loading-item,
.error-item,
.no-results-item {
  border-bottom: none;
}

.loading-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.error-item {
  color: #a62828;
  font-size: 14px;
}

.no-results-item {
  align-items: center;
}

.no-results-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(34, 52, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 6px;
}

.no-results-icon-small i {
  color: var(--primary-c);
  opacity: 0.7;
}

.no-results-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--primary-c);
}

.no-results-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.search-loading {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(34, 52, 72, 0.18);
  border-radius: 50%;
  border-top-color: var(--primary-c);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
 Custom Search - Popular Searches
--------------------------------------------------------------*/
.popular-searches {
  margin-top: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.custom-search-form.active .popular-searches {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.popular-label {
  color: #edefca;
  font-size: 16px;
  opacity: 0.8;
  margin-left: 15px;
}

.popular-tag {
  display: inline-block;
  background: rgba(237, 239, 202, 0.15);
  color: #edefca;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 5px;
  text-decoration: none;
  border: 1px solid rgba(237, 239, 202, 0.3);
  transition: all 0.3s ease;
  font-size: 14px;
}

.popular-tag:hover {
  background: #edefca;
  color: var(--primary-c);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(237, 239, 202, 0.3);
}

/*--------------------------------------------------------------
 Custom Search - Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .search-overlay-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .search-input {
    font-size: 16px;
    padding: 18px 20px;
  }

  .search-submit-btn {
    padding: 15px 25px;
    font-size: 16px;
  }

  .search-submit-btn span {
    display: none;
  }

  .search-overlay-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .search-suggestions.active {
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .search-overlay-title {
    font-size: 24px;
  }

  .search-input {
    font-size: 14px;
    padding: 15px;
  }

  .search-submit-btn {
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
 Search Results Page
--------------------------------------------------------------*/
.search-results-page {
  background: #f5f5f5;
  min-height: 100vh;
  padding: 40px 0 70px;
}

/*--------------------------------------------------------------
 Search Results Header
--------------------------------------------------------------*/
.search-results-header {
  background: linear-gradient(135deg, var(--primary-c) 0%, #2a4059 100%);
  padding: 60px 0;
  margin-bottom: 50px;
  box-shadow: 0 10px 40px rgba(34, 52, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.search-results-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.14) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.search-title {
  color: #edefca;
  font-size: 38px;
  margin: 0 0 20px 0;
  font-weight: 700;
  animation: fadeInDown 0.6s ease;
}

.search-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
  animation: fadeIn 0.8s ease;
}

.search-meta span {
  color: #edefca;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  background: rgba(237, 239, 202, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(237, 239, 202, 0.25);
}

.search-meta i {
  font-size: 16px;
}

.search-query {
  background: rgba(237, 239, 202, 0.2);
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid rgba(237, 239, 202, 0.35);
}

/*--------------------------------------------------------------
 Search Results - Inline Search Form
--------------------------------------------------------------*/
.search-again .custom-search-form {
  position: static;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
  height: auto;
}

.search-again .search-wrapper {
  max-width: 680px;
  margin: 0;
  opacity: 1;
  transform: none;
}

.search-again .search-input-container {
  opacity: 1;
  transform: none;
}

.search-again .search-overlay-close,
.search-again .search-overlay-title,
.search-again .popular-searches {
  display: none;
}

/*--------------------------------------------------------------
 Search Results List
--------------------------------------------------------------*/
.search-results-body .container {
  max-width: 1200px;
}

.search-results-list {
  display: grid;
  gap: 30px;
}

/*--------------------------------------------------------------
 Search Result Card
--------------------------------------------------------------*/
.search-result-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(34, 52, 72, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUpFade 0.6s ease both;
  position: relative;
}

.search-result-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.search-result-item:hover::before {
  transform: scaleY(1);
}

.search-result-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 35px rgba(34, 52, 72, 0.16);
}

.result-content {
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* thumbnail */
.result-thumbnail {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #f3f3f3;
}

.result-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.result-thumbnail:hover img {
  transform: scale(1.12);
}

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 52, 72, 0.8),
    rgba(34, 52, 72, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.result-thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.thumbnail-overlay i {
  color: #edefca;
  font-size: 30px;
  transform: translateX(-10px);
  transition: transform 0.35s ease;
}

.result-thumbnail:hover .thumbnail-overlay i {
  transform: translateX(0);
}

/* content */
.result-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.result-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.result-meta-top span {
  color: var(--primary-c);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
  background: rgba(34, 52, 72, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
}

.result-meta-top i {
  font-size: 11px;
  opacity: 0.7;
}

.result-title {
  margin: 0 0 15px 0;
  font-size: 26px;
  line-height: 1.4;
  color: var(--primary-c);
}

.result-title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.result-title a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-c);
  transition: width 0.3s ease;
}

.result-title a:hover::after {
  width: 100%;
}

.result-excerpt {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  flex-grow: 1;
}

.highlight-term {
  background: #cdd266;
  color: var(--primary-c);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* footer */
.result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(34, 52, 72, 0.1);
  margin-top: auto;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-c);
  font-size: 14px;
}

.result-author img {
  border-radius: 50%;
  border: 2px solid #edefca;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-c);
  color: #edefca;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  background: #2a4059;
  transform: translateX(-4px);
  box-shadow: 0 5px 15px rgba(34, 52, 72, 0.3);
}

.read-more-btn:hover i {
  transform: translateX(-4px);
}

/*--------------------------------------------------------------
 Search Pagination
--------------------------------------------------------------*/
.search-pagination {
  margin-top: 55px;
  text-align: center;
}

.search-pagination ul {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.search-pagination a,
.search-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--primary-c);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(34, 52, 72, 0.08);
  padding: 0 14px;
  gap: 6px;
  font-size: 14px;
}

.search-pagination a:hover {
  background: var(--primary-c);
  color: #edefca;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 52, 72, 0.18);
}

.search-pagination .current {
  background: var(--primary-c);
  color: #edefca;
}

/*--------------------------------------------------------------
 Search - No Results
--------------------------------------------------------------*/
.no-results {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(34, 52, 72, 0.12);
  animation: fadeIn 0.6s ease;
}

.no-results-icon {
  margin-bottom: 35px;
}

.no-results-icon i {
  font-size: 90px;
  color: var(--primary-c);
  opacity: 0.18;
  animation: float 3s ease-in-out infinite;
}

.no-results h2 {
  color: var(--primary-c);
  font-size: 30px;
  margin: 0 0 15px 0;
}

.no-results p {
  color: #666;
  font-size: 17px;
  margin-bottom: 35px;
}

/*--------------------------------------------------------------
 Search Results Animations
--------------------------------------------------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/*--------------------------------------------------------------
 Search Results Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .result-content {
    flex-direction: column;
    padding: 22px;
    gap: 20px;
  }

  .result-thumbnail {
    width: 100%;
    height: 220px;
  }

  .result-title {
    font-size: 22px;
  }

  .search-results-header {
    padding: 45px 0;
  }

  .search-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .search-results-page {
    padding-top: 25px;
  }
  
      .breadcrumb-area {
    padding: 25px 0 35px;
      }
      .breadcrumb-links {
          margin-top: 20px;
      }

  .search-results-header {
    padding: 35px 0 30px;
    margin-bottom: 35px;
  }

  .search-title {
    font-size: 24px;
  }

  .search-meta span {
    font-size: 13px;
    width: 100%;
  }

  .result-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .read-more-btn {
    width: 100%;
    justify-content: center;
  }
}

.hidden-fields-container { display: none; }
.wpcf7-response-output:empty { display: none; }

.wpcf7 .screen-reader-response {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}


#bodyWrap > footer > div.in_footer > div > div > div.col-lg-3.col-md-6.footer-col.footer-col-contact > div > p:nth-child(2) > a {
        direction: ltr;
}

/*----------------------------------------------------
End of CSS
----------------------------------------------------*/
