/* ========================================================
   AGAT HANDASA — Main Stylesheet
   ======================================================== */

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

:root {
  --navy:   #0A1628;
  --navy2:  #112035;
  --dark:   #071223;
  --gold:   #C8A876;
  --light:  #F5F4F2;
  --border: #E5E2DC;
  --white:  #ffffff;
  --text:   #111111;
  --muted:  #666666;
  --green:  #2D6A4F;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
input, textarea, button { font-family: inherit; }

/* ── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── NAVIGATION ──────────────────────────────────────── */
.nav {
  height: 64px;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  list-style: none;
  height: 64px;
}
.nav-links li a {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 12px;
  padding: 0 16px;
  height: 100%;
  letter-spacing: .5px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-lang { font-size: 11px; color: #999; letter-spacing: 1px; }
.nav-lang a { color: #999; margin: 0 3px; transition: color .15s; }
.nav-lang a:hover, .nav-lang a.active { color: var(--navy); font-weight:700; }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 9px 22px;
  letter-spacing: .5px;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.03); }
.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 3rem 4rem;
  max-width: 800px;
}
.hero-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}
.hero p {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: .75rem; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  padding: 12px 30px;
  letter-spacing: .5px;
  transition: opacity .15s;
  display: inline-block;
}
.btn-gold:hover { opacity: .85; }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  font-size: 11.5px;
  padding: 12px 30px;
  letter-spacing: .5px;
  transition: border-color .15s, color .15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.8); color: var(--white); }

