/* SkillVera Portfolio - Main Stylesheet */

:root {
  --navy: #0B1C2D;
  --navy2: #0d2035;
  --navy3: #112540;
  --navy4: #162b48;
  --teal: #0F766E;
  --teal-l: #13908A;
  --teal-d: rgba(15,118,110,0.15);
  --gold: #C6A75E;
  --gold-l: #D9BE85;
  --gold-d: rgba(198,167,94,0.12);
  --text: #D6E4EF;
  --muted: #6B8FA8;
  --white: #E8F2FA;
  --border: rgba(198,167,94,0.18);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--navy);
  color:var(--text);
  font-family:'Tajawal',sans-serif;
  font-weight:400;
  overflow-x:hidden;
  cursor:none;
}
/* English font override */
body.lang-en{
  font-family:'Inter','Tajawal',sans-serif;
}

/* ======= CURSOR ======= */
.cur{width:10px;height:10px;background:var(--gold);border-radius:50%;position:fixed;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);mix-blend-mode:difference;transition:transform .15s}
.cur-ring{width:38px;height:38px;border:1.5px solid var(--gold);border-radius:50%;position:fixed;pointer-events:none;z-index:9998;transform:translate(-50%,-50%);opacity:.5;transition:all .2s ease}

@media(hover:none),(pointer:coarse){
  body{cursor:auto}
  .cur,.cur-ring{display:none !important}
}

/* ======= NOISE ======= */
body::before{
  content:'';position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events:none;z-index:1000;opacity:.25;
}

/* ======= NAV ======= */
nav{
  position:fixed;top:0;right:0;left:0;
  padding:22px 60px;
  display:flex;justify-content:space-between;align-items:center;
  z-index:500;
  background:linear-gradient(to bottom,rgba(11,28,45,.96),transparent);
  backdrop-filter:blur(4px);
}
.nav-logo{
  font-family:'Noto Kufi Arabic',serif;
  font-size:1.5rem;font-weight:900;
  color:var(--gold);
  letter-spacing:1px;
  text-decoration:none;
}
.nav-links{display:flex;gap:36px;list-style:none;flex-direction:row-reverse}
.nav-links a{
  color:var(--white);text-decoration:none;
  font-size:.82rem;letter-spacing:.5px;
  font-family:'Cairo',sans-serif;font-weight:600;
  transition:color .3s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;right:0;
  width:0;height:1.5px;background:var(--gold);
  transition:width .3s;
}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}

/* Nav logo image sizing */
.nav-logo img{
  height:52px;
  width:auto;
  display:block;
}

@media(max-width:768px){
  .nav-logo img{
    height:42px;
  }
}
.nav-toggle{
  display:none;
  flex-direction:column;justify-content:center;align-items:center;
  width:40px;height:40px;
  background:transparent;border:1px solid var(--border);
  cursor:pointer;gap:5px;padding:8px;
  transition:border-color .3s;z-index:600;
}
.nav-toggle span{
  display:block;width:22px;height:1.5px;
  background:var(--gold);
  transition:all .35s cubic-bezier(.77,0,.18,1);
  transform-origin:center;
}
.nav-toggle.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-toggle.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

@media(max-width:768px){
  nav{padding:16px 20px}
  .nav-toggle{display:flex}
  .nav-links{
    position:fixed;top:0;right:0;left:0;
    background:rgba(11,28,45,.98);
    backdrop-filter:blur(12px);
    flex-direction:column;
    align-items:center;justify-content:center;
    gap:32px;
    height:100vh;
    transform:translateY(-100%);
    transition:transform .45s cubic-bezier(.77,0,.18,1);
    z-index:550;
    padding:80px 24px 40px;
  }
  .nav-links.open{transform:translateY(0)}
  .nav-links a{font-size:1.1rem;letter-spacing:2px}
}

/* ======= HERO ======= */
.hero{
  min-height:100vh;
  display:flex;align-items:center;
  padding:100px 60px 60px;
  position:relative;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 60%, rgba(15,118,110,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(198,167,94,.07) 0%, transparent 60%);
}

/* Geometric pattern background */
.hero-geo{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(198,167,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,167,94,.04) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}

