/* ============================================================
   NYAY VISTAR — Main Stylesheet
   ============================================================ */

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

:root {
  --bg: #F8F5EE;
  --surface: #FFFFFF;
  --surface2: #FAF8F4;
  --saffron: #C8660A;
  --saffron2: #E0791A;
  --saffron3: #F7C68A;
  --navy: #0E1C38;
  --navy2: #1A2F56;
  --green: #1A6040;
  --ink: #1A1814;
  --ink2: #3D3830;
  --muted: #6B6358;
  --muted2: #9A9088;
  --border: #DDD6C8;
  --border2: #C8BEA8;
  --fd: Georgia, 'Times New Roman', 'Book Antiqua', Palatino, serif;
  --fb: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --fm: 'Cascadia Code', 'Fira Code', 'Consolas', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* ============================================================
   NAV
   ============================================================ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 0 5%; height: 64px; display: flex; align-items: center; justify-content: space-between; background: rgba(248,245,238,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(200,102,10,.14); box-shadow: 0 2px 24px rgba(26,24,20,.07); transition: all .3s; }
nav.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 3px 32px rgba(26,24,20,.10); }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; border-radius: 9px; background: linear-gradient(140deg, var(--saffron), #A04808); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-weight: 700; color: #fff; font-size: 19px; box-shadow: 0 4px 14px rgba(200,102,10,.35); flex-shrink: 0; }
.logo-en { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--navy); }
.logo-en span { color: var(--saffron); }
.logo-hi { font-size: 10.5px; color: var(--muted2); letter-spacing: 1.2px; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--ink2); font-size: 14px; font-weight: 400; transition: color .2s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px; background: var(--saffron); transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover { color: var(--saffron); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; }

