/* ═══════════════════════════════════════════════════
   WPS GROUP LLC — SHARED STYLESHEET
   Used across: Home, About, Services, Contact
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --red:       #c0392b;
  --red-dark:  #9b2e22;
  --red-light: #fdf1ef;
  --charcoal:  #232323;
  --dark:      #141414;
  --mid:       #505050;
  --muted:     #8a8a8a;
  --light:     #f8f6f4;
  --border:    #e8e3de;
  --white:     #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.09); }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--mid);
  text-decoration: none; letter-spacing: .7px; text-transform: uppercase;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 10px 28px; border-radius: 5px; font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-2px) !important; }
.nav-cta.active { background: var(--red-dark) !important; }

/* ── TICKER ── */
.ticker { background: var(--red); overflow: hidden; padding: 12px 0; }
.ticker-track {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.88);
}
.ticker-dot { color: rgba(255,255,255,.4); font-size: 14px; }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-banner {
  padding-top: 78px;
  min-height: 360px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.3);
}
.page-banner-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(192,57,43,.18) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-banner-content {
  position: relative; z-index: 2;
  padding: 0 64px; max-width: 1320px; margin: 0 auto; width: 100%;
}
.page-banner-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.page-banner-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900; line-height: 1.07; color: var(--white);
}
.page-banner h1 em { font-style: italic; color: var(--red); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ── SHARED SECTION COMPONENTS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.section-tag.center { justify-content: center; }
.section-tag.light { color: rgba(192,57,43,.85); }
.section-tag.light::before { background: rgba(192,57,43,.85); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900; line-height: 1.1; color: var(--dark); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-title.white { color: var(--white); }

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: 5px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  letter-spacing: .3px; transition: all .2s; border: none; cursor: pointer;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,57,43,.4); }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--red);
  padding: 13px 30px; border-radius: 5px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 2px solid var(--red); transition: all .2s;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--red);
  padding: 14px 32px; border-radius: 5px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: all .2s;
}
.btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.3); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.7);
  padding: 14px 28px; border-radius: 5px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,.18); transition: all .2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* ── CTA BANNER ── */
.cta-band {
  background: var(--red); padding: 90px 64px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 460px; height: 460px; border-radius: 50%; background: rgba(0,0,0,.07);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%; background: rgba(0,0,0,.06);
}
.cta-band-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
  position: relative; z-index: 1;
}
.cta-band-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 12px;
}
.cta-band-sub { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 520px; }

/* ── FOOTER ── */
footer { background: #111111; padding: 90px 64px 0; }
.footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { height: 76px; width: auto; display: block; margin-bottom: 18px;  padding: 6px 12px; border-radius: 6px; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-style: italic; color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.footer-about { font-size: 13px; color: rgba(255,255,255,.32); line-height: 1.82; margin-bottom: 26px; }
.f-socials { display: flex; gap: 8px; }
.fsoc {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none; color: rgba(255,255,255,.38);
  transition: all .2s;
}
.fsoc:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.f-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 22px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-links a {
  font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s;
}
.f-links a:hover { color: var(--white); }
.f-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; }
.fci-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 7px; }
.fci-text { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; }
.fci-text a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.fci-text a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-copy b { color: rgba(255,255,255,.38); font-weight: 500; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation: fadeUp .6s .1s ease both; }
.fade-up-2 { animation: fadeUp .6s .2s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }

/* ── RESPONSIVE SHARED ── */
@media (max-width: 1100px) {
  nav { padding: 0 28px; }
  .page-banner-content { padding: 0 32px; }
  .cta-band { padding: 80px 32px; }
  .cta-band-inner { flex-direction: column; gap: 32px; }
  footer { padding: 60px 28px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   PAGE-SPECIFIC STYLES (loaded globally)
   All pages share this stylesheet
═══════════════════════════════════════════ */

/* ── HOME: HERO ── */
.hero {
  display: grid; grid-template-columns: 52% 48%;
  min-height: 100vh; padding-top: 78px; overflow: hidden;
}
.hero-content {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 72px 90px 64px; position: relative; overflow: hidden;
}
.hero-content::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background-image: radial-gradient(circle, rgba(192,57,43,.22) 2px, transparent 2px);
  background-size: 26px 26px; border-radius: 50%; transform: rotate(-20deg);
  pointer-events: none;
}
.hero-content::after {
  content: ''; position: absolute; top: 40px; right: -30px;
  width: 220px; height: 220px;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 2px, transparent 2px);
  background-size: 18px 18px; pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.hero-eyebrow i { display: block; width: 36px; height: 2px; background: var(--red); font-style: normal; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 900; line-height: 1.07; color: var(--white);
  margin-bottom: 26px; animation: fadeUp .5s .1s ease both;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.55);
  max-width: 420px; margin-bottom: 14px; animation: fadeUp .5s .15s ease both;
}
.hero-intro {
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.36);
  max-width: 420px; margin-bottom: 48px; animation: fadeUp .5s .2s ease both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .5s .28s ease both; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 10s ease; }