/* Arabic watermark */
.hero-watermark{
  position:absolute;
  left:-2%;top:50%;transform:translateY(-50%);
  font-family:'Noto Kufi Arabic',serif;
  font-size:clamp(12rem,22vw,22rem);
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px rgba(198,167,94,.07);
  line-height:1;
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}

.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  position:relative;z-index:2;
  gap:60px;
}

.hero-content{flex:1;max-width:600px}

.hero-tag{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'Cairo',sans-serif;font-size:.78rem;font-weight:600;
  letter-spacing:3px;color:var(--teal-l);text-transform:uppercase;
  margin-bottom:28px;
  opacity:0;animation:fadeUp .8s ease .2s forwards;
}
.hero-tag::before{
  content:'';width:32px;height:1.5px;background:var(--teal-l);flex-shrink:0;
}

.hero-name{
  font-family:'Noto Kufi Arabic',serif;
  font-size:clamp(3rem,6.5vw,6rem);
  font-weight:900;line-height:1.1;
  color:var(--white);
  margin-bottom:16px;
  opacity:0;animation:fadeUp .8s ease .4s forwards;
}
.hero-name em{color:var(--gold);font-style:normal}

.hero-sub{
  font-family:'Noto Kufi Arabic',serif;
  font-size:clamp(1.1rem,2.2vw,1.5rem);
  font-weight:700;color:var(--teal-l);
  margin-bottom:24px;
  opacity:0;animation:fadeUp .8s ease .55s forwards;
}

.hero-desc{
  font-size:1rem;color:var(--muted);
  line-height:2;margin-bottom:44px;
  max-width:520px;
  opacity:0;animation:fadeUp .8s ease .7s forwards;
}

.hero-cta{
  display:flex;gap:16px;align-items:center;flex-wrap:wrap;
  opacity:0;animation:fadeUp .8s ease .85s forwards;
}
.btn-p{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 34px;
  background:var(--teal);color:var(--white);
  font-family:'Cairo',sans-serif;font-size:.9rem;font-weight:700;
  text-decoration:none;letter-spacing:.5px;
  position:relative;overflow:hidden;
  transition:all .3s;
  clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
}
.btn-p::before{
  content:'';position:absolute;inset:0;
  background:var(--teal-l);
  transform:translateX(101%);
  transition:transform .4s cubic-bezier(.77,0,.18,1);
}
.btn-p:hover{color:var(--white)}
.btn-p:hover::before{transform:translateX(0)}
.btn-p span{position:relative;z-index:1}

.btn-s{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 32px;
  border:1.5px solid var(--border);
  color:var(--text);font-family:'Cairo',sans-serif;font-size:.9rem;font-weight:600;
  text-decoration:none;
  transition:all .3s;
}
.btn-s:hover{border-color:var(--gold);color:var(--gold)}

/* Hero Photo */
.hero-photo{
  flex-shrink:0;
  opacity:0;animation:fadeIn 1.2s ease 1s forwards;
}
.photo-frame{
  position:relative;
  width:340px;height:420px;
}
.photo-frame::before{
  content:'';position:absolute;
  inset:-14px;
  border:1px solid rgba(198,167,94,.3);
  z-index:0;
}
.photo-frame::after{
  content:'';position:absolute;
  bottom:-22px;left:-22px;
  width:55%;height:55%;
  background:var(--teal-d);
  border:1px solid rgba(15,118,110,.3);
  z-index:0;
}
.photo-frame img{
  width:100%;height:100%;
  object-fit:cover;object-position:center top;
  position:relative;z-index:1;
  filter:contrast(1.05) saturate(0.9);
}
.photo-corner{position:absolute;width:22px;height:22px;border-color:var(--gold);border-style:solid;z-index:3}
.photo-corner.tl{top:-7px;right:-7px;border-width:2px 2px 0 0}
.photo-corner.tr{top:-7px;left:-7px;border-width:2px 0 0 2px}
.photo-corner.bl{bottom:-7px;right:-7px;border-width:0 2px 2px 0}
.photo-corner.br{bottom:-7px;left:-7px;border-width:0 0 2px 2px}

