:root{
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #4b4b4b;
  --border: #e9e9e9;
  /* UAE-ish neon green accent from your reference */
  --accent: #C8FF2E;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header{
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo{
  height: 60px;
  width: auto;
  display: block;
}

.brand-name{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-link{
  font-weight: 500;
  color: var(--text);
  opacity: 0.9;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--text);
  text-decoration: none !important;
  cursor: pointer;
}

.btn-outline{
  background: #fff;
  color: var(--text);
}

.btn-primary{
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-primary:hover{
  text-decoration: none;
  filter: brightness(1.02);
}

/* Hero */
.hero{
  padding: 54px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-title{
  margin: 0 0 14px;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(36px, 5vw, 62px);
}

.hero-subtitle{
  margin: 0 0 22px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hl{
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note{
  color: var(--muted);
  font-size: 14px;
}

/* Illustration */
.art{
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
  display: grid;
  place-items: center;
}

.orbit{
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 65% 45%, rgba(200,255,46,0.18), transparent 45%),
    radial-gradient(circle at 35% 60%, rgba(0,0,0,0.06), transparent 45%);
}

.megaphone{
  width: min(520px, 100%);
  height: auto;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 18px 0;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-right{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-right a{
  color: var(--muted);
}

/* Responsive */
@media (max-width: 920px){
  .hero{
    grid-template-columns: 1fr;
  }
  .art{
    min-height: 320px;
  }
}

/* Hero image */
.hero-image-wrap{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Active nav state */
.nav-active{
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

/* About/Policy shared sections */
.page-hero{
  padding: 44px 0 18px;
}

.page-title{
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(32px, 4.5vw, 52px);
}

.page-subtitle{
  margin: 0 0 14px;
  max-width: 70ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.pill-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  background: #fff;
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.panel{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}

.panel-accent{
  background: linear-gradient(0deg, rgba(200,255,46,0.10), rgba(255,255,255,1));
}

.verify{
  margin-top: 28px;
}

.policy{
  padding-bottom: 40px;
}

.policy-meta{
  margin: 10px 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.cta{
  margin: 10px 0 50px;
}

.cta-box{
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* existing helpers (in case not present) */
.muted{ color: var(--muted); }
.list{ padding-left: 18px; }

/* Responsive */
@media (max-width: 920px){
  .two-col{ grid-template-columns: 1fr; }
  .cta-box{ justify-content: flex-start; }
}

.company-details{
  margin-top: 40px;
  padding-bottom: 10px;
}

.company-details h3{
  font-size: 16px;
  margin: 0 0 8px;
}

.company-details p{
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Contact Us Form Modern Style ===== */
.company-intro{
  padding: 40px 0 16px;
  text-align: center;
}

.company-intro .company-block{
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-form-section{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 24px 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-modern-form .field-group{
  margin-bottom: 18px;
}

.contact-modern-form label{
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-modern-form input,
.contact-modern-form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: #fafafa;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus{
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.form-submit{
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  margin-top: 12px;
  cursor: pointer;
}

.form-status{
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 780px){
  .contact-form-section{
    padding: 24px 18px;
  }
}

/* Company Info (Contact Page) */
.company-intro{
  padding: 48px 0 24px;
  display: flex;
  justify-content: center;
}

.company-card{
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.company-details{
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
}

.company-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 10px 0;
  text-align: left;
}

.company-row:not(:last-child){
  border-bottom: 1px solid var(--border);
}

.company-label{
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-value{
  font-size: 15px;
  color: var(--text);
}

.company-value a{
  font-weight: 700;
  text-decoration: none;
}

.company-value a:hover{
  text-decoration: underline;
}
