/* =============================================
   ProTadilat — Sharp Editorial Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #f5f3ef;
  color: #0f0f0f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── Tokens ─────────────────────────────── */
:root {
  --ink: #0f0f0f;
  --ink-2: #3a3a3a;
  --ink-3: #6b6b6b;
  --bg: #f5f3ef;
  --bg-alt: #ede9e3;
  --bg-dark: #0f0f0f;
  --accent: #e05c2e;        /* warm orange – bold accent */
  --accent-2: #c44d22;
  --border: #d6d0c8;
  --r: 0px;                  /* all corners sharp = 0 */
  --trans: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ─── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink); }

/* ─── Utilities ───────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.section__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 32px;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.section__head .section__title { margin-bottom: 0; }
.section__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color var(--trans);
}
.section__link:hover { color: var(--accent); }

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: #2a2a2a; border-color: #2a2a2a; transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--white:hover { background: var(--bg-alt); border-color: var(--bg-alt); }
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), background var(--trans);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.logo__text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 16px;
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  margin-left: 8px;
  transition: background var(--trans);
}
.nav__cta:hover { background: var(--accent-2); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: var(--trans);
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 68px;
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px 40px;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.hero__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 28px;
  overflow-wrap: break-word;
  word-break: normal;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  display: inline;
}
.stat__suf {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}
.stat__lbl {
  font-size: 0.75rem;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.stat__div { width: 1px; height: 44px; background: var(--border); }

.hero__right {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.hero__img-wrap {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__pill {
  position: absolute;
  bottom: 32px; left: 32px;
  background: #fff;
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.pill__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── MARQUEE ─────────────────────────────── */
.marquee {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee-run 28s linear infinite;
}
.marquee__track span {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.marquee__track span[aria-hidden]:not(:last-child) {
  color: var(--accent);
  font-size: 0.9rem;
}
@keyframes marquee-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICES ─────────────────────────────── */
.services { background: #fff; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.svc {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--trans);
  cursor: default;
}
.svc:hover { background: var(--bg); }
.svc--accent { background: var(--ink); color: #fff; }
.svc--accent .svc__num,
.svc--accent .svc__title { color: #fff; }
.svc--accent .svc__desc,
.svc--accent .svc__list li { color: rgba(255,255,255,0.65); }
.svc--accent .svc__line { background: var(--accent); }
.svc--accent:hover { background: #1a1a1a; }

.svc__num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.svc__line {
  width: 32px; height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
  transition: width var(--trans);
}
.svc:hover .svc__line { width: 56px; }
.svc__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc__desc {
  font-size: 0.83rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc__list { display: flex; flex-direction: column; gap: 6px; }
.svc__list li {
  font-size: 0.8rem;
  color: var(--ink-3);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.svc__list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 0.65rem;
  top: 2px;
}

/* ─── ABOUT ─────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about__img-col {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--accent);
  color: #fff;
  padding: 28px 32px;
  min-width: 200px;
}
.badge__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.badge__sub { font-size: 0.8rem; opacity: 0.85; }
.about__content {
  background: var(--bg);
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__text {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 40px;
}
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

/* ─── REGIONS ────────────────────────────────── */
.regions { background: var(--bg-alt); }
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.region {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
  position: relative;
  overflow: hidden;
}
.region::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.region:hover { background: #fff; }
.region:hover::after { width: 100%; }
.region__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.region__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1;
}
.region__desc {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ─── WHY ─────────────────────────────────────── */
.why { background: #fff; }
.why__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.why__left { position: sticky; top: 100px; }
.why__sub {
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 36px;
}
.why__items { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.why-item:first-child { border-top: 1px solid var(--border); padding-top: 32px; }
.why-item:hover { background: var(--bg); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.wi__num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}
.wi__body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.wi__body p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ─── CTA STRIP ──────────────────────────────── */
.cta-strip {
  background: var(--ink);
  padding: 64px 0;
}
.cta-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.cta-strip__text p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.cta-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── CONTACT ─────────────────────────────────── */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__sub {
  font-size: 0.97rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cinfo {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo:first-of-type { border-top: 1px solid var(--border); }
.cinfo__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.cinfo__val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  transition: color var(--trans);
}
a.cinfo__val:hover { color: var(--accent); }

/* ─── FORM ────────────────────────────────────── */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fg input,
.fg select,
.fg textarea {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  width: 100%;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--ink-3); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.fg select { cursor: pointer; }
.fg textarea { resize: vertical; min-height: 110px; }
.form__success {
  background: #f0faf4;
  border: 1px solid #a8dbbf;
  color: #1a6e3c;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand .logo__mark { background: var(--accent); }
.footer__brand .logo__text { color: #fff; }
.footer__brand p { font-size: 0.87rem; line-height: 1.6; }
.footer__regions { margin-top: 6px; font-size: 0.78rem; opacity: 0.45; }
.footer__col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 { margin-bottom: 8px; }
.footer__col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ─── WhatsApp Float ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ─── Reveal animation ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .why__left { position: static; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 60px 28px; margin: 0; max-width: 100%; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .hero__right { height: 420px; }
  .about { grid-template-columns: 1fr; }
  .about__img-col { height: 400px; }
  .about__content { padding: 56px 28px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 32px; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .svc-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 20px; }
  .contact__form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat__div { width: 40px; height: 1px; }
  .hero__actions { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