/* Hero Stats */
.hero-stats{
  position:absolute;bottom:50px;left:50%;transform:translateX(-50%);
  display:flex;gap:60px;
  opacity:0;animation:fadeUp .8s ease 1.1s forwards;
}
.stat{text-align:center}
.stat-n{
  font-family:'Noto Kufi Arabic',serif;
  font-size:2.8rem;font-weight:900;
  color:var(--gold);line-height:1;
  direction:ltr;display:inline-block;
}
.stat-n sup{font-size:1.4rem;vertical-align:super;margin-left:1px}
.stat-l{
  font-family:'Cairo',sans-serif;font-size:.72rem;font-weight:600;
  color:var(--muted);letter-spacing:1px;
  margin-top:4px;
}
.stat-div{width:1px;background:var(--border);align-self:stretch}

.hero-scroll{
  position:absolute;bottom:30px;right:60px;
  display:flex;align-items:center;gap:10px;
  font-family:'Cairo',sans-serif;font-size:.72rem;
  color:var(--muted);letter-spacing:2px;
  opacity:0;animation:fadeIn 1s ease 1.3s forwards;
}
.scroll-dot{
  width:8px;height:8px;border-radius:50%;
  border:1.5px solid var(--muted);
  animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}

@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

@media(max-width:900px){
  .hero{padding:100px 24px 120px}
  .hero-inner{flex-direction:column-reverse;align-items:center}
  .hero-content{text-align:right;width:100%}
  .photo-frame{width:220px;height:270px}
  .hero-photo{display:flex;justify-content:center;width:100%}
  .hero-stats{position:relative;bottom:auto;left:auto;transform:none;margin-top:40px;gap:30px;justify-content:center;width:100%}
  .hero-scroll{display:none}
  .hero-watermark{font-size:8rem;top:10%;transform:none}
}
@media(max-width:480px){
  .hero{padding:88px 20px 80px}
  .hero-inner{gap:30px}
  .photo-frame{width:200px;height:250px}
  .hero-photo{align-self:center;width:100%;display:flex;justify-content:center}
  .hero-stats{gap:20px;flex-wrap:wrap;justify-content:center}
  .hero-cta{flex-direction:column;align-items:flex-start}
  .btn-p,.btn-s{width:100%;justify-content:center}
  .hero-watermark{display:none}
}

/* ======= SECTIONS COMMON ======= */
.section{padding:110px 60px}
.sec-header{
  display:flex;align-items:center;gap:20px;
  margin-bottom:70px;
}
.sec-num{
  font-family:'Cairo',sans-serif;
  font-size:.72rem;font-weight:700;
  color:var(--teal-l);letter-spacing:4px;
  opacity:.9;flex-shrink:0;
}
.sec-line{flex:1;height:1px;background:var(--border);max-width:60px}
.sec-title{
  font-family:'Noto Kufi Arabic',serif;
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:900;color:var(--white);
}
.sec-title em{color:var(--gold);font-style:normal}

/* Reveal */
.rev{
  opacity:0;transform:translateY(36px);
  transition:opacity .75s ease,transform .75s ease;
}
.rev.on{opacity:1;transform:none}

@media(max-width:768px){
  .section{padding:70px 24px}
  .sec-title{font-size:1.6rem}
}

/* ======= ABOUT ======= */
.about-section{background:var(--navy2)}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;align-items:start;
}
.about-text p{
  font-size:1.05rem;line-height:2.1;
  color:var(--text);margin-bottom:20px;
}
.about-text p strong{color:var(--gold);font-weight:700}
.gold-line{
  width:60px;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin:30px 0;
}

.exp-cards{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:10px}
.exp-card{
  padding:24px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  position:relative;overflow:hidden;
  transition:border-color .3s;
}
.exp-card::before{
  content:'';position:absolute;top:0;right:0;
  width:2px;height:0;
  background:var(--teal);
  transition:height .4s;
}
.exp-card:hover{border-color:rgba(198,167,94,.35)}
.exp-card:hover::before{height:100%}
.exp-num{
  font-family:'Noto Kufi Arabic',serif;
  font-size:2.6rem;font-weight:900;
  color:var(--teal-l);line-height:1;
  direction:ltr;display:inline-block;
}
.exp-label{
  font-family:'Cairo',sans-serif;font-size:.8rem;font-weight:600;
  color:var(--muted);margin-top:6px;
}

