:root{
  --ink:#142027;
  --muted:#5b6b76;
  --brand:#2f4b5a;
  --accent:#b07a4a;
  --green:#78965d;
  --bg:#f7f8f5;
  --card:#ffffff;
  --line:rgba(20,32,39,.10);
  --shadow:0 14px 40px rgba(20,32,39,.10);
  --shadow2:0 10px 25px rgba(20,32,39,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Cairo, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.85;
}

img{max-width:100%;display:block}
a{color:inherit}

.container{
  max-width:1120px;
  margin:auto;
  padding:70px 20px;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{display:flex;align-items:center;text-decoration:none}
.logo{width:120px;height:auto}

.header-logo-only{justify-content:flex-start}
.logo-small{width:96px}

.nav{display:flex;align-items:center;gap:18px}
.nav a{
  text-decoration:none;
  color:var(--brand);
  font-weight:700;
  font-size:15px;
  padding:10px 12px;
  border-radius:12px;
}
.nav a:hover{background:rgba(47,75,90,.07)}

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

.pill{
  text-decoration:none;
  border:1px solid rgba(176,122,74,.25);
  background:rgba(176,122,74,.08);
  color:var(--brand);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 20px rgba(20,32,39,.06);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px;
  height:2px;
  background:var(--brand);
  margin:4px auto;
  border-radius:2px;
}

/* Mobile menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:rgba(20,32,39,.35);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:18px;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.mobile-menu.open{opacity:1; pointer-events:auto}
.mobile-menu-card{
  width:min(520px, 96vw);
  background:var(--card);
  border-radius:22px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  overflow:hidden;
  transform:translateY(-6px);
  transition:transform .18s ease;
}
.mobile-menu.open .mobile-menu-card{transform:translateY(0)}
.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px 10px;
  border-bottom:1px solid var(--line);
}
.mobile-logo{width:175px;height:auto}
.close-btn{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:26px;
  line-height:0;
  color:var(--brand);
}
.mobile-links{padding:10px 14px 16px;display:grid;gap:10px}
.mobile-links a{
  text-decoration:none;
  font-weight:800;
  color:var(--brand);
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(47,75,90,.12);
  background:rgba(47,75,90,.05);
}
.mobile-links a:hover{background:rgba(47,75,90,.08)}
.mobile-call{
  border-color:rgba(176,122,74,.25)!important;
  background:rgba(176,122,74,.10)!important;
}
.no-scroll{overflow:hidden}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding-top:34px;
}
.hero .container{padding-top:62px;padding-bottom:70px}

.hero:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height:520px;
  background:
    radial-gradient(closest-side at 20% 40%, rgba(120,150,93,.20), rgba(120,150,93,0)),
    radial-gradient(closest-side at 80% 50%, rgba(176,122,74,.18), rgba(176,122,74,0)),
    linear-gradient(180deg, #ffffff, rgba(247,248,245,0));
  pointer-events:none;
}

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(47,75,90,.12);
  background:rgba(255,255,255,.65);
  color:var(--brand);
  font-weight:800;
  font-size:14px;
}

.hero h1{
  margin:16px 0 10px;
  font-size:40px;
  line-height:1.3;
  color:var(--ink);
}

.hero p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  max-width:52ch;
}

.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  box-shadow:0 10px 22px rgba(20,32,39,.10);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(20,32,39,.12)}

.btn{background:linear-gradient(135deg, var(--brand), #223a46); color:#fff}
.btn.ghost{
  background:rgba(255,255,255,.75);
  border-color:rgba(47,75,90,.18);
  color:var(--brand);
  box-shadow:none;
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

.chip{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  min-width:170px;
  box-shadow:var(--shadow2);
}
.chip span{display:block;color:var(--muted);font-weight:700;font-size:13px}
.chip strong{display:block;color:var(--ink);font-weight:900;font-size:16px}

.hero-visual{
  display:flex;
  justify-content:flex-start;
}

.hero-card{
  width:100%;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(47,75,90,.12);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:26px;
  position:relative;
  overflow:hidden;
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background:linear-gradient(135deg, rgba(120,150,93,.35), rgba(176,122,74,.30));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.hero-mark{width:100%;max-width:360px;margin:auto;filter:drop-shadow(0 14px 30px rgba(20,32,39,.10))}

.hero-lines{
  position:absolute;
  inset:auto -40px -60px -40px;
  height:160px;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(120,150,93,.22), rgba(120,150,93,0)),
    radial-gradient(closest-side at 70% 60%, rgba(176,122,74,.22), rgba(176,122,74,0));
  transform:skewY(-6deg);
}

/* Sections */
#about,#services,#contact{scroll-margin-top:110px}

.section{background:transparent}
.section.alt{background:rgba(255,255,255,.55); border-top:1px solid rgba(20,32,39,.06); border-bottom:1px solid rgba(20,32,39,.06)}

.section h2{
  margin:0 0 10px;
  font-size:28px;
  color:var(--ink);
}

.section h2::after{
  content:"";
  display:block;
  width:64px;
  height:4px;
  border-radius:999px;
  margin-top:10px;
  background:linear-gradient(90deg, var(--green), var(--accent));
  opacity:.9;
}

.section h2:after{
  content:"";
  display:block;
  width:68px;
  height:4px;
  border-radius:999px;
  margin-top:10px;
  background:linear-gradient(90deg, var(--green), var(--accent));
  opacity:.95;
}

.section-head{max-width:780px;margin-bottom:18px}
.section-head p{margin:0;color:var(--muted)}

.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:start;
}

.ticks{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.ticks li{
  position:relative;
  padding-right:30px;
  color:var(--muted);
  font-weight:700;
}
.ticks li:before{
  content:"✓";
  position:absolute;
  right:0;
  top:0;
  color:var(--green);
  font-weight:900;
}

.stats{display:grid;gap:12px}
.stat{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px 16px;
  box-shadow:var(--shadow2);
}
.stat-title{color:var(--muted);font-weight:800;font-size:13px}
.stat-value{color:var(--ink);font-weight:900;font-size:16px}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 18px 16px;
  box-shadow:var(--shadow2);
  transition:transform .15s ease, box-shadow .15s ease;
}
.card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.card h3{margin:10px 0 6px;font-size:18px;color:var(--ink)}
.card p{margin:0;color:var(--muted)}

.icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(47,75,90,.08);
  color:var(--brand);
  border:1px solid rgba(47,75,90,.12);
}
.icon svg{width:24px;height:24px}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.form{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow2);
}

