/* ============================================================
   Urvashi Printers — Stylesheet
   ============================================================ */

:root {
  --navy: #111418;       /* near-black ink (K) */
  --navy-2: #20242b;
  --accent: #ec008c;     /* magenta (M) */
  --accent-2: #ffd400;   /* yellow (Y) */
  --cyan: #00aeef;       /* cyan (C) */
  --ink: #1b2330;
  --muted: #5c6b80;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 39, 71, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 39, 71, 0.16);
  --max: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --brand: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 700; }
h2.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.lead { color: var(--muted); font-size: 1.06rem; max-width: 720px; }

/* ---------- CMYK top strip ---------- */
.cmyk-strip { height: 5px; width: 100%;
  background: linear-gradient(90deg,
    var(--cyan) 0 25%, var(--accent) 25% 50%,
    var(--accent-2) 50% 75%, var(--ink) 75% 100%);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cdd8ea;
  font-size: .85rem;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap;
}
.topbar a { color: #cdd8ea; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left span { margin-right: 18px; white-space: nowrap; }
.topbar .tb-social a { margin-left: 14px; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 44px; height: 52px; border-radius: 6px; overflow: hidden;
  display: block; box-shadow: var(--shadow); background: #fff;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-family: var(--brand); font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; color: var(--navy); line-height: 1; white-space: nowrap; text-transform: uppercase; }
.brand .tag { display: block; font-family: var(--brand); font-weight: 600; font-size: .64rem; letter-spacing: .19em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: nowrap; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu a {
  display: block; padding: 10px 14px; font-size: .94rem; font-weight: 500;
  color: var(--ink); border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.menu a:hover, .menu a.active { color: var(--accent); background: #fde7f3; }

.nav-cta {
  background: var(--accent); color: #fff !important; font-weight: 600;
  padding: 11px 20px !important; border-radius: 999px; margin-left: 8px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(236,0,140,.35); background: var(--accent) !important; color:#fff !important; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600;
  font-size: .96rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(236,0,140,.32); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,167,196,.35), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(236,0,140,.30), transparent 45%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #0a1c33 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 92px 0; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.5px; }
.hero h1 span { color: var(--accent-2); }
.hero p { color: #c8d4e6; font-size: 1.12rem; margin: 22px 0 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap; }
.hero-badges .b strong { display: block; font-size: 2rem; color: #fff; font-family: var(--serif); }
.hero-badges .b span { font-size: .82rem; color: #9fb0c9; letter-spacing: .04em; }

.hero-visual {
  position: relative; aspect-ratio: 4/3; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.hero-visual .stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; width: 78%; }
.hero-visual .chip {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 18px 14px; text-align: center; font-weight: 600; font-size: .92rem;
}
.hero-visual .chip .ico { font-size: 1.7rem; display: block; margin-bottom: 6px; }

/* ---------- Marquee / trust ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust .container { display: flex; align-items: center; gap: 28px 48px; padding: 28px 22px; flex-wrap: wrap; justify-content: center; }
.trust .t-label { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust .t-logo { display: inline-flex; align-items: center; height: 40px; }
.trust .t-logo img { max-height: 38px; max-width: 150px; width: auto; object-fit: contain; opacity: .9; transition: opacity .25s, transform .25s; }
.trust .t-logo img:hover { opacity: 1; transform: scale(1.04); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .ico-box {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 18px;
  background: linear-gradient(135deg, #fde7f3, #e7f7fd); color: var(--accent);
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .more { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: .9rem; }

/* section header */
.sec-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sec-head .lead { margin: 14px auto 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .visual {
  border-radius: 20px; min-height: 380px; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  position: relative; overflow: hidden; display: grid; place-items: center; color: #fff;
}
.split .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split .visual .big { font-family: var(--serif); font-size: 3rem; opacity: .9; text-align: center; padding: 30px; }
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li::before { content: "✓"; color: #fff; background: var(--accent); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; flex: 0 0 22px; margin-top: 4px; }

/* ---------- Equipment list (infrastructure) ---------- */
.eq-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow); }
.eq-card .eq-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.eq-card .eq-head .ico-box { width: 44px; height: 44px; margin: 0; font-size: 1.3rem; border-radius: 12px; }
.eq-card .eq-head h4 { font-size: 1.1rem; margin: 0; }
.eq-list { list-style: none; display: grid; gap: 0; }
.eq-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-size: .94rem; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.eq-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.eq-list li::before { content: ""; flex: 0 0 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); margin-top: 8px; transform: rotate(45deg); }
.eq-list li .qty { margin-left: auto; font-size: .78rem; font-weight: 700; color: var(--accent); background: #fde7f3; padding: 1px 8px; border-radius: 999px; white-space: nowrap; }
.dept-img { width: 100%; margin-top: 24px; border-radius: 16px; box-shadow: var(--shadow); aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.facility-banner { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 8px; }
.facility-banner img { width: 100%; height: 360px; object-fit: cover; display: block; }
.facility-banner .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 28px; color: #fff; font-weight: 600; font-size: 1.05rem; background: linear-gradient(to top, rgba(10,18,30,.82), rgba(10,18,30,0)); }
@media (max-width: 720px) { .facility-banner img { height: 240px; } }

/* ---------- Stats band ---------- */
.stats { background: var(--navy); color: #fff; }
.stats .grid-4 { gap: 20px; }
.stat { text-align: center; padding: 14px; }
.stat strong { font-family: var(--serif); font-size: 2.6rem; display: block; color: var(--accent-2); }
.stat span { color: #b8c6dc; font-size: .92rem; letter-spacing: .03em; }

/* ---------- Testimonial ---------- */
.quote {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.quote blockquote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--navy); line-height: 1.4; }
.quote .by { margin-top: 22px; font-weight: 600; color: var(--accent); }
.quote .by span { display: block; color: var(--muted); font-weight: 400; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #b80070);
  color: #fff; border-radius: 22px; padding: 56px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: #ffd9ef; margin: 14px auto 28px; max-width: 560px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(0,167,196,.30), transparent 50%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; padding: 72px 0 64px;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p { color: #c8d4e6; margin-top: 14px; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #9fb0c9; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item .ico-box { flex: 0 0 50px; width: 50px; height: 50px; margin: 0; }
.info-item h4 { margin-bottom: 3px; }
.info-item p { color: var(--muted); margin: 0; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236,0,140,.12);
}
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 36px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Clientele ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.logo-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  min-height: 150px; display: grid; place-items: center; padding: 24px; text-align: center;
  font-weight: 700; color: var(--navy); transition: transform .2s, box-shadow .2s;
}
.logo-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.logo-card img { max-height: 72px; max-width: 80%; width: auto; object-fit: contain; }

/* ---------- Footer ---------- */
.footer { background: #0a1726; color: #aebfd6; padding: 64px 0 0; }
.footer .f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .04em; }
.footer a { color: #aebfd6; display: block; padding: 5px 0; transition: color .2s; font-size: .94rem; }
.footer a:hover { color: var(--accent-2); }
.footer .f-brand .name { font-family: var(--brand); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; color: #fff; font-size: 1.3rem; }
.footer .f-brand p { font-size: .92rem; margin: 14px 0; max-width: 300px; }
.f-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); margin-right: 8px; color: #cdd8ea; transition: background .2s, color .2s, transform .2s; }
.f-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.f-social svg { width: 17px; height: 17px; fill: currentColor; }
.tb-social .tb-ico { display: inline-grid; place-items: center; width: 24px; height: 24px; }
.tb-social .tb-ico svg { width: 15px; height: 15px; fill: currentColor; }
.footer .f-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }

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

/* ---------- Responsive ---------- */
/* Collapse the horizontal nav into a hamburger early — the full menu gets
   cramped on tablets before this width. */
@media (max-width: 992px) {
  .menu {
    position: fixed; inset: 76px 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 12px 18px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .3s; max-height: calc(100vh - 76px); overflow:auto;
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: 13px 10px; border-radius: 8px; }
  .nav-cta { text-align: center; margin: 8px 0 0; }
  .burger { display: block; }
}
@media (max-width: 940px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer .f-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .f-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
  .topbar .tb-left { display: none; }
  .stats .grid-4 { grid-template-columns: 1fr 1fr; }
}