.credentials{margin-top:30px}
.cred-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:12px 0;border-bottom:1px solid rgba(198,167,94,.1);
  font-size:.9rem;color:var(--text);
}
.cred-item:last-child{border:none}
.cred-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);flex-shrink:0;margin-top:6px;
}

@media(max-width:900px){
  .about-grid{grid-template-columns:1fr;gap:40px}
  .exp-cards{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .exp-cards{grid-template-columns:1fr 1fr;gap:12px}
  .exp-card{padding:18px}
  .exp-num{font-size:2rem}
}

/* ======= SKILLS ======= */
.skills-section{background:var(--navy)}
.skills-layout{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.skill-cat{
  padding:36px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.015);
  position:relative;
}
.skill-cat-title{
  font-family:'Noto Kufi Arabic',serif;
  font-size:1.1rem;font-weight:900;
  color:var(--gold);margin-bottom:28px;
  padding-bottom:14px;
  border-bottom:1px solid var(--border);
}
.skill-row{margin-bottom:18px}
.skill-row:last-child{margin-bottom:0}
.skill-hd{
  display:flex;justify-content:space-between;
  margin-bottom:7px;
}
.skill-nm{font-family:'Cairo',sans-serif;font-size:.85rem;font-weight:600;color:var(--text)}
.skill-pct{font-family:'Cairo',sans-serif;font-size:.78rem;color:var(--teal-l);font-weight:700}
.skill-bar{
  height:3px;background:rgba(255,255,255,.06);
  border-radius:2px;overflow:hidden;
}
.skill-fill{
  height:100%;width:0;
  background:linear-gradient(90deg,var(--teal),var(--teal-l));
  border-radius:2px;
  transition:width 1s cubic-bezier(.4,0,.2,1);
}

@media(max-width:900px){.skills-layout{grid-template-columns:1fr}}
@media(max-width:768px){.skills-layout{grid-template-columns:1fr}}

/* ======= SERVICES ======= */
.services-section{background:var(--navy2)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
}
.svc-card{
  padding:40px 32px;
  background:var(--navy3);
  position:relative;overflow:hidden;
  transition:background .3s;
}
.svc-card::after{
  content:'';position:absolute;
  bottom:0;right:0;left:0;height:2px;
  background:linear-gradient(90deg,var(--teal),var(--gold));
  transform:scaleX(0);transform-origin:right;
  transition:transform .4s cubic-bezier(.77,0,.18,1);
}
.svc-card:hover{background:var(--navy4)}
.svc-card:hover::after{transform:scaleX(1)}
.svc-icon{
  font-size:2rem;margin-bottom:16px;display:block;
}
.svc-n{
  font-family:'Cairo',sans-serif;font-size:.68rem;font-weight:700;
  color:var(--teal);letter-spacing:4px;margin-bottom:10px;
}
.svc-title{
  font-family:'Noto Kufi Arabic',serif;
  font-size:1.15rem;font-weight:900;
  color:var(--white);margin-bottom:14px;
}
.svc-desc{font-size:.87rem;color:var(--muted);line-height:1.9}
.svc-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.tag{
  padding:4px 12px;
  border:1px solid rgba(15,118,110,.3);
  font-family:'Cairo',sans-serif;font-size:.72rem;font-weight:600;
  color:var(--teal-l);
}

/* Platforms */
.platforms-wrap{margin-top:80px}
.platforms-title{
  font-family:'Noto Kufi Arabic',serif;font-size:1.4rem;font-weight:900;
  color:var(--white);margin-bottom:8px;
}
.platforms-sub{color:var(--muted);font-size:.88rem;margin-bottom:30px;line-height:1.8}
.platforms-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:2px;
}
.platforms-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:2px;
}
.plt-card{
  padding:24px 16px;text-align:center;
  background:var(--navy3);
  border:1px solid transparent;
  transition:all .3s;
}
.plt-card:hover{border-color:var(--teal);background:var(--navy4)}
.plt-icon{font-size:1.8rem;margin-bottom:10px;display:block}
.plt-name{font-family:'Cairo',sans-serif;font-size:.8rem;font-weight:700;color:var(--text)}
.plt-desc{font-family:'Cairo',sans-serif;font-size:.7rem;color:var(--muted);margin-top:4px;line-height:1.5}