.hero-image:hover img { transform: scale(1.05); }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,20,20,.45) 0%, transparent 40%),
              linear-gradient(to top, rgba(20,20,20,.55) 0%, transparent 40%);
}
.hero-pill {
  position: absolute; bottom: 44px; left: -1px; z-index: 10;
  background: var(--white); border-radius: 0 10px 10px 0;
  padding: 18px 32px; display: flex; gap: 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  animation: fadeUp .6s .55s ease both;
}
.hp-item { text-align: center; }
.hp-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--red); line-height: 1; }
.hp-label { font-size: 10px; color: var(--muted); letter-spacing: .5px; margin-top: 3px; text-transform: uppercase; }

/* ── HOME: ABOUT PREVIEW ── */
.about-preview {
  padding: 130px 64px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center; max-width: 1320px; margin: 0 auto;
}
.about-visual { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 80%; height: 86%;
  object-fit: cover; border-radius: 10px; box-shadow: 0 28px 72px rgba(0,0,0,.13);
}
.about-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 48%;
  object-fit: cover; border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,.16); border: 5px solid var(--white);
}
.about-badge {
  position: absolute; top: 50%; left: 60%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; background: var(--red);
  border: 5px solid var(--white); display: flex; align-items: center;
  justify-content: center; box-shadow: 0 8px 32px rgba(192,57,43,.35); z-index: 5;
}
.about-badge svg { width: 34px; height: 34px; }
.about-body { font-size: 15px; line-height: 1.82; color: var(--mid); margin-bottom: 20px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 36px; }
.mv-card {
  background: var(--light); border-radius: 8px; padding: 20px 22px;
  border-left: 3px solid var(--red); transition: all .22s;
}
.mv-card:hover { background: var(--red-light); transform: translateX(5px); }
.mv-icon { font-size: 22px; margin-bottom: 9px; display: block; }
.mv-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.mv-body { font-size: 13px; color: var(--muted); line-height: 1.6; }
.val-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.val-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-light); color: var(--red);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; border: 1px solid rgba(192,57,43,.15);
}
.val-chip::before { content: '◆'; font-size: 8px; }

/* ── HOME: SERVICES PREVIEW ── */
.services-preview { background: var(--dark); padding: 120px 64px; position: relative; overflow: hidden; }
.services-preview::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 560px; height: 560px;
  background-image: radial-gradient(circle, rgba(192,57,43,.09) 2px, transparent 2px);
  background-size: 28px 28px; border-radius: 50%; pointer-events: none;
}
.sp-head { max-width: 1320px; margin: 0 auto 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.services-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 3px;
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.06);
}
.sg-card {
  background: rgba(255,255,255,.03); display: grid; grid-template-columns: 200px 1fr;
  overflow: hidden; transition: background .25s; position: relative; cursor: pointer; min-height: 200px;
}
.sg-card:hover { background: rgba(192,57,43,.1); }
.sg-img { overflow: hidden; }
.sg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: transform .5s ease, filter .3s; }
.sg-card:hover .sg-img img { transform: scale(1.08); filter: brightness(.75); }
.sg-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.05); }
.sg-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.2); letter-spacing: 2px; margin-bottom: 10px; }
.sg-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.sg-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sg-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.sg-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--red); text-decoration: none; transition: gap .2s; }
.sg-link:hover { gap: 10px; }

