/* ===== Base ===== */
:root{
  --ft-blue: #1076b4;
  --ft-teal: #40aba7;
  --ft-white: #fff;
  --ft-glass: rgba(255,255,255,.25);
}

body.no-scroll{ overflow:hidden; }
.container{
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
body {
    transition: opacity ease-in 0.2s;
    margin: 0;
}

/* ===== Header wrapper ===== */
.ft-header{
  position: relative;
  width: 100%;
  height: 176px; /* Desktop height */
  color: #fff;
  font-family: "Cairo", system-ui, sans-serif;
}
.ft-header__bg{
  position:absolute;
  inset:0;
  background: var(--ft-glass);
}

/* inner layout */
.ft-header__inner{
  position: relative;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
}

/* ===== Logo ===== */
.ft-logo .custom-logo{
  max-height: 115px;
  width: auto;
  height: auto;
}
.ft-logo__text{
  font-weight: 700;
  font-size: 22px;
}

/* ===== Desktop menu ===== */
.ft-nav{ flex: 1; display:flex; justify-content:center; }
.ft-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 24px;
  padding:0;
  margin:0;
}
.ft-menu > li > a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:20px;
  line-height:20px;
  padding: 8px 2px;
  display:inline-flex;
  align-items:center;
}
.ft-menu > li > a:hover{ opacity:.9; }

/* Dropdown (خدمات) */
.ft-menu li{ position:relative; }
.ft-menu .sub-menu{
  list-style:none;
  position:absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 188px;
  padding: 8px 12px;
  margin: 0;
  background: rgba(0,0,0,.25);
  border-radius: 20px 0 20px 20px;
  display:none;
  flex-direction:column;
  gap: 8px;
  z-index: 50;
}
.ft-menu li.menu-item-has-children:hover > .sub-menu{
  display:flex;
}
.ft-menu .sub-menu li a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:20px;
  line-height:24px;
  display:flex;
  justify-content:flex-end;
  padding:10px;
  border-bottom: .3px solid rgba(255,255,255,.9);
}
.ft-menu .sub-menu li:last-child a{ border-bottom: 0; }

/* ===== CTA Button ===== */
.ft-btn{
  height:36px;
  min-width:138px;
  padding:12px 18px;
  border-radius:10px;
  background: linear-gradient(-90deg, var(--ft-teal), var(--ft-blue));
  color:#fff;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.ft-btn--outline{
  background:#fff;
  border: 1px solid var(--ft-blue);
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip:text;
  background-image: linear-gradient(90deg, var(--ft-blue), var(--ft-teal));
}

/* ===== Mobile ===== */
.desktop-only{ display:flex; }
.ft-burger{ display:none; }

.ft-overlay{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition: .25s;
  z-index: 9998;
}
.ft-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.ft-mobile{
  position: fixed;
  top:0;
  right:0;
  width: 245px;
  height: 100vh;
  background: rgba(16,118,180,.9);
  transform: translateX(110%);
  transition: .25s;
  z-index: 9999;
  display:flex;
  flex-direction:column;
}
.ft-mobile.is-open{ transform: translateX(0); }

