:root{
  --navy:#0b2545;
  --navy-dark:#071a33;
  --gold:#c9a227;
  --gold-light:#e4c766;
  --bg:#f7f6f3;
  --white:#ffffff;
  --text:#1c1c1c;
  --muted:#5b6472;
  --border:#e4e1da;
  --radius:14px;
  --shadow:0 10px 30px rgba(11,37,69,0.08);
}

*{box-sizing:border-box;margin:0;padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:"Rubik","Assistant",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  direction:rtl;
}

a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{list-style:none;}

.container{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}

/* Top utility bar */
.topbar{
  background:var(--navy-dark);
  color:#dfe6f0;
  font-size:14px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{opacity:.9;}
.topbar a:hover{opacity:1;color:var(--gold-light);}
.topbar-links{display:flex;gap:20px;flex-wrap:wrap;}

/* Header / nav */
header.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img.logo-img{
  height:44px;
  width:auto;
}
.brand .brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand strong{font-size:20px;color:var(--navy);}
.brand span{font-size:12px;color:var(--muted);}
.brand-text-tag{
  font-size:12px;
  color:var(--muted);
  border-right:1px solid var(--border);
  padding-right:12px;
}

.footer-logo{height:38px;width:auto;margin-bottom:14px;filter:brightness(0) invert(1);opacity:.9;}

/* About / person section */
.about-person{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:48px;
  align-items:center;
}
.about-photo-wrap{
  position:relative;
}
.about-photo-wrap img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow);
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:top center;
}
.about-photo-badge{
  position:absolute;
  bottom:-18px;
  right:-18px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:14px 18px;
  text-align:center;
}
.about-photo-badge strong{display:block;font-size:22px;color:var(--navy);}
.about-photo-badge span{font-size:11.5px;color:var(--muted);}
.about-text h2{color:var(--navy);font-size:28px;margin-bottom:14px;}
.about-text p{color:var(--muted);margin-bottom:16px;}
.about-credentials{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:20px 0 26px;
}
.about-credentials li{
  display:flex;gap:8px;align-items:center;
  font-size:14px;color:var(--text);
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px 14px;
}
.about-credentials li::before{content:"⚖️";}
@media (max-width:900px){
  .about-person{grid-template-columns:1fr;}
  .about-photo-wrap{max-width:320px;margin:0 auto;}
}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.testimonial-stars{color:var(--gold);font-size:15px;margin-bottom:12px;letter-spacing:2px;}
.testimonial-text{font-size:14.5px;color:var(--text);margin-bottom:16px;min-height:70px;}
.testimonial-author{display:flex;align-items:center;gap:10px;}
.testimonial-avatar{
  width:38px;height:38px;border-radius:50%;
  background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:15px;flex:none;
}
.testimonial-name{font-weight:700;color:var(--navy);font-size:14px;}
.testimonial-sub{font-size:12px;color:var(--muted);}
@media (max-width:960px){.testimonials-grid{grid-template-columns:1fr;}}
nav.main-nav ul{
  display:flex;
  gap:28px;
}
nav.main-nav a{
  font-size:15px;
  font-weight:500;
  color:var(--navy);
  padding:6px 0;
  border-bottom:2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active{
  border-bottom-color:var(--gold);
}
.header-cta{
  display:flex;
  gap:10px;
  align-items:center;
}
.menu-toggle{display:none;background:none;border:none;font-size:26px;color:var(--navy);cursor:pointer;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:10px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px);}
.btn-gold{background:var(--gold);color:var(--navy-dark);}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{background:transparent;border-color:var(--white);color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.btn-navy{background:var(--navy);color:#fff;}
.btn-navy:hover{background:var(--navy-dark);}
.btn-wa{background:#25D366;color:#fff;}
.btn-wa:hover{background:#1ebd59;}
.btn-block{width:100%;}

/* Hero */
.hero{
  background:linear-gradient(135deg,var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  padding:64px 0 80px;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(201,162,39,.18), transparent 45%);
}
.hero .container{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
  position:relative;
}
.eyebrow{
  display:inline-block;
  background:rgba(201,162,39,.15);
  color:var(--gold-light);
  border:1px solid rgba(201,162,39,.4);
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}
.hero h1{
  font-size:40px;
  line-height:1.25;
  margin-bottom:18px;
}
.hero h1 span{color:var(--gold-light);}
.hero p.lead{
  font-size:17px;
  color:#cdd8e8;
  margin-bottom:28px;
  max-width:520px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:30px;}
.hero-trust{display:flex;gap:26px;flex-wrap:wrap;}
.hero-trust div{font-size:13px;color:#b9c6db;}
.hero-trust strong{display:block;font-size:22px;color:#fff;font-weight:700;}

/* Quote card in hero */
.quote-card{
  background:var(--white);
  color:var(--text);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
}
.quote-card h3{
  color:var(--navy);
  font-size:19px;
  margin-bottom:6px;
}
.quote-card p.small{
  color:var(--muted);
  font-size:13.5px;
  margin-bottom:18px;
}

/* Sections */
section{padding:70px 0;}
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 44px;
}
.section-head .tag{
  color:var(--gold);
  font-weight:700;
  font-size:13px;
  letter-spacing:.5px;
  text-transform:uppercase;
  display:block;
  margin-bottom:10px;
}
.section-head h2{
  font-size:30px;
  color:var(--navy);
  margin-bottom:12px;
}
.section-head p{color:var(--muted);font-size:16px;}

/* Services grid */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.card .icon{
  width:52px;height:52px;
  border-radius:12px;
  background:rgba(11,37,69,.06);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  margin-bottom:16px;
}
.card h3{color:var(--navy);font-size:19px;margin-bottom:10px;}
.card p{color:var(--muted);font-size:14.5px;}
.card a.more{display:inline-block;margin-top:14px;color:var(--navy);font-weight:700;font-size:14px;border-bottom:2px solid var(--gold);}

.card.highlight{
  border:2px solid var(--gold);
  position:relative;
}
.badge{
  position:absolute;
  top:-13px;
  right:20px;
  background:var(--gold);
  color:var(--navy-dark);
  font-size:12px;
  font-weight:700;
  padding:4px 12px;
  border-radius:999px;
}

/* Coverage / how it works */
.bg-navy{background:var(--navy);color:#fff;}
.bg-navy .section-head h2{color:#fff;}
.bg-navy .section-head p{color:#c3cee2;}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.step{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:24px 20px;
  text-align:center;
}
.step .num{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy-dark);
  font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
}
.step h4{font-size:16px;margin-bottom:8px;}
.step p{font-size:13.5px;color:#c3cee2;}

/* Coverage map style block */
.coverage-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.coverage-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom:14px;
  font-size:15px;
}
.coverage-list li::before{
  content:"✓";
  color:var(--gold);
  font-weight:800;
  background:rgba(201,162,39,.15);
  width:22px;height:22px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;
  flex:none;
  margin-top:2px;
}

/* Languages pills */
.pills{display:flex;flex-wrap:wrap;gap:10px;}
.pill{
  background:var(--white);
  border:1px solid var(--border);
  padding:9px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:var(--navy);
}

/* Quote / upload form */
.quote-section{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:40px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
}
.quote-section h2{color:var(--navy);font-size:26px;margin-bottom:14px;}
.quote-section p{color:var(--muted);margin-bottom:18px;}
.quote-benefits li{
  display:flex;gap:10px;margin-bottom:12px;font-size:14.5px;color:var(--text);
}
.quote-benefits li::before{
  content:"◆";
  color:var(--gold);
  font-size:12px;
  margin-top:4px;
}
form.quote-form{display:grid;gap:14px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
label{font-size:13.5px;font-weight:600;color:var(--navy);margin-bottom:6px;display:block;}
input[type=text],input[type=tel],input[type=email],select,textarea{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--border);
  border-radius:10px;
  font-family:inherit;
  font-size:14.5px;
  background:#fcfcfb;
}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--gold);}
textarea{min-height:80px;resize:vertical;}

.upload-box{
  border:2px dashed var(--border);
  border-radius:12px;
  padding:22px;
  text-align:center;
  background:#fcfcfb;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease;
}
.upload-box.dragover{border-color:var(--gold);background:#fff8e8;}
.upload-box .u-icon{font-size:26px;margin-bottom:8px;}
.upload-box strong{color:var(--navy);}
.upload-box span{display:block;font-size:12.5px;color:var(--muted);margin-top:4px;}
#file-list{margin-top:10px;font-size:13px;color:var(--navy);text-align:right;}
#file-list div{padding:4px 0;border-bottom:1px solid var(--border);}

.form-note{font-size:12.5px;color:var(--muted);}

/* Testimonials / trust strip */
.trust-strip{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:24px;
  padding:26px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--white);
}
.trust-strip div{text-align:center;}
.trust-strip strong{display:block;font-size:24px;color:var(--navy);}
.trust-strip span{font-size:13px;color:var(--muted);}

/* FAQ */
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
}
.faq-q{
  padding:18px 22px;
  font-weight:700;
  color:var(--navy);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-q .arrow{transition:transform .2s ease;color:var(--gold);}
.faq-item.open .faq-q .arrow{transform:rotate(180deg);}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
  padding:0 22px;
  color:var(--muted);
  font-size:14.5px;
}
.faq-item.open .faq-a{max-height:300px;padding-bottom:18px;}

/* CTA band */
.cta-band{
  background:linear-gradient(120deg,var(--navy),var(--navy-dark));
  color:#fff;
  border-radius:20px;
  padding:44px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}
.cta-band h3{font-size:24px;margin-bottom:8px;}
.cta-band p{color:#c3cee2;}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;}

/* Footer */
footer{
  background:var(--navy-dark);
  color:#c3cee2;
  padding:50px 0 24px;
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}
.footer-grid h4{color:#fff;font-size:15px;margin-bottom:14px;}
.footer-grid li{margin-bottom:9px;}
.footer-grid a:hover{color:var(--gold-light);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:12.5px;
  color:#8fa0bb;
}

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  bottom:24px;
  left:24px;
  background:#25D366;
  color:#fff;
  width:58px;height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 8px 20px rgba(37,211,102,.4);
  z-index:200;
}

/* Responsive */
@media (max-width:960px){
  .hero .container{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr 1fr;}
  .quote-section{grid-template-columns:1fr;padding:26px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .coverage-wrap{grid-template-columns:1fr;}
}
@media (max-width:680px){
  .topbar .container{padding-top:6px;padding-bottom:6px;font-size:12px;}
  .topbar-links{gap:10px;}
  .topbar-links span{display:none;}
  .topbar .container > .topbar-links:last-child{display:none;}
  nav.main-nav{
    position:fixed;
    top:0;right:0;bottom:0;
    width:78%;
    background:var(--white);
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
    transform:translateX(100%);
    transition:transform .25s ease;
    padding:90px 26px 26px;
    z-index:150;
  }
  nav.main-nav.open{transform:translateX(0);}
  nav.main-nav ul{flex-direction:column;gap:18px;}
  .menu-toggle{display:block;}
  .header-cta .btn{display:none;}
  .header-cta{gap:8px;}
  .brand-text-tag{display:none;}
  .brand img.logo-img{height:34px;}
  .grid-3{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .hero h1{font-size:30px;}
  .cta-band{flex-direction:column;text-align:center;}
  .trust-strip{gap:14px;}
}