/* Buttons */
.btn-g { padding: 8px 20px; border: 1.5px solid var(--border2); border-radius: 7px; color: var(--ink2); background: transparent; font-family: var(--fb); font-size: 13.5px; font-weight: 500; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-g:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-p { padding: 8px 22px; background: linear-gradient(135deg, var(--saffron), #A04808); border: none; border-radius: 7px; color: #fff; font-family: var(--fb); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; box-shadow: 0 4px 14px rgba(200,102,10,.30); display: inline-block; }
.btn-p:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(200,102,10,.42); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 130px 5% 80px; text-align: center; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80&fit=crop'); background-size: cover; background-position: center 30%; filter: brightness(1.05) saturate(0.8); }
.hero-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(248,245,238,.90) 0%, rgba(248,245,238,.80) 45%, rgba(248,245,238,.93) 100%); }
.hero-dots { position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: radial-gradient(circle, rgba(200,102,10,.09) 1.2px, transparent 1.2px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 80%); }
.flag-bar { position: absolute; top: 64px; left: 0; right: 0; height: 4px; z-index: 10; display: flex; }
.flag-bar span:nth-child(1) { flex: 1; background: #FF9933; }
.flag-bar span:nth-child(2) { flex: 1; background: #fff; }
.flag-bar span:nth-child(3) { flex: 1; background: #138808; }

/* SVG Art decorations */
.art-scales { position: absolute; left: 2%; bottom: 6%; width: 270px; opacity: .065; z-index: 3; pointer-events: none; }
.art-circuit { position: absolute; top: 100px; right: 2%; width: 290px; opacity: .062; z-index: 3; pointer-events: none; animation: drift 20s ease-in-out infinite; }
.art-chakra { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 620px; opacity: .038; z-index: 3; pointer-events: none; animation: chakra 120s linear infinite; }

@keyframes chakra { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeup { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pdot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero-content { position: relative; z-index: 10; max-width: 860px; }
.h-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 100px; background: rgba(200,102,10,.10); border: 1px solid rgba(200,102,10,.28); font-size: 12px; font-weight: 500; color: var(--saffron); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 26px; animation: fadeup .7s ease both; }
.bdot { width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 8px rgba(200,102,10,.5); animation: pdot 2s infinite; }
.h-deva { font-family: var(--fd); font-size: clamp(16px, 2.2vw, 22px); font-weight: 300; color: var(--muted); letter-spacing: 3px; margin-bottom: 12px; animation: fadeup .8s ease .05s both; }
.hero h1 { font-family: var(--fd); font-size: clamp(52px, 8.5vw, 96px); font-weight: 300; line-height: .95; color: var(--navy); letter-spacing: -2px; margin-bottom: 8px; animation: fadeup .85s ease .1s both; }
.hero h1 em { font-style: italic; color: var(--saffron); }
.hero h1 strong { font-weight: 700; }
.h-sub { font-size: 17px; font-weight: 300; color: var(--ink2); max-width: 560px; margin: 22px auto 38px; line-height: 1.82; animation: fadeup .9s ease .2s both; }
.h-actions { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; animation: fadeup 1s ease .3s both; }
.btn-hero { padding: 14px 34px; background: linear-gradient(135deg, var(--saffron), #A04808); border: none; border-radius: 9px; color: #fff; font-family: var(--fb); font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; box-shadow: 0 6px 24px rgba(200,102,10,.38); transition: all .25s; display: inline-block; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,102,10,.48); color: #fff; }
.btn-hero-o { padding: 13px 28px; border: 1.5px solid rgba(14,28,56,.35); border-radius: 9px; color: var(--navy); background: rgba(255,255,255,.65); font-family: var(--fb); font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: all .2s; backdrop-filter: blur(8px); }
.btn-hero-o:hover { background: rgba(255,255,255,.9); border-color: var(--saffron); color: var(--saffron); }
.h-metrics { display: flex; gap: 38px; align-items: center; justify-content: center; flex-wrap: wrap; animation: fadeup 1s ease .4s both; }
.hm-v { font-family: var(--fd); font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; }
.hm-l { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hm-d { width: 1px; height: 38px; background: var(--border); }

/* Floating stat cards */
.fcard { position: absolute; z-index: 10; background: rgba(255,255,255,.90); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; box-shadow: 0 8px 36px rgba(26,24,20,.13); pointer-events: none; animation: bob 6s ease-in-out infinite; backdrop-filter: blur(10px); }
.fc-1 { top: 22%; left: 3%; }
.fc-2 { top: 22%; right: 3%; animation-delay: -2.5s; }
.fc-3 { bottom: 22%; left: 4%; animation-delay: -4.2s; }
.fc-4 { bottom: 24%; right: 3%; animation-delay: -1.8s; }
.fc-lbl { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .7px; text-transform: uppercase; margin-bottom: 5px; }
.fc-val { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.fc-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.fc-live { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); margin-top: 5px; }
.ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pdot 2s infinite; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--surface); padding: 32px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.t-lbl { font-size: 11.5px; font-weight: 500; color: var(--muted2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.t-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 14px; }
.t-logo { padding: 6px 14px; border: 1px solid var(--border); border-radius: 6px; font-family: var(--fd); font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .8px; transition: all .2s; }
.t-logo:hover { color: var(--navy); border-color: var(--navy2); background: rgba(14,28,56,.05); }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { position: relative; padding: 88px 5%; overflow: hidden; }
.eyebrow { font-size: 12px; font-weight: 600; color: var(--saffron); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.sec-title { font-family: var(--fd); font-size: clamp(34px, 4.5vw, 54px); font-weight: 300; line-height: 1.08; color: var(--navy); max-width: 620px; margin-bottom: 18px; }
.sec-title em { font-style: italic; color: var(--saffron); }
.sec-title strong { font-weight: 700; }
.sec-desc { font-size: 16px; font-weight: 300; color: var(--ink2); max-width: 520px; line-height: 1.85; margin-bottom: 44px; }
.divider { width: 46px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--saffron), transparent); margin-bottom: 28px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-sec { padding: 0; position: relative; overflow: hidden; }
.st-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1532375810709-75b1da00537c?w=1600&q=80&fit=crop'); background-size: cover; background-position: center 40%; filter: brightness(.28) saturate(1.1); }
.st-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,28,56,.72), rgba(14,28,56,.88)); }
.st-flag { position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3; display: flex; }
.st-flag span:nth-child(1) { flex: 1; background: #FF9933; }
.st-flag span:nth-child(2) { flex: 1; background: #fff; }
.st-flag span:nth-child(3) { flex: 1; background: #138808; }
.st-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.s-item { padding: 52px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.10); transition: background .3s; }
.s-item:last-child { border-right: none; }
.s-item:hover { background: rgba(255,255,255,.06); }
.s-num { font-family: var(--fd); font-size: 52px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.s-num .u { font-size: 22px; font-weight: 300; color: var(--saffron3); }
.s-lbl { font-size: 14px; color: rgba(255,255,255,.82); }
.s-sub { font-size: 11.5px; color: rgba(255,255,255,.38); margin-top: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-sec { background: var(--surface); position: relative; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1220px; margin: 0 auto; }
.about-visual { position: relative; }
.vis-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; position: relative; box-shadow: 0 24px 64px rgba(14,28,56,.18); }
.vis-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.97) saturate(1.1); }
.vis-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,28,56,.80) 100%); }
.vis-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: #fff; z-index: 1; }
.vis-cap h3 { font-family: var(--fd); font-size: 22px; font-weight: 600; margin-bottom: 5px; }
.vis-cap p { font-size: 13px; color: rgba(255,255,255,.65); }
.vbadge1 { position: absolute; top: -18px; right: -18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; box-shadow: 0 8px 28px rgba(14,28,56,.12); min-width: 148px; }
.vb-lbl { font-size: 11px; font-weight: 500; color: var(--muted2); letter-spacing: .5px; text-transform: uppercase; }
.vb-val { font-family: var(--fd); font-size: 26px; font-weight: 700; color: var(--saffron); line-height: 1; margin: 4px 0; }
.vb-sub { font-size: 12px; color: var(--muted); }
.vbadge2 { position: absolute; bottom: -18px; left: -18px; background: var(--saffron); border-radius: 12px; padding: 14px 18px; box-shadow: 0 8px 24px rgba(200,102,10,.30); color: #fff; }
.vb2-lbl { font-size: 11px; font-weight: 500; opacity: .8; text-transform: uppercase; letter-spacing: .5px; }
.vb2-val { font-family: var(--fd); font-size: 24px; font-weight: 700; line-height: 1; margin-top: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-sec { position: relative; }
.svc-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80&fit=crop'); background-size: cover; background-position: center; filter: brightness(.12) saturate(.5); }
.svc-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(248,245,238,.97), rgba(248,245,238,.95)); }
.svc-z { position: relative; z-index: 2; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.svc-card { background: rgba(255,255,255,.95); border: 1px solid var(--border); border-radius: 14px; padding: 36px 30px; transition: all .3s; cursor: pointer; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(26,24,20,.06); }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--saffron2)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 52px rgba(14,28,56,.13); border-color: rgba(200,102,10,.20); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, rgba(200,102,10,.12), rgba(200,102,10,.04)); border: 1px solid rgba(200,102,10,.16); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.svc-title { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--ink2); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.svc-feats { list-style: none; margin-bottom: 22px; }
.svc-feats li { font-size: 13px; color: var(--muted); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.svc-feats li::before { content: '—'; color: var(--saffron); flex-shrink: 0; }
.svc-lnk { font-size: 13px; font-weight: 600; color: var(--saffron); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.svc-lnk:hover { gap: 9px; }

/* ============================================================
   PLATFORM
   ============================================================ */
.plat-sec { position: relative; }
.plat-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1589578527966-fdac0f44566c?w=1600&q=80&fit=crop'); background-size: cover; background-position: center; filter: brightness(.15) saturate(.45); }
.plat-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(228,232,244,.97), rgba(215,225,234,.96)); }
.plat-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 68px; align-items: center; position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; }
.ptabs { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.ptab { padding: 15px 18px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all .2s; background: rgba(255,255,255,.82); }
.ptab.active, .ptab:hover { background: var(--navy); border-color: var(--navy); }
.ptab-t { font-size: 15px; font-weight: 500; color: var(--ink); }
.ptab.active .ptab-t, .ptab:hover .ptab-t { color: #fff; }
.ptab-d { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.ptab.active .ptab-d, .ptab:hover .ptab-d { color: rgba(255,255,255,.55); }

/* Dashboard mock */
.mock { background: var(--navy); border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(14,28,56,.24), 0 0 0 1px rgba(255,255,255,.07); }
.mock-tb { background: rgba(255,255,255,.06); padding: 12px 17px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 11px; }
.mock-dots { display: flex; gap: 5px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FF5F56; }
.mock-dot:nth-child(2) { background: #FFBD2E; }
.mock-dot:nth-child(3) { background: #27C93F; }
.mock-url { font-size: 12px; color: rgba(255,255,255,.28); font-family: var(--fm); }
.mock-body { padding: 17px; }
.mock-ms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.ms-b { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 11px 13px; }
.ms-l { font-size: 10.5px; color: rgba(255,255,255,.36); letter-spacing: .4px; margin-bottom: 5px; }
.ms-v { font-family: var(--fd); font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.ms-t { font-size: 11px; color: #4CAF50; margin-top: 3px; }
.mock-th { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 7px 10px; font-size: 10.5px; color: rgba(255,255,255,.28); letter-spacing: .4px; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.06); }
.mock-tr { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 10px; font-size: 12px; color: rgba(255,255,255,.65); border-radius: 6px; align-items: center; cursor: pointer; transition: background .15s; }
.mock-tr:hover { background: rgba(255,255,255,.05); }
.cn { font-size: 12.5px; color: rgba(255,255,255,.9); margin-bottom: 2px; }
.ci { font-family: var(--fm); font-size: 10.5px; color: #F08228; }
.mbadge { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 10.5px; font-weight: 500; }
.ba { background: rgba(39,201,63,.18); color: #3ED060; }
.bp { background: rgba(255,189,46,.18); color: #FFBD2E; }
.br { background: rgba(106,153,255,.18); color: #7AA8FF; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.proc-sec { background: var(--surface); text-align: center; position: relative; }
.proc-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80&fit=crop'); background-size: cover; background-position: center; filter: brightness(.07) saturate(.3); }
.proc-wash { position: absolute; inset: 0; z-index: 1; background: rgba(255,255,255,.97); }
.proc-z { position: relative; z-index: 2; }
.proc-steps { display: flex; align-items: flex-start; justify-content: center; margin-top: 56px; position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 25px; left: 14%; right: 14%; height: 1px; background: linear-gradient(90deg, transparent, var(--saffron), var(--saffron), transparent); opacity: .18; }
.proc-step { flex: 1; text-align: center; padding: 0 20px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px; border: 2px solid var(--saffron); background: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: 14px; font-weight: 500; color: var(--saffron); box-shadow: 0 0 0 7px rgba(200,102,10,.07); transition: all .3s; }
.proc-step:hover .step-num { background: var(--saffron); color: #fff; box-shadow: 0 6px 22px rgba(200,102,10,.36); }
.step-t { font-family: var(--fd); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.step-d { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-sec { position: relative; }
.testi-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80&fit=crop'); background-size: cover; background-position: center 25%; filter: brightness(.22) saturate(.7); }
.testi-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(14,28,56,.93), rgba(10,18,36,.95)); }
.testi-z { position: relative; z-index: 2; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.tcard { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: 14px; padding: 30px 26px; transition: all .3s; position: relative; overflow: hidden; }
.tcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.10); border-color: rgba(200,102,10,.40); }
.tcard::before { content: '"'; position: absolute; top: 12px; left: 20px; font-family: var(--fd); font-size: 90px; line-height: 1; color: rgba(200,102,10,.14); pointer-events: none; }
.tcard-text { font-family: var(--fd); font-size: 16px; font-weight: 300; font-style: italic; color: rgba(255,255,255,.86); line-height: 1.8; margin-bottom: 22px; margin-top: 18px; position: relative; z-index: 1; }
.tcard-auth { display: flex; align-items: center; gap: 11px; }
.tcard-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), #A04808); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: 14px; font-weight: 500; color: #fff; }
.tcard-role { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.stars { display: flex; gap: 2px; margin-bottom: 3px; }
.star { font-size: 12px; color: var(--saffron3); }

/* ============================================================
   COMPLIANCE STRIP
   ============================================================ */
.comp-strip { background: var(--surface); padding: 44px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge { padding: 5px 14px; border: 1px solid var(--border2); border-radius: 5px; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .5px; font-family: var(--fm); background: var(--bg); }

/* ============================================================
   CTA
   ============================================================ */
.cta-sec { text-align: center; padding: 110px 5%; position: relative; overflow: hidden; }
.cta-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1575505586569-646b2ca898fc?w=1600&q=80&fit=crop'); background-size: cover; background-position: center; filter: brightness(1.05) saturate(.65); }
.cta-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(248,245,238,.95), rgba(238,230,218,.96)); }
.cta-dots { position: absolute; inset: 0; z-index: 2; pointer-events: none; background-image: radial-gradient(circle, rgba(200,102,10,.08) 1.2px, transparent 1.2px); background-size: 34px 34px; }
.cta-z { position: relative; z-index: 3; max-width: 740px; margin: 0 auto; }
.cta-sec .sec-title { margin: 0 auto 16px; text-align: center; }
.cta-sec .sec-desc { margin: 0 auto 42px; text-align: center; }
.cta-actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); color: rgba(255,255,255,.70); padding: 64px 5% 36px; position: relative; overflow: hidden; }
.footer-photo { position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1508921340878-ba53e1f016ec?w=1400&q=80&fit=crop'); background-size: cover; background-position: center; filter: brightness(.12) saturate(.4); }
.footer-wash { position: absolute; inset: 0; z-index: 1; background: rgba(14,28,56,.90); }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; position: relative; z-index: 2; }
.f-en { font-family: var(--fd); font-size: 20px; font-weight: 600; color: #fff; }
.f-en span { color: var(--saffron); }
.f-hi { font-size: 10.5px; color: rgba(255,255,255,.28); letter-spacing: 1.2px; }
.f-tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-top: 14px; font-weight: 300; }
.f-certs { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.f-certs span { padding: 4px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 4px; font-size: 10.5px; color: rgba(255,255,255,.32); font-family: var(--fm); }
.f-col-t { font-size: 11.5px; font-weight: 600; color: var(--saffron3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.f-links { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links a { font-size: 13.5px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; font-weight: 300; }
.f-links a:hover { color: rgba(255,255,255,.90); }
.f-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.f-copy { font-size: 12.5px; color: rgba(255,255,255,.28); }
.f-meta { display: flex; gap: 20px; }
.f-meta a { font-size: 12.5px; color: rgba(255,255,255,.28); text-decoration: none; }
.f-meta a:hover { color: rgba(255,255,255,.70); }

/* ============================================================
   PORTFOLIO CPT STYLES
   ============================================================ */
.portfolio-archive { padding: 120px 5% 88px; }
.portfolio-archive-header { text-align: center; margin-bottom: 60px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(26,24,20,.06); transition: all .3s; text-decoration: none; color: inherit; display: block; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 16px 52px rgba(14,28,56,.13); border-color: rgba(200,102,10,.20); }
.portfolio-card-thumb { aspect-ratio: 16/10; overflow: hidden; }
.portfolio-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .portfolio-card-thumb img { transform: scale(1.04); }
.portfolio-card-body { padding: 24px 26px; }
.portfolio-card-cat { font-size: 11px; font-weight: 600; color: var(--saffron); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.portfolio-card-title { font-family: var(--fd); font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.portfolio-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.portfolio-single { padding: 120px 5% 88px; max-width: 900px; margin: 0 auto; }
.portfolio-single-hero { border-radius: 18px; overflow: hidden; margin-bottom: 48px; box-shadow: 0 24px 64px rgba(14,28,56,.18); }
.portfolio-single-hero img { width: 100%; height: auto; display: block; }
.portfolio-single-title { font-family: var(--fd); font-size: clamp(34px, 4.5vw, 52px); font-weight: 300; color: var(--navy); margin-bottom: 24px; line-height: 1.1; }
.portfolio-single-content { font-size: 17px; line-height: 1.85; color: var(--ink2); font-weight: 300; }
.portfolio-single-content p { margin-bottom: 22px; }
.portfolio-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--saffron); text-decoration: none; margin-bottom: 36px; transition: gap .2s; }
.portfolio-back:hover { gap: 12px; }

/* Blog / standard page styles */
.page-content, .single-content { padding: 120px 5% 88px; max-width: 820px; margin: 0 auto; }
.page-title, .entry-title { font-family: var(--fd); font-size: clamp(34px, 4.5vw, 54px); font-weight: 300; color: var(--navy); margin-bottom: 28px; line-height: 1.1; }
.entry-content { font-size: 17px; line-height: 1.85; color: var(--ink2); font-weight: 300; }
.entry-content p { margin-bottom: 22px; }
.entry-content h2 { font-family: var(--fd); font-size: 28px; font-weight: 600; color: var(--navy); margin: 40px 0 14px; }
.entry-content h3 { font-family: var(--fd); font-size: 22px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.entry-content a { color: var(--saffron); }
.entry-content ul, .entry-content ol { margin: 0 0 22px 24px; }
.entry-content li { margin-bottom: 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 120px 5% 88px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 52px rgba(14,28,56,.13); }
.blog-card a { text-decoration: none; color: inherit; }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-title { font-family: var(--fd); font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; }
.blog-card-meta { font-size: 12px; color: var(--muted2); margin-top: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .st-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .plat-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .proc-steps { flex-direction: column; align-items: center; }
  .proc-steps::before { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .fcard { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
}