/* ── HOME: WHY ── */
.why-section { padding: 120px 64px; max-width: 1320px; margin: 0 auto; }
.why-head { text-align: center; margin-bottom: 72px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.why-card { padding: 48px 30px; text-align: center; border-right: 1px solid var(--border); transition: background .22s; position: relative; overflow: hidden; }
.why-card:last-child { border-right: none; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .3s; }
.why-card:hover { background: var(--red-light); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 68px; height: 68px; border-radius: 14px; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; transition: background .2s, transform .2s; }
.why-card:hover .why-icon { background: var(--red); transform: translateY(-5px); }
.why-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT PAGE ── */
.who-section { padding: 120px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; max-width: 1320px; margin: 0 auto; }
.who-visual { position: relative; height: 580px; }
.who-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 86%; object-fit: cover; border-radius: 10px; box-shadow: 0 28px 72px rgba(0,0,0,.13); }
.who-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 50%; object-fit: cover; border-radius: 10px; box-shadow: 0 16px 48px rgba(0,0,0,.16); border: 5px solid var(--white); }
.who-badge { position: absolute; top: 48%; left: 58%; transform: translate(-50%,-50%); width: 90px; height: 90px; border-radius: 50%; background: var(--red); border: 5px solid var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(192,57,43,.4); z-index: 5; flex-direction: column; }
.who-badge-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: white; line-height: 1; }
.who-badge-lbl { font-size: 9px; color: rgba(255,255,255,.75); letter-spacing: .5px; text-align: center; margin-top: 2px; text-transform: uppercase; }
.who-text p { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 16px; }
.mvv-section { background: var(--light); padding: 110px 64px; }
.mvv-inner { max-width: 1320px; margin: 0 auto; }
.mvv-head { text-align: center; margin-bottom: 72px; }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.mvv-card { background: var(--white); border-radius: 12px; padding: 48px 36px; transition: all .25s; box-shadow: 0 4px 24px rgba(0,0,0,.05); position: relative; overflow: hidden; }
.mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon { width: 64px; height: 64px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px; transition: background .2s, transform .2s; }
.mvv-card:hover .mvv-icon { background: var(--red); transform: scale(1.08); }
.mvv-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.mvv-body { font-size: 14px; line-height: 1.8; color: var(--mid); }
.values-section { padding: 110px 64px; max-width: 1320px; margin: 0 auto; }
.values-head { margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.val-row { display: flex; gap: 24px; padding: 32px 36px; background: var(--light); border-radius: 10px; border-left: 4px solid var(--red); transition: all .22s; align-items: flex-start; }
.val-row:hover { background: var(--red-light); transform: translateX(5px); }
.val-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: rgba(192,57,43,.15); line-height: 1; flex-shrink: 0; min-width: 44px; }
.val-name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.val-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }
.why-about { background: var(--dark); padding: 110px 64px; position: relative; overflow: hidden; }
.why-about::before { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background-image: radial-gradient(circle, rgba(192,57,43,.1) 2px, transparent 2px); background-size: 28px 28px; pointer-events: none; }
.why-about-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wa-left .section-tag { color: rgba(192,57,43,.9); }
.wa-left .section-tag::before { background: rgba(192,57,43,.9); }
.wa-left .section-title { color: var(--white); }
.wa-text { font-size: 15px; line-height: 1.82; color: rgba(255,255,255,.5); margin-bottom: 36px; }
.wa-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 10px; overflow: hidden; }
.wa-stat { background: rgba(255,255,255,.04); padding: 32px 28px; transition: background .2s; border: 1px solid rgba(255,255,255,.05); }
.wa-stat:hover { background: rgba(192,57,43,.12); }
.wa-stat-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--red); line-height: 1; }
.wa-stat-label { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 6px; line-height: 1.4; }
.wa-image { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 72px rgba(0,0,0,.3); }
.wa-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.8); }