@media(max-width:1000px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .platforms-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .plt-card{padding:20px 12px}
}
@media(max-width:600px){
  .services-grid{grid-template-columns:1fr}
  .platforms-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .plt-card{padding:20px 12px}
  .plt-name{font-size:.82rem}
  .plt-desc{font-size:.72rem}
  .plt-icon{font-size:1.6rem}
}

/* ======= CLIENTS ======= */
.clients-section{
  background:var(--navy2);
  padding:120px 60px;
  position:relative;
}
.sec-subtitle{
  font-family:'Cairo',sans-serif;
  font-size:1rem;
  color:var(--muted);
  margin-top:12px;
  text-align:center;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
.trust-metrics{
  display:flex;
  justify-content:center;
  gap:60px;
  margin:60px 0;
  padding:40px 0;
  border-top:1px solid rgba(198,167,94,0.1);
  border-bottom:1px solid rgba(198,167,94,0.1);
}
.metric{
  text-align:center;
}
.metric-number{
  display:block;
  font-family:'Cairo',sans-serif;
  font-size:2.5rem;
  font-weight:700;
  color:var(--gold);
  line-height:1;
  margin-bottom:8px;
}
.metric-label{
  font-family:'Cairo',sans-serif;
  font-size:0.9rem;
  color:var(--muted);
  font-weight:500;
}
.clients-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-top:60px;
}
.client-card{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:30px 24px;
  background:#FFFFFF;
  border:1px solid #EAEAEA;
  border-radius:12px;
  transition:all 0.3s ease;
  text-decoration:none;
  min-height:140px;
  cursor:pointer;
}
.client-card:hover{
  background:#FFFFFF;
  border-color:#EAEAEA;
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}
.client-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:100px;
  padding:10px 16px;
}
.client-logo-wrap img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transition:all 0.3s ease;
}
.client-card:hover .client-logo-wrap img{
  transform:scale(1.08);
}

/* Marquee tools */
.tools-label{
  font-family:'Noto Kufi Arabic',serif;
  font-size:1.1rem;
  font-weight:700;
  color:var(--gold);
  letter-spacing:2px;
  margin-top:70px;
  margin-bottom:24px;
  padding-top:50px;
  border-top:1px solid var(--border);
  display:block;
}
.marquee-wrap{
  overflow:hidden;position:relative;
  mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent);
}
.marquee{display:flex;gap:12px;animation:marquee 30s linear infinite;width:max-content}
.marquee-wrap:hover .marquee{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tool-pill{
  padding:8px 20px;
  border:1px solid var(--border);
  font-family:'Cairo',sans-serif;font-size:.78rem;font-weight:600;
  color:var(--text);white-space:nowrap;
  transition:all .3s;
  flex-shrink:0;
}
.tool-pill:hover{border-color:var(--gold);color:var(--gold)}

@media(max-width:900px){
  .clients-grid{grid-template-columns:repeat(2,1fr);gap:30px}
  .trust-metrics{gap:40px}
}
@media(max-width:600px){
  .clients-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .client-card{padding:24px 12px;min-height:90px}
  .trust-metrics{flex-direction:column;gap:30px;align-items:center}
  .metric-number{font-size:2rem}
  .clients-section{padding:70px 20px}
}

/* ======= CONTACT ======= */
.contact-section{
  background:var(--navy2);
  padding:110px 60px;
  position:relative;overflow:hidden;
}
.contact-section::before{
  content:'';position:absolute;
  top:0;right:0;bottom:0;width:40%;
  background:linear-gradient(135deg,var(--teal-d),transparent);
}
.contact-section::after{
  content:'تواصل';
  position:absolute;left:-2%;bottom:-10%;
  font-family:'Noto Kufi Arabic',serif;font-size:18rem;font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px rgba(198,167,94,.05);
  pointer-events:none;line-height:1;
}
.contact-inner{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
}
.contact-left h2{
  font-family:'Noto Kufi Arabic',serif;
  font-size:clamp(2rem,4vw,3.2rem);font-weight:900;
  color:var(--white);line-height:1.7;
  margin-bottom:20px;
}
.contact-left h2 em{color:var(--gold);font-style:normal}
.contact-left p{
  font-size:1rem;color:var(--muted);
  line-height:2;margin-bottom:36px;
}
.contact-btns{display:flex;gap:14px;flex-wrap:wrap}
.contact-links{display:flex;flex-direction:column;gap:0}
.contact-link{
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 0;border-bottom:1px solid rgba(198,167,94,.1);
  text-decoration:none;
  transition:all .3s;
}
.contact-link:hover .c-val{color:var(--gold)}
.c-label{font-family:'Cairo',sans-serif;font-size:.78rem;font-weight:700;color:var(--teal-l);letter-spacing:1px;display:flex;align-items:center;gap:8px}
.c-val{font-family:'Cairo',sans-serif;font-size:.92rem;color:var(--text);transition:color .3s;direction:ltr;unicode-bidi:embed}
.c-label-icon{width:16px;height:16px;opacity:.7;flex-shrink:0}

/* ======= FLOATING WHATSAPP ======= */
.whatsapp-float{
  position:fixed;
  bottom:90px;
  right:30px;
  width:54px;height:54px;
  background:#25D366;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  z-index:900;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:all .3s;
  animation:waPulse 2.5s infinite;
}
.whatsapp-float:hover{
  background:#20bc5a;
  transform:scale(1.1);
  box-shadow:0 6px 28px rgba(37,211,102,.6);
  animation:none;
}
.whatsapp-float svg{
  width:28px;height:28px;
  color:#fff;
  flex-shrink:0;
}
@keyframes waPulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,.75),0 0 0 8px rgba(37,211,102,.12)}
}