.ft-mobile__head{
  border-bottom: .3px solid rgba(255,255,255,.9);
  padding: 10px;
  display:flex;
  justify-content:flex-start;
}
.ft-mobile__close{
  background: transparent;
  border:0;
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

.ft-mobile__nav{
  padding: 16px 10px 10px;
  flex:1;
  overflow:auto;
}

.ft-mobile-menu{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  text-align:right;
}
.ft-mobile-menu > li > a{
  display:flex;
  justify-content:flex-end;
  padding: 0 6px;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  line-height:36px;
  border-bottom: .3px solid rgba(255,255,255,.9);
}

/* Submenu داخل الموبايل */
.ft-mobile-menu .sub-menu{
  list-style:none;
  margin: 6px 0 0;
  padding: 0;
}
.ft-mobile-menu .sub-menu a{
  display:flex;
  justify-content:flex-end;
  padding: 0 6px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:34px;
  opacity:.95;
  border-bottom: .3px solid rgba(255,255,255,.5);
}

/* CTA in mobile */
.ft-mobile__cta{
  padding: 12px 10px 18px;
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .ft-header{ height: 88px;}}



/* ================================
   MOBILE HEADER + SIDE MENU (Figma)
   ================================ */
@media (max-width: 991px){

  /* Header */
  .ft-header{
    height: 88px !important;
  }
  .ft-header__bg{
    height: 88px !important;
  }
  .ft-header__inner{
    height: 88px !important;
    position: relative;
  }

  /* Burger icon: 40x40 @ left 24 / top 15 */
  .ft-burger{
    display: inline-flex !important;
    position: absolute !important;
    left: 24px !important;
    top: 15px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    gap: 7px !important;
    z-index: 10011 !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ft-burger span{
    width: 22px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #1076b4 !important; /* زي اللي ظاهر عندك */
    display: block;
  }

  /* Logo size like figma */
  .ft-logo{
    margin-right: auto;
  }
  .ft-logo .custom-logo{
    max-height: 52px !important;
    width: auto;
  }

  /* Hide desktop items */
  .desktop-only{ display:none !important; }

  /* Overlay */
  .ft-overlay{
    z-index: 10010 !important;
  }
  .ft-mobile{
    z-index: 10011 !important;
  }

  /* Side panel: 245px, full height */
  .ft-mobile{
    width: 245px !important;
    height: 100vh !important;
    background: rgba(16,118,180,0.9) !important;
    transform: translateX(110%);
    transition: .25s ease;
    right: 0;
    top: 0;
  }
  .ft-mobile.is-open{ transform: translateX(0); }

  /* Head (X) */
  .ft-mobile__head{
    padding: 0 !important;
    border-bottom: 0 !important;
  }
  .ft-mobile__close{
    width: 227px;
    margin: 0 0 0 10px;
    padding: 10px !important;
    display:flex;
    justify-content:flex-end;
    border-bottom: .3px solid #fff;
    font-size: 22px;
    line-height: 36px;
    color: #fff;
  }

  /* Menu list spacing */
  .ft-mobile__nav{
    padding: 0 !important;
  }
  .ft-mobile-menu{
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
  }
  .ft-mobile-menu > li{
    margin: 0 0 10px 0;
  }

  /* Item style like figma (border bottom, right aligned) */
  .ft-mobile-menu > li > a{
    width: 223px;
    margin-left: 10px;
    padding: 0 6px !important;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size: 16px;
    line-height: 36px;
    border-bottom: .3px solid rgba(255,255,255,1);
  }

  /* Submenu inside mobile */
  .ft-mobile-menu .sub-menu{
    margin: 6px 0 0;
    padding: 0;
  }
  .ft-mobile-menu .sub-menu a{
    width: 223px;
    margin-left: 10px;
    padding: 0 6px !important;
    display:flex;
    justify-content:flex-end;
    color:#fff;
    text-decoration:none;
    font-size: 14px;
    line-height: 34px;
    border-bottom: .3px solid rgba(255,255,255,.6);
    opacity: .95;
  }

  /* CTA button (white outline, gradient text) */
  .ft-mobile__cta{
    padding: 12px 10px 18px !important;
  }
  .ft-btn.ft-btn--outline{
    height: 40px !important;
    width: 138px !important;
    border-radius: 10px !important;
    background: #fff !important;
    border: 1px solid #1076b4 !important;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right: auto;
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background-image: linear-gradient(90deg, #1076b4, #40aba7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
}


@media (max-width: 991px){

  /* تأكيد RTL للهيدر */
  .ft-header{ direction: rtl !important; }

  /* اللوجو يمين */
  .ft-logo{
    position: absolute !important;
    right: 24px !important;
    top: 12px !important;
    margin: 0 !important;
    z-index: 10002 !important;
  }

  /* تكبير اللوجو */
  .ft-logo .custom-logo{
    max-height: 60px !important; /* كبّري/صغّري حسب مزاجك */
    width: auto !important;
  }
  
  
  
  

  /* لو اللوجو عنده margin من ووردبريس */
  .ft-logo .custom-logo-link{
    display: inline-flex;
    align-items: center;
  }
}


@media (max-width: 991px){
  .ft-burger{
    left: 24px !important;
    top: 15px !important;
  }
}


/* =========================
   HERO (Global)
   ========================= */
.ft-hero{
  position: relative;
  width: 100%;
  height: 400px; /* Desktop */
  overflow: hidden;
}
.ft-hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity: .8; /* زي تصميمك */
}
.ft-hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(30,30,30,.35); /* Desktop overlay */
}

/* Text */
.ft-hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align: right;
  color:#fff;
}
.ft-hero__title{
  margin:0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.ft-hero__sub{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}

/* Social vertical */
.ft-hero-social{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.ft-hero-social__item{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ft-hero-social__item img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

/* Mobile */
@media (max-width: 991px){
  .ft-hero{
    height: 250px; /* فون */
  }
  .ft-hero__overlay{
    background: rgba(30,30,30,.25); /* فون overlay */
  }
  .ft-hero__title{ font-size: 22px; }
  .ft-hero__sub{ font-size: 14px; max-width: 92%; }

  /* لو عايزة السوشيال تختفي في الموبايل (اختياري) */
  /* .ft-hero-social{ display:none; } */
}



/* ===== Header overlays Hero ===== */
.ft-header{
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.25); /* نفس شفافيتك */
}

/* لو عندك header inner fixed height */
@media (min-width: 992px){
  .ft-header{ height: 176px; }
}

@media (max-width: 991px){
  .ft-header{ height: 88px; }
}


/* ===== Announcement Marquee ===== */
/* ===== Infinite Marquee (no gaps) ===== */
.ft-marquee{
  width:100%;
  height:71px;
  overflow:hidden;
  background: linear-gradient(90deg, #1076b4, #009299);
  color:#fff;
  font-family: "Cairo", sans-serif;
  display:flex;
  align-items:center;
  direction: rtl;
}

.ft-marquee__inner{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* نخلي الاتنين فوق بعض */
.ft-marquee__track{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  display:inline-flex;
  align-items:center;
  white-space: nowrap;
  gap: 26px;
  padding-inline: 24px;
  will-change: transform;
}

/* Track A يبدأ من مكانه */
.ft-marquee__track:nth-child(1){
  animation: ftMarqueeA 18s linear infinite;
}
/* Track B يبدأ من يمين الشاشة ويدخل فورًا */
.ft-marquee__track:nth-child(2){
  animation: ftMarqueeB 18s linear infinite;
}

.ft-marquee__item{
  font-size:24px;
  font-weight:600;
  line-height:36px;
  display:inline-flex;
  align-items:center;
}
.ft-marquee__sep{
  font-size:22px;
  opacity:.9;
  line-height:1;
}

/* A: يطلع للشمال */
@keyframes ftMarqueeA{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* B: يبدأ من يمين الشاشة ويمشي لنفس نهاية A */
@keyframes ftMarqueeB{
  0%   { transform: translateX(100%); }
  100% { transform: translateX(0); }
}

/* موبايل */
@media (max-width: 991px){
  .ft-marquee{ height:48px; }
  .ft-marquee__item{ font-size:16px; line-height:24px; }
  .ft-marquee__sep{ font-size:16px; }
  .ft-marquee__track{ gap: 18px; }
  .ft-marquee__track:nth-child(1),
  .ft-marquee__track:nth-child(2){
    animation-duration: 12s;
  }
}

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .ft-marquee__track{ animation: none; position:relative; }
}




/* ===== Blog Index (Magazine) ===== */
.ft-blog-index{ padding: 24px 0 60px; }

.ft-blog-hero-title{
  width:84%;
  display:flex;
  justify-content:center;
  margin: 0 150px 34px;
}
.ft-blog-hero-title__inner{
  width: min(1345px, calc(100% - 32px));
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(16,118,180,.8), rgba(64,171,167,.8));
  padding: 14px;
  font-family: "Cairo", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 32px;
  color:#fff;
  text-align:center;
}

/* Search */
.ft-blog-wrap.container{ max-width: 1320px; }

.ft-blog-search{
  width: 359px;
  margin-bottom: 18px;
  text-align: right;
  font-family: "Cairo", sans-serif;
}
.ft-blog-search__label{
  display:block;
  color:#1076b4;
  font-size:20px;
  line-height:16px;
  margin-bottom: 13px;
}
.ft-blog-search__box{
  height:20px;
  border-radius:10px;
  border:1px solid #1076b4;
  display:flex;
  align-items:center;
  justify-content:end;
  padding: 16px 10px;
  position:relative;
  background:#fff;
}
.ft-blog-search__placeholder{
  color:#a9a9a9;
  font-weight:600;
}
.ft-blog-search__input{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  padding: 16px 44px 16px 90px; /* مساحة للأيقونة + النص */
  font-family:"Cairo", sans-serif;
  font-size:16px;
  color:#1076b4;
}
.ft-blog-search__icon{
  width:24px; height:24px;
  display:inline-flex;
  align-items:center; justify-content:center;
}

/* Grid */
.ft-blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 400px);
  gap: 30px;
  justify-content: space-between;
}

/* Card */
.ft-blog-card{
  width:400px;
  border-radius:10px;
  background:#e7f7fe;
  overflow:hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.ft-blog-card__media{
  position:relative;
  display:block;
  width:400px;
  height:265px;
  overflow:hidden;
}
.ft-blog-card__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ft-blog-card__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.4);
}
.ft-blog-card__logo{
  position:absolute;
  top:5px;
  left:8px;
  width:70px;
  height:70px;
  object-fit:cover;
}
.ft-blog-card__overlay-title{
  position:absolute;
  top: 110px;
  left: 24px;
  right: 24px;
  color:#fff;
  font-family:"Cairo", sans-serif;
  font-size: 18px;
  font-weight:700;
  line-height: 28px;
  text-align:center;
}

/* Body */
.ft-blog-card__body{
  padding: 16px 23px 20px;
  text-align:right;
  font-family:"Cairo", sans-serif;
}
.ft-blog-card__title{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 32px;
  color:#1076b4;
}
.ft-blog-card__title a{
  color:inherit;
  text-decoration:none;
}
.ft-blog-card__excerpt{
  margin: 0 0 14px;
  font-size:16px;
  line-height:32px;
  font-weight:500;
  color:#4c4d4d;
  min-height: 96px; /* يثبت ارتفاع الكروت */
}

.ft-blog-card__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  border-radius:10px;
  background: linear-gradient(85.19deg, #1076b4, #40aba7);
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
}

/* Pagination */
.ft-blog-pagination{
  margin-top: 26px;
  display:flex;
  justify-content:center;
  gap: 10px;
  font-family:"Cairo", sans-serif;
}
.ft-blog-pagination .page-numbers{
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #1076b4;
  color:#1076b4;
  text-decoration:none;
}
.ft-blog-pagination .page-numbers.current{
  background: linear-gradient(85.19deg, #1076b4, #40aba7);
  color:#fff;
  border-color: transparent;
}
.ft-blog-empty{
  text-align:center;
  margin: 30px 0;
  font-family:"Cairo", sans-serif;
}

/* Mobile: كارت كارت */
@media (max-width: 991px){
  .ft-blog-search{ width: 100%; }
  .ft-blog-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    justify-content: initial;
  }
  .ft-blog-card, .ft-blog-card__media{
    width:100%;
  }
  .ft-blog-card__media{ height: 220px; }
  .ft-blog-card__logo{ width:52px; height:52px; }
  .ft-blog-card__overlay-title{ top: 92px; font-size:16px; line-height:24px; }
  .ft-blog-card__excerpt{ line-height:28px; min-height: unset; }
}



.ft-single { padding: 30px 0 60px; }
.ft-single-head { margin-bottom: 18px; text-align:right;}
.ft-single-title { font-size: 28px; line-height: 1.3; margin: 0 0 8px; color:#3da7a8; }
.ft-single-meta { font-size: 13px; opacity: .75; }

.ft-single-body {  margin: 0 auto; }

.ft-sec { padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.ft-sec:last-child { border-bottom: 0; }

.ft-sec-title {
  color: #1b66c9; /* الأزرق */
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px;
  font-weight: 700;
}

.ft-sec-content { font-size: 15px; line-height: 1.9; }
.ft-sec-content p { margin: 0 0 12px; }

.ft-sec-figure { margin: 14px 0 0; }
.ft-sec-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}


/* WhatsApp CTA at end of single post */
.ft-whatsapp-contact{
  margin: 26px auto 10px;
  max-width: 920px;
}

.ft-whatsapp-contact .frame-parent{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  font-size: 24px;
  color: #07334e;
  font-family: Cairo, sans-serif;
  text-decoration: none;
  flex-direction:row-reverse;
}

.ft-whatsapp-contact .wrapper{
  border-radius: 5px;
  background-color: #3acb3e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
}

.ft-whatsapp-contact .div{
  position: relative;
  line-height: 1.2;
  font-weight: 600;
  color: #07334e;
}

.ft-whatsapp-contact .whatsapp-icon{
  height: 70px;
  width: 70px;
  position: relative;
  margin-left: -4px;
}

/* موبايل */
@media (max-width: 600px){
  .ft-whatsapp-contact .frame-parent{ font-size: 18px; }
  .ft-whatsapp-contact .wrapper{ padding: 16px 18px; }
  .ft-whatsapp-contact .whatsapp-icon{ width: 64px; height: 64px; }
}


/* Single Post RTL Fix */
.ft-single,
.ft-single *{
  direction: rtl;
  text-align: right;
}

/* خلي الأرقام/التاريخ ما يتلخبطوش */
.ft-single .ft-single-meta,
.ft-single time{
  direction: ltr;
  unicode-bidi: plaintext;
  text-align: right;
}


.ft-single-title{
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
}

.ft-sec-title{
  font-size: 27px;
  font-weight: 800;
}

.ft-sec-content{
  font-size: 21px;
  line-height: 2;
  font-weight: 500;
  color: #1f2937; /* أو سيبيه لو عندك لون */
}



.ft-sec-figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;

  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/**/
/* =========================
   Contact Page
/* =========================
   Contact (Static) 
========================= */
.ft-contact{ padding: 42px 0 75px; direction: rtl; }
.ft-contact *{ box-sizing: border-box; font-family: Cairo, sans-serif; }

.ft-contact__title{
  text-align: center;
  font-size: 32px;
  line-height: 1.35;
  color: #07334e;
  margin: 0 0 34px;
  font-weight: 800;
}

/* Cards row */
.ft-contact-cards{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;              /* أقل من 48 عشان أصغر */
  margin-bottom: 26px;
}

/* Box smaller قليلاً */
.ft-card{
  width: 320px;           /* كان 345 */
  min-height: 300px;      /* كان 324 */
  border-radius: 10px;
  background: #fff;
  border: 2px solid #1076b4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 34px;     /* أقل */
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ft-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.07);
}

.ft-card__iconwrap{
  width: 92px; height: 92px;      /* أقل */
  border-radius: 999px;
  background: #1076b4;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  margin-bottom: 18px;
}
.ft-card__icon{ width: 56px; height: 56px; object-fit: contain; }

.ft-card__label{
  font-size: 22px;        /* كان 24 */
  line-height: 34px;
  color: #000;
  margin: 0 0 10px;
  font-weight: 800;
}

.ft-card__value{
  font-size: 18px;        /* أوضح ومريح */
  line-height: 34px;
  font-weight: 600;
  color: #646464;
  text-decoration: none;
}

/* Phones */
.ft-phones{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  margin-top: 6px;
}
.ft-phone{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-decoration: none;
}
.ft-phone__num{
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  color: #646464;
}
.ft-phone__ico{ width: 34px; height: 34px; object-fit: contain; }

/* Form + Map */
.ft-contact-grid{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.ft-formbox{
  width: 760px;          /* أقل شوية */
  min-height: 700px;
  border-radius: 10px;
  background: #fff;
  border: 3px solid #40aba7;
  padding: 22px 30px;
}

.ft-mapbox{
  width: 540px;
  min-height: 700px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Map */
.ft-map-embed iframe{
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
}

/* Badge */
.ft-mapbadge{
  position: absolute;
  top: 14px;
  left: 12px;
  width: 315px;
  background: rgba(255,255,255,.9);
  padding: 12px;
  border-radius: 6px;
}
.ft-mapbadge__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.ft-mapbadge__logo{ width: 45px; height: 48px; object-fit: contain; }
.ft-mapbadge__name{ font-weight: 700; color: #1e1e1e; font-size: 16px; }
.ft-mapbadge__addr{ font-weight: 600; color: #737070; font-size: 14px; margin-bottom: 10px; }

.ft-mapbadge__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ft-mapbadge__reviews{ font-weight: 600; color: #91d6eb; font-size: 14px; }
.ft-mapbadge__rate{ display:flex; align-items:center; gap:10px; color:#3e3e3e; font-weight:700; font-size: 14px; }
.ft-mapbadge__stars{ letter-spacing: 2px; }
.ft-mapbadge__score{ font-weight: 800; }

/* =========================
   CF7 Styling (شكل قريب من فيجما)
========================= */
.ft-formbox .wpcf7 form{ direction: rtl; text-align: right; }
.ft-formbox label{
  display:block;
  font-weight: 800;
  color: #646464;
  margin: 0 0 6px;
}
.ft-formbox input[type="text"],
.ft-formbox input[type="email"],
.ft-formbox input[type="tel"],
.ft-formbox textarea{
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(100,100,100,.5);
  padding: 12px 10px;
  font-size: 16px;
  outline: none;
}
.ft-formbox textarea{ min-height: 190px; resize: vertical; }
.ft-formbox input[type="submit"]{
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(85.19deg, #1076b4, #40aba7);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 18px;
}

/* =========================
   Simple reveal animation
========================= */
.wow-reveal{
  opacity: 0;
  transform: translateY(14px);
  animation: ftReveal .6s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes ftReveal{
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Mobile - كله تحت بعض + تصغير أكتر
========================= */
@media (max-width: 992px){
  .ft-contact-cards{
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .ft-card{
    width: 100%;
    max-width: 420px;
    min-height: 260px;
    padding: 32px 18px;
  }
  .ft-contact-grid{ flex-direction: column; }
  .ft-formbox, .ft-mapbox{
    width: 100%;
    min-height: auto;
  }
  .ft-map-embed iframe{ height: 420px; }
  .ft-mapbadge{
    width: calc(100% - 24px);
    left: 12px;
  }
  .ft-contact__title{ font-size: 22px; margin-bottom: 18px; }
}

/**/