.form h2{margin:0 0 12px}

.form input,.form textarea{
  width:100%;
  margin-bottom:12px;
  padding:12px 12px;
  border:1px solid rgba(20,32,39,.14);
  border-radius:14px;
  font-family:inherit;
  font-size:15px;
  outline:none;
  background:#fff;
}

.form input:focus,.form textarea:focus{border-color:rgba(47,75,90,.35); box-shadow:0 0 0 4px rgba(47,75,90,.08)}
.form textarea{min-height:140px;resize:vertical}

.form button{
  width:100%;
  background:linear-gradient(135deg, var(--accent), #8d5f38);
  color:#fff;
  border:none;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 25px rgba(176,122,74,.24);
}
.form button:hover{filter:brightness(1.02)}

.contact-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow2);
  margin-bottom:14px;
}
.contact-card h3{margin:0 0 10px;font-size:18px}

.contact-row{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px dashed rgba(20,32,39,.12)}
.contact-row:last-of-type{border-bottom:none}
.label{color:var(--muted);font-weight:800}
.value{font-weight:900;color:var(--brand)}
.value a{text-decoration:none}
.value a:hover{text-decoration:underline}
.note{margin-top:10px;color:var(--muted);font-weight:700}

.map iframe{
  width:100%;
  height:360px;
  border:0;
  border-radius:24px;
  box-shadow:var(--shadow2);
}

/* Footer */
.footer{
  background:rgba(255,255,255,.85);
  border-top:1px solid var(--line);
  padding:22px 16px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
}

/* Responsive */
@media(max-width: 980px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-visual{order:-1}
  .hero-card{padding:18px}
  .hero h1{font-size:34px}
  .split{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex;flex-direction:column;justify-content:center}
  .logo{width:110px}
}

@media(max-width: 420px){
  .pill{display:none}
  .hero h1{font-size:30px}
  .chip{min-width:150px}
}

@media (max-width: 900px){
  .logo-small{width:84px}
}