/* Hero sector strip */
.hero-sectors {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,22,40,.88);
  display: flex;
  z-index: 3;
}
.hs {
  flex: 1;
  padding: 12px 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.hs:last-child { border-right: none; }
.hs:hover { background: rgba(200,168,118,.12); }
.hs-num { font-size: 9px; color: var(--gold); letter-spacing: 1px; margin-bottom: 2px; }
.hs-name { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .3px; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats {
  background: var(--light);
  display: flex;
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-n sup { font-size: 22px; color: var(--gold); vertical-align: super; }
.stat-l {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .3rem;
}

/* ── ABOUT SPLIT ─────────────────────────────────────── */
.about-split {
  display: flex;
  min-height: 340px;
}
.about-photo {
  width: 44%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.about-text {
  flex: 1;
  padding: 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.about-text p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: .8rem;
}
.link-more {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: .75rem;
  transition: opacity .15s;
}
.link-more:hover { opacity: .7; }

/* ── SECTORS GRID ────────────────────────────────────── */
.sectors-section {
  padding: 4.5rem 3rem;
  background: var(--navy);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.4px;
}
.section-header a {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.sc {
  background: var(--navy);
  padding: 2.25rem 1.75rem;
  cursor: pointer;
  transition: background .2s;
  position: relative;
  text-decoration: none;
  display: block;
}
.sc:hover { background: var(--navy2); }
.sc-num {
  font-size: 11px;
  color: rgba(255,255,255,.18);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: .8rem;
  display: block;
}
.sc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.25;
}
.sc-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.sc-arrow {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.sc:hover .sc-arrow { opacity: 1; transform: translateX(3px); }

/* ── PROJECTS GRID ───────────────────────────────────── */
.projects-section {
  padding: 4.5rem 3rem;
  background: var(--light);
}
.section-header-light {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: .75rem;
}
.section-header-light h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.4px;
}
.section-header-light a {
  font-size: 10px;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
}
.proj-filters {
  display: flex;
  gap: .3rem;
  margin-bottom: 2rem;
}
.pf {
  font-size: 11px;
  padding: 5px 15px;
  border: 1px solid #ccc;
  color: #777;
  cursor: pointer;
  letter-spacing: .3px;
  background: var(--white);
  transition: all .15s;
}
.pf:hover { border-color: var(--navy); color: var(--navy); }
.pf.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.proj-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 2px;
}
.proj-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.proj-img-wrap {
  position: relative;
  overflow: hidden;
}
.proj-img-wrap img {
  transition: transform .4s ease;
}
.proj-card:hover .proj-img-wrap img { transform: scale(1.04); }
.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.5);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-card:hover .proj-overlay { opacity: 1; }
.view-label {
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.proj-body { padding: .9rem 1rem; }
.proj-cats { display: flex; gap: .3rem; margin-bottom: .4rem; }
.proj-cat {
  font-size: 9px;
  background: #EAE7E1;
  color: var(--navy);
  padding: 2px 8px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.proj-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: .3rem;
}
.proj-meta {
  font-size: 11px;
  color: #999;
  display: flex;
  gap: .75rem;
}
.proj-status-done { color: var(--green); font-weight: 600; }

/* ── CLIENTS ─────────────────────────────────────────── */
.clients-section {
  padding: 3rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.clients-section h2 {
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
  margin-bottom: 1.75rem;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}
.client-cell {
  padding: .6rem 1.5rem;
  background: var(--light);
  font-size: 10.5px;
  color: #666;
  font-weight: 600;
  letter-spacing: .3px;
  text-align: center;
  transition: background .15s, color .15s;
  cursor: default;
}
.client-cell:hover { background: var(--navy); color: var(--white); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section { display: flex; }
.contact-info {
  flex: 1;
  background: var(--navy);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.3px;
}
.ci-row {
  display: flex;
  gap: .85rem;
  margin-bottom: .9rem;
  align-items: flex-start;
}
.ci-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  width: 55px;
  flex-shrink: 0;
  padding-top: .15rem;
}
.ci-val {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.contact-form-wrap {
  flex: 1;
  background: var(--white);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.cf-row {
  display: flex;
  gap: .5rem;
  margin-bottom: .5rem;
}
.cf-row input {
  flex: 1;
  padding: .65rem .9rem;
  border: 1px solid #D8DDE5;
  font-size: 12.5px;
  background: #F9FAFC;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.cf-row input:focus { border-color: var(--navy); background: var(--white); }
.cf-textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid #D8DDE5;
  font-size: 12.5px;
  resize: none;
  height: 72px;
  margin-bottom: .6rem;
  background: #F9FAFC;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.cf-textarea:focus { border-color: var(--navy); background: var(--white); }
.cf-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: .75rem 2.25rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}
.cf-submit:hover { background: var(--navy2); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer p { color: rgba(255,255,255,.25); font-size: 11px; }
.footer-links a {
  color: rgba(255,255,255,.25);
  font-size: 11px;
  margin-left: 1.75rem;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ── INNER PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: rgba(200,168,118,.05);
}
.page-hero .breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
  letter-spacing: .5px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
  line-height: 1.15;
  max-width: 580px;
}

/* ── CONTENT SECTIONS ────────────────────────────────── */
.content-section {
  padding: 4rem 3rem;
  background: var(--white);
}
.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.3px;
}
.content-section p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: .85rem;
  max-width: 720px;
}

/* Services list */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--light);
  padding: 2rem 2rem;
  border-left: 3px solid var(--gold);
}
.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

/* Projects full grid */
.projects-full {
  padding: 3rem;
  background: var(--light);
}
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1.5rem;
}

/* ── RESPONSIVE BASICS ───────────────────────────────── */
@media (max-width: 900px) {
  .hero h1 { font-size: 28px; }
  .nav-links { display: none; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .proj-grid { grid-template-columns: 1fr; }
  .about-split { flex-direction: column; }
  .about-photo { width: 100%; height: 250px; }
  .contact-section { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: repeat(2,1fr); }
}

/* White nav border */
.nav { border-bottom: 1px solid #E5E2DC; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.nav-cta { background: var(--navy); color: var(--white); }
.nav-cta:hover { background: var(--navy2); opacity: 1; }

/* Lang switcher for white nav */
.nav-lang a { color: #888; }
.nav-lang a.active { color: var(--navy); font-weight:700; }
.nav-lang a:hover { color: var(--navy); }

/* Simplified project cards */
.pc2-simple { background: var(--white); overflow: hidden; cursor: pointer; position: relative; }
.pc2-simple .proj-img-wrap { height: 220px; position: relative; overflow: hidden; }
.pc2-simple .proj-img-wrap img { transition: transform .4s ease; height: 100%; }
.pc2-simple:hover .proj-img-wrap img { transform: scale(1.06); }
.pc2-simple .proj-name-bar {
  padding: .75rem 1rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.pc2-simple .proj-cat-tag {
  display: inline-block;
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .2rem;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 999;
  border-radius: 2px;
}
.back-top.visible { opacity: 1; }
.back-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.fade-in.visible { opacity: 1; transform: none; }

/* Footer fix */