/* ── SERVICES PAGE ── */
.services-intro { padding: 100px 64px 60px; max-width: 1320px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.si-left { max-width: 600px; }
.si-sub { font-size: 16px; line-height: 1.8; color: var(--mid); margin-top: 14px; }
.svc-detail { padding: 0 64px 100px; max-width: 1320px; margin: 0 auto; }
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 14px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 8px 48px rgba(0,0,0,.08); border: 1px solid var(--border); transition: box-shadow .3s; }
.svc-block:hover { box-shadow: 0 20px 72px rgba(0,0,0,.14); }
.svc-block.flip { direction: rtl; }
.svc-block.flip > * { direction: ltr; }
.svc-block-img { position: relative; overflow: hidden; min-height: 440px; }
.svc-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; filter: brightness(.88); }
.svc-block:hover .svc-block-img img { transform: scale(1.05); filter: brightness(.95); }
.svc-block-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(192,57,43,.2) 0%, transparent 50%); }
.svc-block-img-tag { position: absolute; bottom: 28px; left: 28px; background: var(--red); color: var(--white); padding: 8px 18px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.svc-block-body { background: var(--white); padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
.svc-block.flip .svc-block-body { border-left: none; border-right: 1px solid var(--border); }
.svc-block-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: rgba(192,57,43,.3); letter-spacing: 2px; margin-bottom: 14px; }
.svc-block-icon { width: 58px; height: 58px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; transition: background .2s; }
.svc-block:hover .svc-block-icon { background: var(--red); }
.svc-block-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.1; }
.svc-block-title em { font-style: italic; color: var(--red); }
.svc-block-desc { font-size: 15px; line-height: 1.82; color: var(--mid); margin-bottom: 28px; }
.svc-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.svc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--mid); line-height: 1.5; }
.svc-features li::before { content: '◆'; color: var(--red); font-size: 8px; flex-shrink: 0; margin-top: 5px; }
.svc-nav { background: var(--light); padding: 0 64px; border-bottom: 1px solid var(--border); position: sticky; top: 78px; z-index: 100; }
.svc-nav-inner { max-width: 1320px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; }
.svc-nav-item { display: flex; align-items: center; gap: 8px; padding: 18px 28px; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; letter-spacing: .3px; }
.svc-nav-item:hover, .svc-nav-item.active { color: var(--red); border-bottom-color: var(--red); }
.why-row { background: var(--dark); padding: 100px 64px; position: relative; overflow: hidden; }
.why-row::after { content: ''; position: absolute; top: -80px; right: -80px; width: 440px; height: 440px; border-radius: 50%; background-image: radial-gradient(circle, rgba(192,57,43,.1) 2px, transparent 2px); background-size: 26px 26px; pointer-events: none; }
.why-row-inner { max-width: 1320px; margin: 0 auto; }
.why-row-head { text-align: center; margin-bottom: 64px; }
.why-row-head .section-tag { color: rgba(192,57,43,.85); justify-content: center; }
.why-row-head .section-tag::before { background: rgba(192,57,43,.85); }
.why-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.wc { background: rgba(255,255,255,.03); padding: 40px 28px; border: 1px solid rgba(255,255,255,.06); text-align: center; transition: background .22s; }
.wc:hover { background: rgba(192,57,43,.12); }
.wc-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.wc-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.wc-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 64px 120px; max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info-intro { font-size: 15px; line-height: 1.82; color: var(--mid); margin-bottom: 48px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.info-card { display: flex; align-items: flex-start; gap: 20px; padding: 26px 28px; background: var(--light); border-radius: 10px; border-left: 4px solid var(--red); transition: all .22s; }
.info-card:hover { background: var(--red-light); transform: translateX(5px); }
.info-card-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: transform .2s; }
.info-card:hover .info-card-icon { transform: scale(1.1); }
.info-card-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.info-card-value { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.6; }
.info-card-value a { color: var(--dark); text-decoration: none; transition: color .2s; }
.info-card-value a:hover { color: var(--red); }
.map-wrap { border-radius: 12px; overflow: hidden; height: 260px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 52px 48px; box-shadow: 0 12px 60px rgba(0,0,0,.06); position: sticky; top: 100px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--charcoal); letter-spacing: .5px; text-transform: uppercase; }
.form-label span { color: var(--red); }
.form-input, .form-select, .form-textarea { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 7px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--charcoal); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit { width: 100%; padding: 15px; background: var(--red); color: var(--white); border: none; border-radius: 7px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: .3px; transition: all .2s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,57,43,.35); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }
.form-success { display: none; background: #edfaf3; border: 1px solid #52c27e; border-radius: 8px; padding: 16px 20px; margin-top: 16px; font-size: 14px; color: #1e7a48; font-weight: 500; align-items: center; gap: 10px; }
.contact-strip { background: var(--dark); padding: 72px 64px; }
.contact-strip-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.cs-block { background: rgba(255,255,255,.03); padding: 44px 40px; text-align: center; transition: background .22s; }
.cs-block:hover { background: rgba(192,57,43,.12); }
.cs-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.cs-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.cs-value { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6; }
.cs-value a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.cs-value a:hover { color: var(--red); }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all .3s; border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 80px 32px; }
  .hero-image { height: 380px; }
  .hero-pill { bottom: 20px; left: 20px; }
  .about-preview { grid-template-columns: 1fr; padding: 80px 32px; gap: 60px; }
  .about-visual { height: 400px; }
  .services-preview { padding: 80px 32px; }
  .sp-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .sg-card { grid-template-columns: 160px 1fr; }
  .why-section { padding: 80px 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(2) { border-right: none; }
  .why-card:nth-child(1), .why-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .who-section { grid-template-columns: 1fr; padding: 80px 32px; gap: 60px; }
  .who-visual { height: 400px; }
  .mvv-section { padding: 80px 32px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-section { padding: 80px 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .why-about { padding: 80px 32px; }
  .why-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-intro { flex-direction: column; padding: 80px 32px 40px; gap: 24px; }
  .svc-detail { padding: 0 32px 80px; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block.flip { direction: ltr; }
  .svc-block-img { min-height: 260px; }
  .svc-block-body { padding: 44px 36px; border-left: none; border-top: 1px solid var(--border); }
  .svc-block.flip .svc-block-body { border-right: none; border-top: 1px solid var(--border); }
  .svc-nav { padding: 0 24px; }
  .why-row { padding: 80px 32px; }
  .why-cards { grid-template-columns: 1fr 1fr; gap: 3px; }
  .contact-section { grid-template-columns: 1fr; padding: 80px 32px; gap: 56px; }
  .contact-form-wrap { position: static; padding: 36px 28px; }
  .contact-strip { padding: 72px 32px; }
  .contact-strip-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px 32px; gap: 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .hero-pill { gap: 18px; padding: 12px 18px; }
  .sg-card { grid-template-columns: 1fr; }
  .sg-img { height: 180px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid var(--border); }
  .mv-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
