@font-face{
  font-family:'Rabar';
  src:url('../assets/fonts/Rabar_021.ttf') format('truetype');
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
}

/* ============================================================
   MYSELECT — SHARED STYLESHEET --- 
   ============================================================ */

:root{
  --bg-primary:   #f6f7fb;
  --bg-secondary: #eef1f6;
  --bg-card:      #ffffff;
  --bg-input:     #f6f7fb;
  --text-primary: #10192b;
  --text-sub:     #51617a;
  --text-muted:   #728093;
  --border:       rgba(16,25,43,0.08);
  --border-sub:   rgba(16,25,43,0.05);

  --nav-bg:       #ffffff;
  --nav-text:     #1e293b;
  --nav-shadow:   0 10px 30px rgba(0,0,0,0.15);

  --gold:         #D4AF37;
  --gold-2:       #FFD700;
  --gold-glow:    rgba(212,175,55,0.3);
  --gold-bg:      rgba(212,175,55,0.15);

  --navy:         #0B1528;
  --navy-2:       #1e293b;

  --radius-lg: 22px;
  --radius-md: 14px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
html.no-scroll,body.no-scroll{overflow:hidden;height:100%;}
.map-wrap iframe{filter:none;}
.logo-item{background:rgba(16,25,43,0.04);}
.service-img,
.hexagon-content{background-color:var(--bg-secondary);}

body{
  background-color:var(--bg-primary);
  color:var(--text-primary);
  font-family:'Plus Jakarta Sans',sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}
/* Kurdish and Arabic typography */
html[lang="ku"] body,
html[lang="ar"] body{
  font-family:'Rabar',sans-serif;
}


/* About Us page uses the same background tone as the About Us motion video. */
body[data-page="about"]{background-color:#fcfcfc;}

img{max-width:100%;display:block;}
a{color:inherit;}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}
.section-pad{padding:120px 0;}
@media(max-width:768px){.section-pad{padding:80px 0;}}
@media(max-width:480px){
  .container{padding:0 18px;}
  .section-pad{padding:60px 0;}
}

::selection{background:var(--gold);color:#04070d;}

/* focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--gold); outline-offset:3px;
}

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

/* ===== decorative arrow motif (from brand catalog) ===== */
.arrow-motif{display:inline-flex;flex-direction:column;gap:4px;line-height:0;}
.arrow-motif .row{display:flex;gap:3px;}
.arrow-motif svg{width:14px;height:12px;}


body.page-enter main, body.page-enter header, body.page-enter footer{
  animation:contentReveal .6s var(--ease) both;
  animation-delay:.15s;
}
@keyframes contentReveal{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header.site-header{
  position:fixed; top:15px; left:0; right:0; z-index:1000;
  background-color:var(--nav-bg);
  margin:0 20px; border-radius:16px;
  box-shadow:var(--nav-shadow);
  border:1px solid rgba(255,255,255,0.1);
}
.nav-flex{display:flex;align-items:center;justify-content:space-between;height:96px;padding:0 30px;}
.logo a{display:flex;align-items:center;gap:10px;text-decoration:none;}
.logo img{height:70px;width:auto;object-fit:contain;display:block;}

.header-actions{display:flex;align-items:center;gap:10px;}

nav.main-nav{display:flex;align-items:center;gap:6px;}
.main-nav a{
  text-decoration:none;color:var(--nav-text);font-weight:700;font-size:15px;
  position:relative;padding:10px 14px;letter-spacing:-.2px;border-radius:8px;
  transition:color .3s,background .3s;
}
.main-nav a:hover{color:var(--gold);}
.main-nav a.active{color:var(--gold);background:rgba(212,175,55,.1);}

.has-dropdown{position:relative;}
.dropdown-panel{
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(8px);
  background:#fff; border-radius:14px; box-shadow:0 20px 45px rgba(0,0,0,.2);
  border:1px solid #eef1f5; padding:10px; min-width:280px;
  display:grid; grid-template-columns:1fr 1fr; gap:4px;
  opacity:0; visibility:hidden; transition:opacity .25s,transform .25s;
}
.has-dropdown:hover .dropdown-panel{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.dropdown-panel a{font-size:13px;padding:10px 12px;border-radius:8px;font-weight:600;}
.dropdown-panel a:hover{background:#f4f6f9;}

.btn-contact{
  background:linear-gradient(135deg,var(--navy),var(--navy-2)) !important;
  color:#fff !important;padding:12px 26px;border-radius:50px;font-weight:700;
  box-shadow:0 4px 15px rgba(11,21,40,0.3);border:1px solid var(--gold);
  margin-left:8px;
}
.btn-contact:hover{color:#fff !important;background:linear-gradient(135deg,var(--navy-2),var(--navy)) !important;}

/* ---- Language switcher ---- */
/* ---- Language switcher ---- */
.lang-switch{
  position:relative;
  overflow:visible;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:7px;
  height:44px;
  padding:0 14px;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  border-radius:10px;
  cursor:pointer;
  color:#334155;
  font-size:14px;
  font-weight:700;
  transition:background .3s,color .3s,transform .3s;
}

.lang-toggle:hover{
  transform:translateY(-2px);
  color:var(--gold);
}

.lang-toggle i{
  font-size:15px;
}

.lang-panel{
  position:absolute;
  top:calc(100% + 10px);

  /* Default = English / LTR */
  right:0;
  left:auto;

  background:#fff;
  border:1px solid #eef1f5;
  border-radius:14px;
  box-shadow:0 20px 45px rgba(0,0,0,.2);
  padding:8px;
  min-width:150px;

  display:flex;
  flex-direction:column;
  gap:2px;

  opacity:0;
  visibility:hidden;
  transform:translateY(8px);

  transition:opacity .25s,transform .25s;
  z-index:1100;
}

.lang-panel.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.lang-panel button{
  text-align:left;
  background:none;
  border:none;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  color:#1e293b;
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
  transition:background .2s,color .2s;
}

.lang-panel button:hover{
  background:#f4f6f9;
  color:var(--gold);
}

.lang-panel button.active{
  color:var(--gold);
  background:rgba(212,175,55,.1);
}


/* =========================
   RTL FIX - Arabic / Kurdish
   ========================= */

html[dir="rtl"] .lang-panel{
  right:auto;
  left:0;
}

html[dir="rtl"] .lang-panel button{
  text-align:right;
}


/* ---- Hamburger ---- */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  border-radius:10px;
  cursor:pointer;
  margin-left:10px;
}

.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:#334155;
  border-radius:2px;
  transition:transform .35s,opacity .35s;
}

.hamburger.open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2){
  opacity:0;
  transform:scaleX(0);
}

.hamburger.open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ---- Mobile Menu ---- */
.mobile-menu{
  display:none;
  position:fixed;
  inset:0;
  z-index:999;
  background:var(--nav-bg);
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:0;
  opacity:0;
  transform:translateY(-18px);
  transition:opacity .35s,transform .35s;
  overflow-y:auto;
  padding:110px 22px 40px;
}

.mobile-menu.visible{
  display:flex;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
}

.mobile-menu>a{
  text-decoration:none;
  color:var(--nav-text);
  font-weight:800;
  font-size:18px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 6px;
  border-bottom:1px solid #eef1f5;
}

.mobile-menu>a i{
  width:22px;
  text-align:center;
  color:var(--gold);
  font-size:17px;
}

.mobile-menu>a.btn-contact{
  margin-top:18px !important;
  justify-content:center;
  border-bottom:none;
  border-radius:50px;
  padding:16px;
}

.mobile-menu>a.btn-contact i{
  color:#fff;
}

.mobile-menu .mob-sub{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:4px 0 10px 38px;
  border-bottom:1px solid #eef1f5;
}

.mobile-menu .mob-sub a{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14.5px;
  font-weight:600;
  color:#64748b;
  text-decoration:none;
  padding:11px 6px;
}

.mobile-menu .mob-sub a i{
  width:18px;
  text-align:center;
  color:var(--gold);
  font-size:13px;
  opacity:.85;
}


/* ---- Tablet / Mobile ---- */
@media(max-width:900px){

  nav.main-nav,
  .header-right .btn-contact{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .header-actions{
    gap:8px;
    overflow:visible;
  }

  .header-actions > .lang-switch .lang-toggle{
    width:44px;
    height:44px;
    padding:0;
    justify-content:center;
    gap:0;
  }

  .header-actions > .lang-switch .lang-current{
    display:none;
  }

  /* English */
  .header-actions > .lang-switch .lang-panel{
    right:0;
    left:auto;
  }

  /* Arabic + Kurdish */
  html[dir="rtl"] .header-actions > .lang-switch .lang-panel{
    right:auto;
    left:0;
  }
}


/* ---- Mobile ---- */
@media(max-width:768px){

  header.site-header{
    top:10px;
    margin:0 10px;
  }

  .nav-flex{
    height:84px;
    padding:0 16px;
    overflow:visible;
  }

  .logo img{
    height:58px;
  }

  .mobile-menu{
    top:104px;
    bottom:0;
    padding:20px 22px 40px;
  }
}


/* ---- Small Mobile ---- */
@media(max-width:400px){

  header.site-header{
    margin:0 8px;
  }

  .nav-flex{
    height:70px;
    padding:0 12px;
  }

  .logo img{
    height:46px;
  }

  .hamburger{
    width:40px;
    height:40px;
  }

  .mobile-menu a{
    font-size:20px;
  }

  .mobile-menu{
    gap:20px;
    top:90px;
    bottom:0;
    padding:20px 16px 40px;
  }

  .mobile-controls{
    flex-direction:column;
    align-items:stretch;
  }
}
/* ============================================================
   BUTTONS
   ============================================================ */
.btn-main{
  background:linear-gradient(135deg,var(--navy),var(--navy-2));color:#fff;border:1px solid var(--gold);
  padding:18px 40px;border-radius:8px;text-decoration:none;font-weight:700;display:inline-block;
  box-shadow:0 4px 15px rgba(0,0,0,0.3);transition:transform .3s,box-shadow .3s;
}
.btn-main:hover{transform:translateY(-3px);box-shadow:0 6px 20px var(--gold-glow);}
.btn-ghost{
  display:inline-block;padding:16px 34px;border-radius:8px;font-weight:700;text-decoration:none;
  color:var(--text-primary);border:1px solid var(--border);background:var(--bg-card);
  transition:border-color .3s,transform .3s;
}
.btn-ghost:hover{border-color:var(--gold);transform:translateY(-3px);}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero{position:relative;width:100%;min-height:100vh;display:flex;align-items:center;overflow:hidden;}
.hero-bg-slider{position:absolute;inset:0;z-index:1;}
.hero-bg-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;opacity:0;transition:opacity 1.5s ease-in-out;}
.hero-bg-slider img.active{opacity:1;}
.hero::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,11,20,0.92) 40%,rgba(6,11,20,0.55) 100%);z-index:2;pointer-events:none;}
.hero .container{position:relative;z-index:3;width:100%;padding-top:100px;}
.hero-text-box{max-width:660px;}
.hero-tag{display:inline-flex;align-items:center;gap:10px;background:rgba(212,175,55,0.15);border:1px solid rgba(212,175,55,0.4);color:var(--gold);padding:8px 18px;border-radius:50px;font-size:13px;font-weight:700;text-transform:uppercase;margin-bottom:28px;letter-spacing:1px;}
.hero h1{font-size:clamp(28px,7vw,56px);font-weight:800;line-height:1.15;margin-bottom:24px;letter-spacing:-1.5px;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,0.5);}
.hero h1 span{background:linear-gradient(to right,#fff,var(--gold));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.hero p.motto{
  color:#cbd5e1;
  font-size:clamp(14px,3.2vw,21px);
  font-style:italic;
  border-left:4px solid var(--gold);
  padding-left:20px;
  margin-bottom:40px;
  text-shadow:0 2px 5px rgba(0,0,0,0.5);
}

html[dir="rtl"] .hero p.motto,
html[lang="ar"] .hero p.motto,
html[lang="ku"] .hero p.motto,
html[lang="ckb"] .hero p.motto,
html[lang="kr"] .hero p.motto{
   border-left:0;
  border-right:4px solid var(--gold);
  padding-right:12px;
}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;}
.hero-stats{display:flex;gap:36px;margin-top:56px;flex-wrap:wrap;}
.hero-stats div b{display:block;font-size:30px;color:var(--gold);font-weight:800;}
.hero-stats div span{font-size:13px;color:#cbd5e1;text-transform:uppercase;letter-spacing:.5px;}

@media(max-width:768px){
  .hero .container{padding-top:120px;padding-bottom:60px;}
  .hero p.motto{margin-bottom:28px;}
}
@media(max-width:480px){
  .hero{min-height:100svh;}
  .hero .container{padding-top:100px;padding-bottom:40px;}
  .hero-tag{font-size:11px;padding:6px 14px;margin-bottom:18px;}
  .hero p.motto{padding-left:14px;}
  .hero-ctas{gap:12px;}
  .hero-ctas a{flex:1 1 auto;text-align:center;padding-left:22px;padding-right:22px;}
  .hero-stats{gap:22px;margin-top:36px;}
  .hero-stats div b{font-size:24px;}
  .hero-stats div span{font-size:11px;}
}

/* ============================================================
   PAGE HERO (sub pages banner)
   ============================================================ */
.page-hero{
  position:relative;padding:170px 0 90px;background:linear-gradient(160deg,var(--navy) 0%,#050a15 70%);
  overflow:hidden;border-bottom:1px solid var(--border);
}
.page-hero::after{
  content:'';position:absolute;right:-120px;top:-120px;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,var(--gold-glow) 0%,transparent 70%);
}
.page-hero::before{
  content:'';position:absolute;left:32px;bottom:28px;width:150px;height:28px;
  background-image:url('../assets/arrow-motif-light.svg');background-repeat:no-repeat;background-size:contain;
  opacity:.9;z-index:1;pointer-events:none;
}
@media(max-width:768px){.page-hero::before{width:110px;height:20px;left:20px;bottom:18px;}}
.page-hero .eyebrow{color:var(--gold);font-weight:700;letter-spacing:2px;text-transform:uppercase;font-size:13px;margin-bottom:14px;display:block;}
.page-hero h1{font-size:clamp(26px,5.5vw,44px);font-weight:800;color:#fff;letter-spacing:-1px;max-width:760px;}
.page-hero p{margin-top:18px;color:var(--text-sub);font-size:clamp(14px,3vw,17px);max-width:640px;}
.breadcrumb{margin-top:26px;font-size:13px;color:var(--text-muted);position:relative;z-index:2;}
.breadcrumb a{color:var(--text-muted);text-decoration:none;}
.breadcrumb a:hover{color:var(--gold);}
@media(max-width:768px){.page-hero{padding:130px 0 60px;}}
@media(max-width:480px){.page-hero{padding:110px 0 50px;}.page-hero::after{width:260px;height:260px;right:-90px;top:-90px;}}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title{text-align:center;margin-bottom:64px;}
.section-title .eyebrow{color:var(--gold);font-weight:700;letter-spacing:2px;text-transform:uppercase;font-size:13px;}
.section-title h2{font-size:clamp(24px,4.5vw,34px);font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-top:10px;
  background:linear-gradient(to right,var(--text-primary),var(--text-sub));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.section-title .bar{width:60px;height:4px;background:linear-gradient(to right,var(--navy),var(--gold));margin:16px auto 0;border-radius:10px;}
.section-title p.lead{color:var(--text-sub);max-width:600px;margin:16px auto 0;font-size:clamp(13px,3vw,15px);padding:0 6px;}
@media(max-width:480px){.section-title{margin-bottom:44px;}}

/* ============================================================
   HOME TEASERS
   ============================================================ */
.teaser-about{background-color:#fcfcfc;}
.about{background-color:#fcfcfc;}
.about-grid{display:grid;grid-template-columns:1fr;gap:50px;align-items:center;}
@media(min-width:1024px){.about-grid{grid-template-columns:1.1fr .9fr;}}
.about-content h2{font-size:clamp(24px,4.5vw,34px);font-weight:800;margin-bottom:22px;background:linear-gradient(to right,var(--text-primary),var(--gold));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.about-content p{color:var(--text-sub);font-size:16px;line-height:1.85;margin-bottom:22px;}
.about-content p strong{color:var(--gold);font-weight:700;}
.about-hexagon-container{position:relative;width:min(520px,90vw);height:auto;aspect-ratio:16/9;margin:0 auto;display:flex;align-items:center;justify-content:center;background:#fcfcfc;}
.hexagon-glow-border{position:absolute;width:100%;height:100%;z-index:1;background:#fcfcfc;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.hexagon-glow-border::before{display:none;}
.hexagon-content{position:absolute;width:100%;height:100%;background:#fcfcfc;z-index:2;overflow:hidden;box-shadow:none;}
@media(max-width:480px){.about-hexagon-container{width:100%;max-width:520px;margin-left:auto;margin-right:auto;justify-self:center;}}
.about-slideshow{position:relative;width:100%;height:100%;background:#fcfcfc;}
.about-video{display:block;width:100%;height:100%;object-fit:contain;background:#fcfcfc;border:0;outline:0;}

/* ============================================================
   SERVICES GRID (home + services page)
   ============================================================ */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:28px;}
.service-card{
  background-color:var(--bg-card);border:1px solid var(--border);border-radius:20px;overflow:hidden;
  display:flex;flex-direction:column;text-decoration:none;color:inherit;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);transition:transform .3s,border-color .3s,box-shadow .3s;
}
.service-card:hover{transform:translateY(-10px);border-color:var(--gold);box-shadow:0 15px 35px var(--gold-glow);}
.service-img{height:190px;width:100%;overflow:hidden;background-color:var(--bg-secondary);position:relative;}
.service-img img{width:100%;height:100%;object-fit:cover;opacity:.9;transition:transform .4s;}
.service-card:hover .service-img img{transform:scale(1.07);}
.service-num{position:absolute;top:14px;left:14px;background:var(--gold);color:#0B1528;font-weight:800;font-size:12px;padding:5px 10px;border-radius:6px;letter-spacing:1px;}
.service-info{padding:24px;flex-grow:1;display:flex;flex-direction:column;}
.service-info h3{font-size:17px;font-weight:700;margin-bottom:12px;color:var(--text-primary);letter-spacing:.3px;border-bottom:1px solid rgba(212,175,55,0.2);padding-bottom:10px;}
.service-info p{color:var(--text-sub);font-size:14px;line-height:1.65;flex-grow:1;}
.service-more{margin-top:16px;color:var(--gold);font-weight:700;font-size:13px;display:inline-flex;align-items:center;gap:6px;}
.service-card:hover .service-more{gap:10px;}
.service-more i{transition:transform .3s;}

/* ============================================================
   WHY US
   ============================================================ */
.why-us-grid{display:grid;grid-template-columns:1fr;gap:36px;margin-top:10px;}
@media(min-width:768px){.why-us-grid{grid-template-columns:1fr 1fr;}}
.why-item{
  display:flex;align-items:flex-start;gap:20px;background-color:var(--bg-card);padding:30px;border-radius:16px;
  border:1px solid var(--border);box-shadow:0 10px 25px rgba(0,0,0,0.2);
  transition:transform .3s,border-color .3s,box-shadow .3s;
}
.why-item:hover{border-color:var(--gold);transform:translateY(-5px);box-shadow:0 15px 30px var(--gold-glow);}
.why-icon{font-size:28px;color:var(--gold);background:var(--gold-bg);padding:15px;border-radius:12px;display:flex;align-items:center;justify-content:center;min-width:66px;height:66px;transition:transform .3s,background .3s;}
.why-item:hover .why-icon{transform:scale(1.05);background:rgba(212,175,55,0.25);}
.why-content{border-left:3px solid var(--gold);padding-left:15px;}
.why-content h3{font-size:19px;font-weight:700;color:var(--text-primary);margin-bottom:8px;text-transform:uppercase;}
.why-content p{color:var(--text-sub);font-size:15px;line-height:1.6;}

/* ============================================================
   PARTNERS / CLIENTS
   ============================================================ */
.grid-logos{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:22px;align-items:center;justify-items:center;margin-top:36px;}
@media(max-width:480px){.grid-logos{grid-template-columns:repeat(2,1fr);gap:14px;}.logo-item{min-height:80px;padding:12px;}}
.logo-item{
  background:var(--border);border:1px solid var(--border-sub);padding:16px;border-radius:12px;width:100%;
  display:flex;align-items:center;justify-content:center;min-height:110px;box-shadow:0 1px 3px rgba(0,0,0,0.06);
  transition:border-color .3s,transform .3s,background .3s;
}
.logo-item img{width:85%;max-height:80px;object-fit:contain;transition:transform .3s;filter:grayscale(20%);}
.logo-item:hover{border-color:var(--gold);transform:translateY(-5px);}
.logo-item:hover img{transform:scale(1.08);filter:none;}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{display:grid;grid-template-columns:1fr;gap:50px;}
@media(min-width:1024px){.contact-grid{grid-template-columns:1fr 1.2fr;}}
.contact-details h3{font-size:30px;font-weight:800;margin-bottom:20px;line-height:1.3;color:var(--text-primary);}
.contact-details>p{color:var(--text-sub);margin-bottom:40px;font-size:17px;}
.info-list{display:flex;flex-direction:column;gap:20px;}
.info-box{display:flex;align-items:center;gap:20px;background-color:var(--bg-card);padding:20px;border-radius:16px;border:1px solid var(--border);text-decoration:none;transition:border-color .3s,transform .3s;}
.info-box:hover{border-color:var(--gold);transform:translateY(-3px);}
.info-box .icon{font-size:22px;color:var(--gold);width:26px;text-align:center;}
.info-box div h5{color:var(--text-muted);font-size:11px;text-transform:uppercase;margin-bottom:5px;font-weight:700;letter-spacing:1.5px;}
.info-box div p{color:var(--text-primary);font-size:16px;font-weight:700;margin:0;line-height:1.5;}
.social-links{display:flex;gap:14px;margin-top:32px;}
.social-icon{
  display:flex;align-items:center;justify-content:center;width:48px;height:48px;background-color:var(--bg-card);
  border:1px solid var(--border);border-radius:50%;color:var(--text-primary);text-decoration:none;font-size:18px;
  transition:border-color .3s,color .3s,transform .3s,box-shadow .3s,background-color .3s;
}
.social-icon.whatsapp:hover{border-color:#25D366;color:#25D366;box-shadow:0 6px 20px rgba(37,211,102,.35);}
.social-icon:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-4px);box-shadow:0 6px 20px var(--gold-glow);background-color:#12223f;}
.contact-form{background-color:var(--bg-card);padding:40px;border-radius:24px;border:1px solid var(--border);box-shadow:0 20px 40px rgba(0,0,0,0.3);}
@media(max-width:480px){
  .contact-form{padding:24px;border-radius:18px;}
  .contact-details h3{font-size:24px;}
  .info-box{padding:16px;gap:14px;}
  .map-wrap iframe{height:200px;}
}
.form-group{margin-bottom:20px;}
.form-group input,.form-group textarea{
  width:100%;background-color:var(--bg-input);border:1px solid var(--border);padding:16px 20px;border-radius:8px;
  color:var(--text-primary);font-size:15px;outline:none;font-family:inherit;transition:border-color .3s;
}
.form-group input:focus,.form-group textarea:focus{border-color:var(--gold);}
.btn-submit{
  width:100%;background:#172237;color:#fff;border:1px solid var(--gold);padding:16px;border-radius:8px;
  font-weight:700;font-size:16px;cursor:pointer;font-family:inherit;transition:background .3s,box-shadow .3s;
}
.btn-submit:hover{background:#1d2b44;box-shadow:0 5px 15px var(--gold-glow);}
.map-wrap{margin-top:30px;border-radius:16px;overflow:hidden;border:1px solid var(--border);}
.map-wrap iframe{width:100%;height:260px;border:0;display:block;filter:grayscale(40%) invert(92%) contrast(90%);}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail{padding:100px 0;}
.service-detail-grid{display:grid;grid-template-columns:1fr;gap:50px;align-items:start;}
@media(min-width:1024px){.service-detail-grid{grid-template-columns:1fr 1fr;}}
.service-detail-media{border-radius:24px;overflow:hidden;border:1px solid var(--border);box-shadow:0 20px 50px rgba(0,0,0,.35);position:sticky;top:130px;}
.service-detail-media img{width:100%;height:420px;object-fit:cover;}
@media(max-width:768px){.service-detail{padding:70px 0;}.service-detail-media{position:static;}.service-detail-media img{height:260px;}}
@media(max-width:480px){.service-detail-media img{height:200px;}}
.service-detail-copy h2{font-size:clamp(22px,4.5vw,30px);font-weight:800;margin-bottom:18px;color:var(--text-primary);}
.service-detail-copy>p.intro{color:var(--text-sub);font-size:17px;line-height:1.8;margin-bottom:30px;}
.feature-list{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:36px;}
.feature-list li{
  display:flex;gap:14px;align-items:flex-start;background:var(--bg-card);border:1px solid var(--border);
  padding:16px 18px;border-radius:12px;font-size:15px;color:var(--text-sub);transition:border-color .3s,transform .3s;
}
.feature-list li:hover{border-color:var(--gold);transform:translateX(4px);}
.feature-list li i{color:var(--gold);margin-top:3px;}
.service-cta{display:flex;gap:16px;flex-wrap:wrap;}

.related-services{padding:90px 0;background:var(--bg-secondary);border-top:1px solid var(--border-sub);}
.related-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px;}
.related-card{
  background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:22px;text-decoration:none;
  color:inherit;display:flex;align-items:center;gap:14px;transition:border-color .3s,transform .3s;
}
.related-card:hover{border-color:var(--gold);transform:translateY(-4px);}
.related-card .ic{width:44px;height:44px;border-radius:10px;background:var(--gold-bg);color:var(--gold);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.related-card span{font-weight:700;font-size:14px;}

/* service number chip on detail page */
.service-chip{display:inline-flex;align-items:center;gap:8px;background:var(--gold-bg);color:var(--gold);font-weight:800;font-size:12px;letter-spacing:1.5px;padding:8px 16px;border-radius:50px;margin-bottom:20px;text-transform:uppercase;}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer{background:var(--bg-secondary);border-top:1px solid var(--border-sub);padding:70px 0 30px;position:relative;overflow:hidden;}
footer.site-footer::before{
  content:'';position:absolute;right:34px;top:34px;width:130px;height:24px;
  background-image:url('../assets/arrow-motif-dark.svg');background-repeat:no-repeat;background-size:contain;
  opacity:.85;pointer-events:none;
}
@media(max-width:560px){footer.site-footer::before{display:none;}}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-brand img{height:46px;margin-bottom:16px;}
.footer-brand p{color:var(--text-sub);font-size:14px;line-height:1.7;max-width:280px;}
.footer-col h4{font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:var(--gold);margin-bottom:18px;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:11px;}
.footer-col a{color:var(--text-sub);text-decoration:none;font-size:14px;transition:color .3s;}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{margin-top:50px;padding-top:26px;border-top:1px solid var(--border-sub);display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;color:var(--text-muted);font-size:13px;}
.footer-socials{display:flex;gap:12px;}
.footer-socials a{width:38px;height:38px;border-radius:50%;background:var(--bg-card);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-sub);text-decoration:none;transition:color .3s,border-color .3s;}
.footer-socials a:hover{color:var(--gold);border-color:var(--gold);}

/* whatsapp floating button */
.wa-float{
  position:fixed;bottom:26px;right:26px;z-index:900;width:60px;height:60px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;color:#fff;font-size:28px;
  box-shadow:0 10px 30px rgba(37,211,102,.45);text-decoration:none;
  cursor:grab;touch-action:none;user-select:none;-webkit-user-select:none;
}
.wa-float.is-dragging{cursor:grabbing;}
html[dir="rtl"] .wa-float:not(.user-positioned){right:auto;left:26px;}