@media(max-width:600px){
  .whatsapp-float{
    bottom:80px;right:20px;
    width:50px;height:50px;
  }
  .whatsapp-float svg{width:26px;height:26px}
}
.scroll-top{
  position:fixed;bottom:90px;left:30px;
  width:48px;height:48px;
  background:var(--gold);
  border:none;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  opacity:0;visibility:hidden;
  transition:all .3s;
  z-index:800;
  box-shadow:0 4px 20px rgba(198,167,94,.4);
}
.scroll-top.visible{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--gold-l);transform:translateY(-4px);box-shadow:0 8px 28px rgba(198,167,94,.55)}
.scroll-top svg{color:var(--navy);width:22px;height:22px}

/* Hide WordPress theme scroll-to-top */
#topcontrol{display:none !important;}
.ast-scroll-to-top,
#scroll-to-top,
.go-top,#go-top,
.go-to-top,#back-to-top,
.back-to-top{display:none !important;}

@media(max-width:900px){
  .contact-inner{grid-template-columns:1fr;gap:50px}
  .contact-section{padding:70px 24px}
}
@media(max-width:480px){
  .contact-section{padding:60px 20px}
  .contact-inner{gap:40px}
  .contact-link{flex-direction:column;align-items:flex-start;gap:4px;padding:16px 0}
  .c-val{font-size:.82rem;word-break:break-all}
  .contact-btns{flex-direction:column}
  .contact-btns .btn-p,.contact-btns .btn-s{width:100%;justify-content:center}
}

/* ======= SOCIAL ROW ======= */
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.social-btn{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border:1.5px solid rgba(198,167,94,.35);
  border-radius:50%;
  color:var(--gold);
  text-decoration:none;
  transition:all .3s;
  background:rgba(198,167,94,.05);
  flex-shrink:0;
}
.social-btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--navy);
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(198,167,94,.35);
}
.social-btn svg{
  width:18px;height:18px;
  flex-shrink:0;
}

@media(max-width:480px){
  .social-row{flex-wrap:wrap;gap:10px}
  .social-btn{width:38px;height:38px}
  .social-btn svg{width:16px;height:16px}
}
footer{
  background:var(--navy);
  padding:40px 60px;
  display:flex;justify-content:space-between;align-items:center;
  border-top:1px solid var(--border);
}
.foot-logo{
  font-family:'Noto Kufi Arabic',serif;
  font-size:1.3rem;font-weight:900;color:var(--gold);
}
.foot-copy{
  font-family:'Cairo',sans-serif;font-size:.78rem;
  color:var(--muted);
}
@media(max-width:600px){
  footer{flex-direction:column;gap:12px;padding:30px 24px;text-align:center}
}


section,
.section,
.wpb_row,
.container,
.main-content,
.page-content {
  border: none !important;
  border-top: none !important;
  box-shadow: none !important;
}


